diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 8f550a1f4f..0000000000 --- a/.dockerignore +++ /dev/null @@ -1,3 +0,0 @@ -.git/ -.gitignore -.idea/ diff --git a/.gitignore b/.gitignore index c49938acc2..6b2d6fc97b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,9 @@ # CLion generated files -cpp/cmake-build-debug/ -cpp/cmake-build-release/ -cpp/cmake_build -cpp/.idea/ -cpp/thirdparty/knowhere_build +core/cmake-build-debug/ +core/cmake-build-release/ +core/cmake_build +core/.idea/ +core/thirdparty/knowhere_build .idea/ .ycm_extra_conf.py diff --git a/CHANGELOGS.md b/CHANGELOGS.md deleted file mode 100644 index c8ee3b39fd..0000000000 --- a/CHANGELOGS.md +++ /dev/null @@ -1,21 +0,0 @@ -# Changelog - -Please mark all change in change log and use the ticket from JIRA. - -## [Unreleased] - -### Bug - -### Improvement -- MS-4 - Refactor the vecwise_engine code structure - -### New Feature -- MS-3 - Define the SDK C++ interface - -### Task - -- MS-1 - Add CHANGELOG.md -- MS-161 - Add CI / CD Module to Milvus Project -- MS-202 - Add Milvus Jenkins project email notification -- MS-215 - Add Milvus cluster CI/CD groovy file -- MS-277 - Update CUDA Version to V10.1 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 73c8a4228c..0000000000 --- a/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM nvidia/cuda:9.0-devel-ubuntu16.04 - -ENV NVIDIA_DRIVER_CAPABILITIES compute,utility - -WORKDIR /app - -COPY environment.yaml install/miniconda.sh /app/ - -RUN ./miniconda.sh -p $HOME/miniconda -b -f \ - && echo ". /root/miniconda/etc/profile.d/conda.sh" >> /root/.bashrc \ - && /root/miniconda/bin/conda env create -f environment.yaml \ - && echo "conda activate vec_engine" >> /root/.bashrc \ - && rm /app/* - -COPY . /app diff --git a/INSTALL.md b/INSTALL.md deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/README.md b/README.md deleted file mode 100644 index 8f196375ff..0000000000 --- a/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# Vecwise Engine Dev Guide - -## Install via Conda -1. Install Miniconda first - - `bash vecwise_engine/install/miniconda.sh` - -2. Create environment - - `conda env create -f vecwise_engine/environment.yaml` - -3. Test your installation - -## Install via Docker - -1. Install nvidia-docker - -2. `docker build -t cuda9.0/VecEngine .` - -3. `docker run -it cuda9.0/VecEngine bash` - - -## Create Database -1. Install MySQL - - `sudo apt-get update` - - `sudo apt-get install mariadb-server` - -2. Create user and database: - - `create user vecwise;` - - `create database vecdata;` - - `grant all privileges on vecdata.* to 'vecwise'@'%';` - - `flush privileges;` - -3. Create table: - - `cd vecwise_engine/pyengine && python manager.py create_all` \ No newline at end of file diff --git a/cmake-format.py b/cmake-format.py deleted file mode 100644 index 0976642031..0000000000 --- a/cmake-format.py +++ /dev/null @@ -1,59 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# cmake-format configuration file -# Use run-cmake-format.py to reformat all cmake files in the source tree - -# How wide to allow formatted cmake files -line_width = 90 - -# How many spaces to tab for indent -tab_size = 2 - -# If arglists are longer than this, break them always -max_subargs_per_line = 4 - -# If true, separate flow control names from their parentheses with a space -separate_ctrl_name_with_space = False - -# If true, separate function names from parentheses with a space -separate_fn_name_with_space = False - -# If a statement is wrapped to more than one line, than dangle the closing -# parenthesis on it's own line -dangle_parens = False - -# What style line endings to use in the output. -line_ending = 'unix' - -# Format command names consistently as 'lower' or 'upper' case -command_case = 'lower' - -# Format keywords consistently as 'lower' or 'upper' case -keyword_case = 'unchanged' - -# enable comment markup parsing and reflow -enable_markup = False - -# If comment markup is enabled, don't reflow the first comment block in -# eachlistfile. Use this to preserve formatting of your -# copyright/licensestatements. -first_comment_is_literal = False - -# If comment markup is enabled, don't reflow any comment block which matchesthis -# (regex) pattern. Default is `None` (disabled). -literal_comment_pattern = None diff --git a/cpp/.gitignore b/core/.gitignore similarity index 100% rename from cpp/.gitignore rename to core/.gitignore diff --git a/cpp/CHANGELOG.md b/core/CHANGELOG.md similarity index 99% rename from cpp/CHANGELOG.md rename to core/CHANGELOG.md index b8b854c258..6c561c0e5a 100644 --- a/cpp/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -56,6 +56,7 @@ Please mark all change in change log and use the ticket from JIRA. - MS-602 - Remove zilliz namespace - MS-610 - Change error code base value from hex to decimal - MS-635 - Add compile option to support customized faiss +- MS-624 - Re-organize project directory for open-source # Milvus 0.4.0 (2019-09-12) diff --git a/cpp/CMakeLists.txt b/core/CMakeLists.txt similarity index 100% rename from cpp/CMakeLists.txt rename to core/CMakeLists.txt diff --git a/cpp/CODE_OF_CONDUCT.md b/core/CODE_OF_CONDUCT.md similarity index 100% rename from cpp/CODE_OF_CONDUCT.md rename to core/CODE_OF_CONDUCT.md diff --git a/cpp/CONTRIBUTING.md b/core/CONTRIBUTING.md similarity index 100% rename from cpp/CONTRIBUTING.md rename to core/CONTRIBUTING.md diff --git a/cpp/NOTICE.md b/core/NOTICE.md similarity index 100% rename from cpp/NOTICE.md rename to core/NOTICE.md diff --git a/cpp/README.md b/core/README.md similarity index 100% rename from cpp/README.md rename to core/README.md diff --git a/cpp/build-support/code_style_clion.xml b/core/build-support/code_style_clion.xml similarity index 100% rename from cpp/build-support/code_style_clion.xml rename to core/build-support/code_style_clion.xml diff --git a/cpp/build-support/cpplint.py b/core/build-support/cpplint.py similarity index 100% rename from cpp/build-support/cpplint.py rename to core/build-support/cpplint.py diff --git a/cpp/build-support/lint_exclusions.txt b/core/build-support/lint_exclusions.txt similarity index 85% rename from cpp/build-support/lint_exclusions.txt rename to core/build-support/lint_exclusions.txt index 6ac690f661..226db75a43 100644 --- a/cpp/build-support/lint_exclusions.txt +++ b/core/build-support/lint_exclusions.txt @@ -1,7 +1,7 @@ *cmake-build-debug* *cmake-build-release* *cmake_build* -*src/core/thirdparty* +*src/index/thirdparty* *thirdparty* *easylogging++* *SqliteMetaImpl.cpp diff --git a/cpp/build-support/lintutils.py b/core/build-support/lintutils.py similarity index 100% rename from cpp/build-support/lintutils.py rename to core/build-support/lintutils.py diff --git a/cpp/build-support/run_clang_format.py b/core/build-support/run_clang_format.py similarity index 100% rename from cpp/build-support/run_clang_format.py rename to core/build-support/run_clang_format.py diff --git a/cpp/build-support/run_clang_tidy.py b/core/build-support/run_clang_tidy.py similarity index 100% rename from cpp/build-support/run_clang_tidy.py rename to core/build-support/run_clang_tidy.py diff --git a/cpp/build-support/run_cpplint.py b/core/build-support/run_cpplint.py similarity index 100% rename from cpp/build-support/run_cpplint.py rename to core/build-support/run_cpplint.py diff --git a/cpp/build.sh b/core/build.sh similarity index 100% rename from cpp/build.sh rename to core/build.sh diff --git a/cpp/cmake/BuildUtils.cmake b/core/cmake/BuildUtils.cmake similarity index 100% rename from cpp/cmake/BuildUtils.cmake rename to core/cmake/BuildUtils.cmake diff --git a/cpp/cmake/DefineOptions.cmake b/core/cmake/DefineOptions.cmake similarity index 100% rename from cpp/cmake/DefineOptions.cmake rename to core/cmake/DefineOptions.cmake diff --git a/cpp/cmake/FindClangTools.cmake b/core/cmake/FindClangTools.cmake similarity index 100% rename from cpp/cmake/FindClangTools.cmake rename to core/cmake/FindClangTools.cmake diff --git a/cpp/cmake/ThirdPartyPackages.cmake b/core/cmake/ThirdPartyPackages.cmake similarity index 100% rename from cpp/cmake/ThirdPartyPackages.cmake rename to core/cmake/ThirdPartyPackages.cmake diff --git a/cpp/conf/log_config.template b/core/conf/log_config.template similarity index 100% rename from cpp/conf/log_config.template rename to core/conf/log_config.template diff --git a/cpp/conf/server_config.template b/core/conf/server_config.template similarity index 100% rename from cpp/conf/server_config.template rename to core/conf/server_config.template diff --git a/cpp/coverage.sh b/core/coverage.sh similarity index 97% rename from cpp/coverage.sh rename to core/coverage.sh index 8a7e5f52a1..bba733e1f8 100755 --- a/cpp/coverage.sh +++ b/core/coverage.sh @@ -98,8 +98,8 @@ ${LCOV_CMD} -r "${FILE_INFO_OUTPUT}" -o "${FILE_INFO_OUTPUT_NEW}" \ "/usr/*" \ "*/boost/*" \ "*/cmake_build/*_ep-prefix/*" \ - "src/core/cmake_build*" \ - "src/core/thirdparty*" \ + "src/index/cmake_build*" \ + "src/index/thirdparty*" \ "src/grpc*"\ "src/metrics/MetricBase.h"\ "src/server/Server.cpp"\ @@ -109,4 +109,4 @@ ${LCOV_CMD} -r "${FILE_INFO_OUTPUT}" -o "${FILE_INFO_OUTPUT_NEW}" \ "src/utils/easylogging++.cc"\ # gen html report -${LCOV_GEN_CMD} "${FILE_INFO_OUTPUT_NEW}" --output-directory ${DIR_LCOV_OUTPUT}/ \ No newline at end of file +${LCOV_GEN_CMD} "${FILE_INFO_OUTPUT_NEW}" --output-directory ${DIR_LCOV_OUTPUT}/ diff --git a/cpp/scripts/start_server.sh b/core/scripts/start_server.sh similarity index 100% rename from cpp/scripts/start_server.sh rename to core/scripts/start_server.sh diff --git a/cpp/scripts/stop_server.sh b/core/scripts/stop_server.sh similarity index 100% rename from cpp/scripts/stop_server.sh rename to core/scripts/stop_server.sh diff --git a/cpp/src/CMakeLists.txt b/core/src/CMakeLists.txt similarity index 95% rename from cpp/src/CMakeLists.txt rename to core/src/CMakeLists.txt index 0005edbaf7..b119a517d1 100644 --- a/cpp/src/CMakeLists.txt +++ b/core/src/CMakeLists.txt @@ -25,7 +25,7 @@ include_directories(${MILVUS_ENGINE_SRC}/grpc/gen-status) include_directories(${MILVUS_ENGINE_SRC}/grpc/gen-milvus) #this statement must put here, since the CORE_INCLUDE_DIRS is defined in code/CMakeList.txt -add_subdirectory(core) +add_subdirectory(index) set(CORE_INCLUDE_DIRS ${CORE_INCLUDE_DIRS} PARENT_SCOPE) foreach (dir ${CORE_INCLUDE_DIRS}) include_directories(${dir}) @@ -182,8 +182,8 @@ target_link_libraries(milvus_server install(TARGETS milvus_server DESTINATION bin) install(FILES - ${CMAKE_SOURCE_DIR}/src/core/thirdparty/tbb/${CMAKE_SHARED_LIBRARY_PREFIX}tbb${CMAKE_SHARED_LIBRARY_SUFFIX} - ${CMAKE_SOURCE_DIR}/src/core/thirdparty/tbb/${CMAKE_SHARED_LIBRARY_PREFIX}tbb${CMAKE_SHARED_LIBRARY_SUFFIX}.2 + ${CMAKE_SOURCE_DIR}/src/index/thirdparty/tbb/${CMAKE_SHARED_LIBRARY_PREFIX}tbb${CMAKE_SHARED_LIBRARY_SUFFIX} + ${CMAKE_SOURCE_DIR}/src/index/thirdparty/tbb/${CMAKE_SHARED_LIBRARY_PREFIX}tbb${CMAKE_SHARED_LIBRARY_SUFFIX}.2 ${CMAKE_BINARY_DIR}/mysqlpp_ep-prefix/src/mysqlpp_ep/lib/${CMAKE_SHARED_LIBRARY_PREFIX}mysqlpp${CMAKE_SHARED_LIBRARY_SUFFIX} ${CMAKE_BINARY_DIR}/mysqlpp_ep-prefix/src/mysqlpp_ep/lib/${CMAKE_SHARED_LIBRARY_PREFIX}mysqlpp${CMAKE_SHARED_LIBRARY_SUFFIX}.3 ${CMAKE_BINARY_DIR}/mysqlpp_ep-prefix/src/mysqlpp_ep/lib/${CMAKE_SHARED_LIBRARY_PREFIX}mysqlpp${CMAKE_SHARED_LIBRARY_SUFFIX}.3.2.4 diff --git a/cpp/src/cache/Cache.h b/core/src/cache/Cache.h similarity index 100% rename from cpp/src/cache/Cache.h rename to core/src/cache/Cache.h diff --git a/cpp/src/cache/Cache.inl b/core/src/cache/Cache.inl similarity index 100% rename from cpp/src/cache/Cache.inl rename to core/src/cache/Cache.inl diff --git a/cpp/src/cache/CacheMgr.h b/core/src/cache/CacheMgr.h similarity index 100% rename from cpp/src/cache/CacheMgr.h rename to core/src/cache/CacheMgr.h diff --git a/cpp/src/cache/CacheMgr.inl b/core/src/cache/CacheMgr.inl similarity index 100% rename from cpp/src/cache/CacheMgr.inl rename to core/src/cache/CacheMgr.inl diff --git a/cpp/src/cache/CpuCacheMgr.cpp b/core/src/cache/CpuCacheMgr.cpp similarity index 100% rename from cpp/src/cache/CpuCacheMgr.cpp rename to core/src/cache/CpuCacheMgr.cpp diff --git a/cpp/src/cache/CpuCacheMgr.h b/core/src/cache/CpuCacheMgr.h similarity index 100% rename from cpp/src/cache/CpuCacheMgr.h rename to core/src/cache/CpuCacheMgr.h diff --git a/cpp/src/cache/DataObj.h b/core/src/cache/DataObj.h similarity index 100% rename from cpp/src/cache/DataObj.h rename to core/src/cache/DataObj.h diff --git a/cpp/src/cache/GpuCacheMgr.cpp b/core/src/cache/GpuCacheMgr.cpp similarity index 100% rename from cpp/src/cache/GpuCacheMgr.cpp rename to core/src/cache/GpuCacheMgr.cpp diff --git a/cpp/src/cache/GpuCacheMgr.h b/core/src/cache/GpuCacheMgr.h similarity index 100% rename from cpp/src/cache/GpuCacheMgr.h rename to core/src/cache/GpuCacheMgr.h diff --git a/cpp/src/cache/LRU.h b/core/src/cache/LRU.h similarity index 100% rename from cpp/src/cache/LRU.h rename to core/src/cache/LRU.h diff --git a/cpp/src/config/ConfigMgr.cpp b/core/src/config/ConfigMgr.cpp similarity index 100% rename from cpp/src/config/ConfigMgr.cpp rename to core/src/config/ConfigMgr.cpp diff --git a/cpp/src/config/ConfigMgr.h b/core/src/config/ConfigMgr.h similarity index 100% rename from cpp/src/config/ConfigMgr.h rename to core/src/config/ConfigMgr.h diff --git a/cpp/src/config/ConfigNode.cpp b/core/src/config/ConfigNode.cpp similarity index 100% rename from cpp/src/config/ConfigNode.cpp rename to core/src/config/ConfigNode.cpp diff --git a/cpp/src/config/ConfigNode.h b/core/src/config/ConfigNode.h similarity index 100% rename from cpp/src/config/ConfigNode.h rename to core/src/config/ConfigNode.h diff --git a/cpp/src/config/YamlConfigMgr.cpp b/core/src/config/YamlConfigMgr.cpp similarity index 100% rename from cpp/src/config/YamlConfigMgr.cpp rename to core/src/config/YamlConfigMgr.cpp diff --git a/cpp/src/config/YamlConfigMgr.h b/core/src/config/YamlConfigMgr.h similarity index 100% rename from cpp/src/config/YamlConfigMgr.h rename to core/src/config/YamlConfigMgr.h diff --git a/cpp/src/db/Constants.h b/core/src/db/Constants.h similarity index 100% rename from cpp/src/db/Constants.h rename to core/src/db/Constants.h diff --git a/cpp/src/db/DB.h b/core/src/db/DB.h similarity index 100% rename from cpp/src/db/DB.h rename to core/src/db/DB.h diff --git a/cpp/src/db/DBFactory.cpp b/core/src/db/DBFactory.cpp similarity index 100% rename from cpp/src/db/DBFactory.cpp rename to core/src/db/DBFactory.cpp diff --git a/cpp/src/db/DBFactory.h b/core/src/db/DBFactory.h similarity index 100% rename from cpp/src/db/DBFactory.h rename to core/src/db/DBFactory.h diff --git a/cpp/src/db/DBImpl.cpp b/core/src/db/DBImpl.cpp similarity index 100% rename from cpp/src/db/DBImpl.cpp rename to core/src/db/DBImpl.cpp diff --git a/cpp/src/db/DBImpl.h b/core/src/db/DBImpl.h similarity index 100% rename from cpp/src/db/DBImpl.h rename to core/src/db/DBImpl.h diff --git a/cpp/src/db/IDGenerator.cpp b/core/src/db/IDGenerator.cpp similarity index 100% rename from cpp/src/db/IDGenerator.cpp rename to core/src/db/IDGenerator.cpp diff --git a/cpp/src/db/IDGenerator.h b/core/src/db/IDGenerator.h similarity index 100% rename from cpp/src/db/IDGenerator.h rename to core/src/db/IDGenerator.h diff --git a/cpp/src/db/Options.cpp b/core/src/db/Options.cpp similarity index 100% rename from cpp/src/db/Options.cpp rename to core/src/db/Options.cpp diff --git a/cpp/src/db/Options.h b/core/src/db/Options.h similarity index 100% rename from cpp/src/db/Options.h rename to core/src/db/Options.h diff --git a/cpp/src/db/Types.h b/core/src/db/Types.h similarity index 100% rename from cpp/src/db/Types.h rename to core/src/db/Types.h diff --git a/cpp/src/db/Utils.cpp b/core/src/db/Utils.cpp similarity index 100% rename from cpp/src/db/Utils.cpp rename to core/src/db/Utils.cpp diff --git a/cpp/src/db/Utils.h b/core/src/db/Utils.h similarity index 100% rename from cpp/src/db/Utils.h rename to core/src/db/Utils.h diff --git a/cpp/src/db/engine/EngineFactory.cpp b/core/src/db/engine/EngineFactory.cpp similarity index 100% rename from cpp/src/db/engine/EngineFactory.cpp rename to core/src/db/engine/EngineFactory.cpp diff --git a/cpp/src/db/engine/EngineFactory.h b/core/src/db/engine/EngineFactory.h similarity index 100% rename from cpp/src/db/engine/EngineFactory.h rename to core/src/db/engine/EngineFactory.h diff --git a/cpp/src/db/engine/ExecutionEngine.h b/core/src/db/engine/ExecutionEngine.h similarity index 100% rename from cpp/src/db/engine/ExecutionEngine.h rename to core/src/db/engine/ExecutionEngine.h diff --git a/cpp/src/db/engine/ExecutionEngineImpl.cpp b/core/src/db/engine/ExecutionEngineImpl.cpp similarity index 98% rename from cpp/src/db/engine/ExecutionEngineImpl.cpp rename to core/src/db/engine/ExecutionEngineImpl.cpp index 3fa68aae52..1d758f38fa 100644 --- a/cpp/src/db/engine/ExecutionEngineImpl.cpp +++ b/core/src/db/engine/ExecutionEngineImpl.cpp @@ -25,14 +25,14 @@ #include "knowhere/common/Config.h" #include "knowhere/common/Exception.h" +#include "knowhere/index/vector_index/IndexIVFSQHybrid.h" +#include "scheduler/Utils.h" #include "server/Config.h" -#include "src/wrapper/VecImpl.h" -#include "src/wrapper/VecIndex.h" #include "wrapper/ConfAdapter.h" #include "wrapper/ConfAdapterMgr.h" +#include "wrapper/VecImpl.h" +#include "wrapper/VecIndex.h" -#include -#include #include #include #include diff --git a/cpp/src/db/engine/ExecutionEngineImpl.h b/core/src/db/engine/ExecutionEngineImpl.h similarity index 98% rename from cpp/src/db/engine/ExecutionEngineImpl.h rename to core/src/db/engine/ExecutionEngineImpl.h index 9cbabb2bd5..10379d1651 100644 --- a/cpp/src/db/engine/ExecutionEngineImpl.h +++ b/core/src/db/engine/ExecutionEngineImpl.h @@ -18,7 +18,7 @@ #pragma once #include "ExecutionEngine.h" -#include "src/wrapper/VecIndex.h" +#include "wrapper/VecIndex.h" #include #include diff --git a/cpp/src/db/insert/MemManager.h b/core/src/db/insert/MemManager.h similarity index 100% rename from cpp/src/db/insert/MemManager.h rename to core/src/db/insert/MemManager.h diff --git a/cpp/src/db/insert/MemManagerImpl.cpp b/core/src/db/insert/MemManagerImpl.cpp similarity index 100% rename from cpp/src/db/insert/MemManagerImpl.cpp rename to core/src/db/insert/MemManagerImpl.cpp diff --git a/cpp/src/db/insert/MemManagerImpl.h b/core/src/db/insert/MemManagerImpl.h similarity index 100% rename from cpp/src/db/insert/MemManagerImpl.h rename to core/src/db/insert/MemManagerImpl.h diff --git a/cpp/src/db/insert/MemMenagerFactory.cpp b/core/src/db/insert/MemMenagerFactory.cpp similarity index 100% rename from cpp/src/db/insert/MemMenagerFactory.cpp rename to core/src/db/insert/MemMenagerFactory.cpp diff --git a/cpp/src/db/insert/MemMenagerFactory.h b/core/src/db/insert/MemMenagerFactory.h similarity index 100% rename from cpp/src/db/insert/MemMenagerFactory.h rename to core/src/db/insert/MemMenagerFactory.h diff --git a/cpp/src/db/insert/MemTable.cpp b/core/src/db/insert/MemTable.cpp similarity index 100% rename from cpp/src/db/insert/MemTable.cpp rename to core/src/db/insert/MemTable.cpp diff --git a/cpp/src/db/insert/MemTable.h b/core/src/db/insert/MemTable.h similarity index 100% rename from cpp/src/db/insert/MemTable.h rename to core/src/db/insert/MemTable.h diff --git a/cpp/src/db/insert/MemTableFile.cpp b/core/src/db/insert/MemTableFile.cpp similarity index 100% rename from cpp/src/db/insert/MemTableFile.cpp rename to core/src/db/insert/MemTableFile.cpp diff --git a/cpp/src/db/insert/MemTableFile.h b/core/src/db/insert/MemTableFile.h similarity index 100% rename from cpp/src/db/insert/MemTableFile.h rename to core/src/db/insert/MemTableFile.h diff --git a/cpp/src/db/insert/VectorSource.cpp b/core/src/db/insert/VectorSource.cpp similarity index 100% rename from cpp/src/db/insert/VectorSource.cpp rename to core/src/db/insert/VectorSource.cpp diff --git a/cpp/src/db/insert/VectorSource.h b/core/src/db/insert/VectorSource.h similarity index 100% rename from cpp/src/db/insert/VectorSource.h rename to core/src/db/insert/VectorSource.h diff --git a/cpp/src/db/meta/Meta.h b/core/src/db/meta/Meta.h similarity index 100% rename from cpp/src/db/meta/Meta.h rename to core/src/db/meta/Meta.h diff --git a/cpp/src/db/meta/MetaConsts.h b/core/src/db/meta/MetaConsts.h similarity index 100% rename from cpp/src/db/meta/MetaConsts.h rename to core/src/db/meta/MetaConsts.h diff --git a/cpp/src/db/meta/MetaFactory.cpp b/core/src/db/meta/MetaFactory.cpp similarity index 100% rename from cpp/src/db/meta/MetaFactory.cpp rename to core/src/db/meta/MetaFactory.cpp diff --git a/cpp/src/db/meta/MetaFactory.h b/core/src/db/meta/MetaFactory.h similarity index 100% rename from cpp/src/db/meta/MetaFactory.h rename to core/src/db/meta/MetaFactory.h diff --git a/cpp/src/db/meta/MetaTypes.h b/core/src/db/meta/MetaTypes.h similarity index 97% rename from cpp/src/db/meta/MetaTypes.h rename to core/src/db/meta/MetaTypes.h index c973f3fdea..c6a6b6ae87 100644 --- a/cpp/src/db/meta/MetaTypes.h +++ b/core/src/db/meta/MetaTypes.h @@ -41,6 +41,11 @@ using DateT = int; const DateT EmptyDate = -1; using DatesT = std::vector; +struct DateRange { + DateT start_date_ = 0x1 << 32; + DateT end_date_ = 0; +}; + struct TableSchema { typedef enum { NORMAL, diff --git a/cpp/src/db/meta/MySQLConnectionPool.cpp b/core/src/db/meta/MySQLConnectionPool.cpp similarity index 100% rename from cpp/src/db/meta/MySQLConnectionPool.cpp rename to core/src/db/meta/MySQLConnectionPool.cpp diff --git a/cpp/src/db/meta/MySQLConnectionPool.h b/core/src/db/meta/MySQLConnectionPool.h similarity index 100% rename from cpp/src/db/meta/MySQLConnectionPool.h rename to core/src/db/meta/MySQLConnectionPool.h diff --git a/cpp/src/db/meta/MySQLMetaImpl.cpp b/core/src/db/meta/MySQLMetaImpl.cpp similarity index 100% rename from cpp/src/db/meta/MySQLMetaImpl.cpp rename to core/src/db/meta/MySQLMetaImpl.cpp diff --git a/cpp/src/db/meta/MySQLMetaImpl.h b/core/src/db/meta/MySQLMetaImpl.h similarity index 100% rename from cpp/src/db/meta/MySQLMetaImpl.h rename to core/src/db/meta/MySQLMetaImpl.h diff --git a/cpp/src/db/meta/SqliteMetaImpl.cpp b/core/src/db/meta/SqliteMetaImpl.cpp similarity index 100% rename from cpp/src/db/meta/SqliteMetaImpl.cpp rename to core/src/db/meta/SqliteMetaImpl.cpp diff --git a/cpp/src/db/meta/SqliteMetaImpl.h b/core/src/db/meta/SqliteMetaImpl.h similarity index 100% rename from cpp/src/db/meta/SqliteMetaImpl.h rename to core/src/db/meta/SqliteMetaImpl.h diff --git a/cpp/src/grpc/cpp_gen.sh b/core/src/grpc/cpp_gen.sh similarity index 100% rename from cpp/src/grpc/cpp_gen.sh rename to core/src/grpc/cpp_gen.sh diff --git a/cpp/src/grpc/gen-milvus/milvus.grpc.pb.cc b/core/src/grpc/gen-milvus/milvus.grpc.pb.cc similarity index 100% rename from cpp/src/grpc/gen-milvus/milvus.grpc.pb.cc rename to core/src/grpc/gen-milvus/milvus.grpc.pb.cc diff --git a/cpp/src/grpc/gen-milvus/milvus.grpc.pb.h b/core/src/grpc/gen-milvus/milvus.grpc.pb.h similarity index 100% rename from cpp/src/grpc/gen-milvus/milvus.grpc.pb.h rename to core/src/grpc/gen-milvus/milvus.grpc.pb.h diff --git a/cpp/src/grpc/gen-milvus/milvus.pb.cc b/core/src/grpc/gen-milvus/milvus.pb.cc similarity index 100% rename from cpp/src/grpc/gen-milvus/milvus.pb.cc rename to core/src/grpc/gen-milvus/milvus.pb.cc diff --git a/cpp/src/grpc/gen-milvus/milvus.pb.h b/core/src/grpc/gen-milvus/milvus.pb.h similarity index 100% rename from cpp/src/grpc/gen-milvus/milvus.pb.h rename to core/src/grpc/gen-milvus/milvus.pb.h diff --git a/cpp/src/grpc/gen-status/status.grpc.pb.cc b/core/src/grpc/gen-status/status.grpc.pb.cc similarity index 100% rename from cpp/src/grpc/gen-status/status.grpc.pb.cc rename to core/src/grpc/gen-status/status.grpc.pb.cc diff --git a/cpp/src/grpc/gen-status/status.grpc.pb.h b/core/src/grpc/gen-status/status.grpc.pb.h similarity index 100% rename from cpp/src/grpc/gen-status/status.grpc.pb.h rename to core/src/grpc/gen-status/status.grpc.pb.h diff --git a/cpp/src/grpc/gen-status/status.pb.cc b/core/src/grpc/gen-status/status.pb.cc similarity index 100% rename from cpp/src/grpc/gen-status/status.pb.cc rename to core/src/grpc/gen-status/status.pb.cc diff --git a/cpp/src/grpc/gen-status/status.pb.h b/core/src/grpc/gen-status/status.pb.h similarity index 100% rename from cpp/src/grpc/gen-status/status.pb.h rename to core/src/grpc/gen-status/status.pb.h diff --git a/cpp/src/grpc/milvus.proto b/core/src/grpc/milvus.proto similarity index 100% rename from cpp/src/grpc/milvus.proto rename to core/src/grpc/milvus.proto diff --git a/cpp/src/grpc/status.proto b/core/src/grpc/status.proto similarity index 100% rename from cpp/src/grpc/status.proto rename to core/src/grpc/status.proto diff --git a/cpp/src/core/.gitignore b/core/src/index/.gitignore similarity index 100% rename from cpp/src/core/.gitignore rename to core/src/index/.gitignore diff --git a/cpp/src/core/CMakeLists.txt b/core/src/index/CMakeLists.txt similarity index 100% rename from cpp/src/core/CMakeLists.txt rename to core/src/index/CMakeLists.txt diff --git a/cpp/src/core/build.sh b/core/src/index/build.sh similarity index 100% rename from cpp/src/core/build.sh rename to core/src/index/build.sh diff --git a/cpp/src/core/cmake/BuildUtilsCore.cmake b/core/src/index/cmake/BuildUtilsCore.cmake similarity index 100% rename from cpp/src/core/cmake/BuildUtilsCore.cmake rename to core/src/index/cmake/BuildUtilsCore.cmake diff --git a/cpp/src/core/cmake/DefineOptionsCore.cmake b/core/src/index/cmake/DefineOptionsCore.cmake similarity index 100% rename from cpp/src/core/cmake/DefineOptionsCore.cmake rename to core/src/index/cmake/DefineOptionsCore.cmake diff --git a/cpp/src/core/cmake/ThirdPartyPackagesCore.cmake b/core/src/index/cmake/ThirdPartyPackagesCore.cmake similarity index 100% rename from cpp/src/core/cmake/ThirdPartyPackagesCore.cmake rename to core/src/index/cmake/ThirdPartyPackagesCore.cmake diff --git a/cpp/src/core/knowhere/CMakeLists.txt b/core/src/index/knowhere/CMakeLists.txt similarity index 100% rename from cpp/src/core/knowhere/CMakeLists.txt rename to core/src/index/knowhere/CMakeLists.txt diff --git a/cpp/src/core/knowhere/knowhere/adapter/ArrowAdapter.cpp b/core/src/index/knowhere/knowhere/adapter/ArrowAdapter.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/adapter/ArrowAdapter.cpp rename to core/src/index/knowhere/knowhere/adapter/ArrowAdapter.cpp diff --git a/cpp/src/core/knowhere/knowhere/adapter/ArrowAdapter.h b/core/src/index/knowhere/knowhere/adapter/ArrowAdapter.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/adapter/ArrowAdapter.h rename to core/src/index/knowhere/knowhere/adapter/ArrowAdapter.h diff --git a/cpp/src/core/knowhere/knowhere/adapter/SptagAdapter.cpp b/core/src/index/knowhere/knowhere/adapter/SptagAdapter.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/adapter/SptagAdapter.cpp rename to core/src/index/knowhere/knowhere/adapter/SptagAdapter.cpp diff --git a/cpp/src/core/knowhere/knowhere/adapter/SptagAdapter.h b/core/src/index/knowhere/knowhere/adapter/SptagAdapter.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/adapter/SptagAdapter.h rename to core/src/index/knowhere/knowhere/adapter/SptagAdapter.h diff --git a/cpp/src/core/knowhere/knowhere/adapter/Structure.cpp b/core/src/index/knowhere/knowhere/adapter/Structure.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/adapter/Structure.cpp rename to core/src/index/knowhere/knowhere/adapter/Structure.cpp diff --git a/cpp/src/core/knowhere/knowhere/adapter/Structure.h b/core/src/index/knowhere/knowhere/adapter/Structure.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/adapter/Structure.h rename to core/src/index/knowhere/knowhere/adapter/Structure.h diff --git a/cpp/src/core/knowhere/knowhere/adapter/VectorAdapter.h b/core/src/index/knowhere/knowhere/adapter/VectorAdapter.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/adapter/VectorAdapter.h rename to core/src/index/knowhere/knowhere/adapter/VectorAdapter.h diff --git a/cpp/src/core/knowhere/knowhere/common/Array.h b/core/src/index/knowhere/knowhere/common/Array.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Array.h rename to core/src/index/knowhere/knowhere/common/Array.h diff --git a/cpp/src/core/knowhere/knowhere/common/BinarySet.h b/core/src/index/knowhere/knowhere/common/BinarySet.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/BinarySet.h rename to core/src/index/knowhere/knowhere/common/BinarySet.h diff --git a/cpp/src/core/knowhere/knowhere/common/Buffer.h b/core/src/index/knowhere/knowhere/common/Buffer.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Buffer.h rename to core/src/index/knowhere/knowhere/common/Buffer.h diff --git a/cpp/src/core/knowhere/knowhere/common/Config.h b/core/src/index/knowhere/knowhere/common/Config.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Config.h rename to core/src/index/knowhere/knowhere/common/Config.h diff --git a/cpp/src/core/knowhere/knowhere/common/Dataset.h b/core/src/index/knowhere/knowhere/common/Dataset.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Dataset.h rename to core/src/index/knowhere/knowhere/common/Dataset.h diff --git a/cpp/src/core/knowhere/knowhere/common/Exception.cpp b/core/src/index/knowhere/knowhere/common/Exception.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Exception.cpp rename to core/src/index/knowhere/knowhere/common/Exception.cpp diff --git a/cpp/src/core/knowhere/knowhere/common/Exception.h b/core/src/index/knowhere/knowhere/common/Exception.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Exception.h rename to core/src/index/knowhere/knowhere/common/Exception.h diff --git a/cpp/src/core/knowhere/knowhere/common/Id.h b/core/src/index/knowhere/knowhere/common/Id.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Id.h rename to core/src/index/knowhere/knowhere/common/Id.h diff --git a/cpp/src/core/knowhere/knowhere/common/Log.h b/core/src/index/knowhere/knowhere/common/Log.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Log.h rename to core/src/index/knowhere/knowhere/common/Log.h diff --git a/cpp/src/core/knowhere/knowhere/common/Schema.h b/core/src/index/knowhere/knowhere/common/Schema.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Schema.h rename to core/src/index/knowhere/knowhere/common/Schema.h diff --git a/cpp/src/core/knowhere/knowhere/common/Tensor.h b/core/src/index/knowhere/knowhere/common/Tensor.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Tensor.h rename to core/src/index/knowhere/knowhere/common/Tensor.h diff --git a/cpp/src/core/knowhere/knowhere/common/Timer.cpp b/core/src/index/knowhere/knowhere/common/Timer.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Timer.cpp rename to core/src/index/knowhere/knowhere/common/Timer.cpp diff --git a/cpp/src/core/knowhere/knowhere/common/Timer.h b/core/src/index/knowhere/knowhere/common/Timer.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/common/Timer.h rename to core/src/index/knowhere/knowhere/common/Timer.h diff --git a/cpp/src/core/knowhere/knowhere/index/Index.h b/core/src/index/knowhere/knowhere/index/Index.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/Index.h rename to core/src/index/knowhere/knowhere/index/Index.h diff --git a/cpp/src/core/knowhere/knowhere/index/IndexModel.h b/core/src/index/knowhere/knowhere/index/IndexModel.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/IndexModel.h rename to core/src/index/knowhere/knowhere/index/IndexModel.h diff --git a/cpp/src/core/knowhere/knowhere/index/IndexType.h b/core/src/index/knowhere/knowhere/index/IndexType.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/IndexType.h rename to core/src/index/knowhere/knowhere/index/IndexType.h diff --git a/cpp/src/core/knowhere/knowhere/index/preprocessor/Normalize.cpp b/core/src/index/knowhere/knowhere/index/preprocessor/Normalize.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/preprocessor/Normalize.cpp rename to core/src/index/knowhere/knowhere/index/preprocessor/Normalize.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/preprocessor/Normalize.h b/core/src/index/knowhere/knowhere/index/preprocessor/Normalize.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/preprocessor/Normalize.h rename to core/src/index/knowhere/knowhere/index/preprocessor/Normalize.h diff --git a/cpp/src/core/knowhere/knowhere/index/preprocessor/Preprocessor.h b/core/src/index/knowhere/knowhere/index/preprocessor/Preprocessor.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/preprocessor/Preprocessor.h rename to core/src/index/knowhere/knowhere/index/preprocessor/Preprocessor.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/FaissBaseIndex.cpp b/core/src/index/knowhere/knowhere/index/vector_index/FaissBaseIndex.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/FaissBaseIndex.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/FaissBaseIndex.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/FaissBaseIndex.h b/core/src/index/knowhere/knowhere/index/vector_index/FaissBaseIndex.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/FaissBaseIndex.h rename to core/src/index/knowhere/knowhere/index/vector_index/FaissBaseIndex.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVF.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVF.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVF.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVF.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVF.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVF.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVF.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVF.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVFPQ.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVFPQ.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVFPQ.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVFPQ.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVFPQ.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVFPQ.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVFPQ.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVFPQ.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVFSQ.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVFSQ.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVFSQ.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVFSQ.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVFSQ.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVFSQ.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexGPUIVFSQ.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexGPUIVFSQ.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIDMAP.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexIDMAP.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIDMAP.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIDMAP.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIDMAP.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexIDMAP.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIDMAP.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIDMAP.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVF.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexIVF.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVF.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIVF.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVF.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexIVF.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVF.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIVF.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFPQ.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexIVFPQ.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFPQ.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIVFPQ.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFPQ.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexIVFPQ.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFPQ.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIVFPQ.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQ.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexIVFSQ.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQ.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIVFSQ.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQ.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexIVFSQ.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQ.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIVFSQ.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexKDT.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexKDT.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexKDT.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexKDT.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexKDT.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexKDT.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexKDT.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexKDT.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexNSG.cpp b/core/src/index/knowhere/knowhere/index/vector_index/IndexNSG.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexNSG.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/IndexNSG.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/IndexNSG.h b/core/src/index/knowhere/knowhere/index/vector_index/IndexNSG.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/IndexNSG.h rename to core/src/index/knowhere/knowhere/index/vector_index/IndexNSG.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/Quantizer.h b/core/src/index/knowhere/knowhere/index/vector_index/Quantizer.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/Quantizer.h rename to core/src/index/knowhere/knowhere/index/vector_index/Quantizer.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/VectorIndex.h b/core/src/index/knowhere/knowhere/index/vector_index/VectorIndex.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/VectorIndex.h rename to core/src/index/knowhere/knowhere/index/vector_index/VectorIndex.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/Cloner.cpp b/core/src/index/knowhere/knowhere/index/vector_index/helpers/Cloner.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/Cloner.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/Cloner.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/Cloner.h b/core/src/index/knowhere/knowhere/index/vector_index/helpers/Cloner.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/Cloner.h rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/Cloner.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/Definitions.h b/core/src/index/knowhere/knowhere/index/vector_index/helpers/Definitions.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/Definitions.h rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/Definitions.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.cpp b/core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.h b/core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.h rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/FaissIO.cpp b/core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissIO.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/FaissIO.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissIO.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/FaissIO.h b/core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissIO.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/FaissIO.h rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissIO.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/IndexParameter.cpp b/core/src/index/knowhere/knowhere/index/vector_index/helpers/IndexParameter.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/IndexParameter.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/IndexParameter.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/IndexParameter.h b/core/src/index/knowhere/knowhere/index/vector_index/helpers/IndexParameter.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/IndexParameter.h rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/IndexParameter.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/KDTParameterMgr.cpp b/core/src/index/knowhere/knowhere/index/vector_index/helpers/KDTParameterMgr.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/KDTParameterMgr.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/KDTParameterMgr.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/helpers/KDTParameterMgr.h b/core/src/index/knowhere/knowhere/index/vector_index/helpers/KDTParameterMgr.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/helpers/KDTParameterMgr.h rename to core/src/index/knowhere/knowhere/index/vector_index/helpers/KDTParameterMgr.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSG.cpp b/core/src/index/knowhere/knowhere/index/vector_index/nsg/NSG.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSG.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/nsg/NSG.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSG.h b/core/src/index/knowhere/knowhere/index/vector_index/nsg/NSG.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSG.h rename to core/src/index/knowhere/knowhere/index/vector_index/nsg/NSG.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSGHelper.cpp b/core/src/index/knowhere/knowhere/index/vector_index/nsg/NSGHelper.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSGHelper.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/nsg/NSGHelper.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSGHelper.h b/core/src/index/knowhere/knowhere/index/vector_index/nsg/NSGHelper.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSGHelper.h rename to core/src/index/knowhere/knowhere/index/vector_index/nsg/NSGHelper.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSGIO.cpp b/core/src/index/knowhere/knowhere/index/vector_index/nsg/NSGIO.cpp similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSGIO.cpp rename to core/src/index/knowhere/knowhere/index/vector_index/nsg/NSGIO.cpp diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSGIO.h b/core/src/index/knowhere/knowhere/index/vector_index/nsg/NSGIO.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/nsg/NSGIO.h rename to core/src/index/knowhere/knowhere/index/vector_index/nsg/NSGIO.h diff --git a/cpp/src/core/knowhere/knowhere/index/vector_index/nsg/Neighbor.h b/core/src/index/knowhere/knowhere/index/vector_index/nsg/Neighbor.h similarity index 100% rename from cpp/src/core/knowhere/knowhere/index/vector_index/nsg/Neighbor.h rename to core/src/index/knowhere/knowhere/index/vector_index/nsg/Neighbor.h diff --git a/cpp/src/core/thirdparty/SPTAG/.github/ISSUE_TEMPLATE/bug_report.md b/core/src/index/thirdparty/SPTAG/.github/ISSUE_TEMPLATE/bug_report.md similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/.github/ISSUE_TEMPLATE/bug_report.md rename to core/src/index/thirdparty/SPTAG/.github/ISSUE_TEMPLATE/bug_report.md diff --git a/cpp/src/core/thirdparty/SPTAG/.github/ISSUE_TEMPLATE/feature_request.md b/core/src/index/thirdparty/SPTAG/.github/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/.github/ISSUE_TEMPLATE/feature_request.md rename to core/src/index/thirdparty/SPTAG/.github/ISSUE_TEMPLATE/feature_request.md diff --git a/cpp/src/core/thirdparty/SPTAG/.gitignore b/core/src/index/thirdparty/SPTAG/.gitignore similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/.gitignore rename to core/src/index/thirdparty/SPTAG/.gitignore diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService.users.props b/core/src/index/thirdparty/SPTAG/AnnService.users.props similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService.users.props rename to core/src/index/thirdparty/SPTAG/AnnService.users.props diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/Aggregator.vcxproj b/core/src/index/thirdparty/SPTAG/AnnService/Aggregator.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/Aggregator.vcxproj rename to core/src/index/thirdparty/SPTAG/AnnService/Aggregator.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/Aggregator.vcxproj.filters b/core/src/index/thirdparty/SPTAG/AnnService/Aggregator.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/Aggregator.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/AnnService/Aggregator.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/CMakeLists.txt b/core/src/index/thirdparty/SPTAG/AnnService/CMakeLists.txt similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/CMakeLists.txt rename to core/src/index/thirdparty/SPTAG/AnnService/CMakeLists.txt diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/Client.vcxproj b/core/src/index/thirdparty/SPTAG/AnnService/Client.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/Client.vcxproj rename to core/src/index/thirdparty/SPTAG/AnnService/Client.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/Client.vcxproj.filters b/core/src/index/thirdparty/SPTAG/AnnService/Client.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/Client.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/AnnService/Client.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/CoreLibrary.vcxproj b/core/src/index/thirdparty/SPTAG/AnnService/CoreLibrary.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/CoreLibrary.vcxproj rename to core/src/index/thirdparty/SPTAG/AnnService/CoreLibrary.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/CoreLibrary.vcxproj.filters b/core/src/index/thirdparty/SPTAG/AnnService/CoreLibrary.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/CoreLibrary.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/AnnService/CoreLibrary.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/IndexBuilder.vcxproj b/core/src/index/thirdparty/SPTAG/AnnService/IndexBuilder.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/IndexBuilder.vcxproj rename to core/src/index/thirdparty/SPTAG/AnnService/IndexBuilder.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/IndexBuilder.vcxproj.filters b/core/src/index/thirdparty/SPTAG/AnnService/IndexBuilder.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/IndexBuilder.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/AnnService/IndexBuilder.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/IndexSearcher.vcxproj b/core/src/index/thirdparty/SPTAG/AnnService/IndexSearcher.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/IndexSearcher.vcxproj rename to core/src/index/thirdparty/SPTAG/AnnService/IndexSearcher.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/IndexSearcher.vcxproj.filters b/core/src/index/thirdparty/SPTAG/AnnService/IndexSearcher.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/IndexSearcher.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/AnnService/IndexSearcher.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/Server.vcxproj b/core/src/index/thirdparty/SPTAG/AnnService/Server.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/Server.vcxproj rename to core/src/index/thirdparty/SPTAG/AnnService/Server.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/Server.vcxproj.filters b/core/src/index/thirdparty/SPTAG/AnnService/Server.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/Server.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/AnnService/Server.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/SocketLib.vcxproj b/core/src/index/thirdparty/SPTAG/AnnService/SocketLib.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/SocketLib.vcxproj rename to core/src/index/thirdparty/SPTAG/AnnService/SocketLib.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/SocketLib.vcxproj.filters b/core/src/index/thirdparty/SPTAG/AnnService/SocketLib.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/SocketLib.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/AnnService/SocketLib.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorContext.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorContext.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorContext.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorContext.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorExecutionContext.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorExecutionContext.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorExecutionContext.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorExecutionContext.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorService.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorService.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorService.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorService.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorSettings.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorSettings.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorSettings.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Aggregator/AggregatorSettings.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Client/ClientWrapper.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Client/ClientWrapper.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Client/ClientWrapper.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Client/ClientWrapper.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Client/Options.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Client/Options.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Client/Options.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Client/Options.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/BKT/Index.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/BKT/Index.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/BKT/Index.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/BKT/Index.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/BKT/ParameterDefinitionList.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/BKT/ParameterDefinitionList.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/BKT/ParameterDefinitionList.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/BKT/ParameterDefinitionList.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/BKTree.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/BKTree.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/BKTree.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/BKTree.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/CommonUtils.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/CommonUtils.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/CommonUtils.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/CommonUtils.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/DataUtils.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/DataUtils.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/DataUtils.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/DataUtils.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/Dataset.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/Dataset.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/Dataset.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/Dataset.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/DistanceUtils.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/DistanceUtils.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/DistanceUtils.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/DistanceUtils.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/FineGrainedLock.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/FineGrainedLock.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/FineGrainedLock.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/FineGrainedLock.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/Heap.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/Heap.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/Heap.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/Heap.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/KDTree.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/KDTree.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/KDTree.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/KDTree.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/NeighborhoodGraph.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/NeighborhoodGraph.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/NeighborhoodGraph.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/NeighborhoodGraph.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/QueryResultSet.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/QueryResultSet.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/QueryResultSet.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/QueryResultSet.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/RelativeNeighborhoodGraph.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/RelativeNeighborhoodGraph.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/RelativeNeighborhoodGraph.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/RelativeNeighborhoodGraph.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/WorkSpace.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/WorkSpace.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/WorkSpace.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/WorkSpace.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/WorkSpacePool.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/WorkSpacePool.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/Common/WorkSpacePool.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/Common/WorkSpacePool.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/CommonDataStructure.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/CommonDataStructure.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/CommonDataStructure.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/CommonDataStructure.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/DefinitionList.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/DefinitionList.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/DefinitionList.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/DefinitionList.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/KDT/Index.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/KDT/Index.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/KDT/Index.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/KDT/Index.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/KDT/ParameterDefinitionList.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/KDT/ParameterDefinitionList.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/KDT/ParameterDefinitionList.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/KDT/ParameterDefinitionList.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/MetadataSet.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/MetadataSet.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/MetadataSet.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/MetadataSet.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/SearchQuery.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/SearchQuery.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/SearchQuery.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/SearchQuery.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/VectorIndex.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/VectorIndex.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/VectorIndex.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/VectorIndex.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/VectorSet.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Core/VectorSet.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Core/VectorSet.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Core/VectorSet.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/ArgumentsParser.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/ArgumentsParser.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/ArgumentsParser.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/ArgumentsParser.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/Base64Encode.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/Base64Encode.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/Base64Encode.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/Base64Encode.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/CommonHelper.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/CommonHelper.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/CommonHelper.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/CommonHelper.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/Concurrent.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/Concurrent.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/Concurrent.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/Concurrent.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/SimpleIniReader.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/SimpleIniReader.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/SimpleIniReader.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/SimpleIniReader.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/StringConvert.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/StringConvert.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Helper/StringConvert.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Helper/StringConvert.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/IndexBuilder/Options.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/IndexBuilder/Options.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/IndexBuilder/Options.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/IndexBuilder/Options.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/IndexBuilder/ThreadPool.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/IndexBuilder/ThreadPool.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/IndexBuilder/ThreadPool.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/IndexBuilder/ThreadPool.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/IndexBuilder/VectorSetReader.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/IndexBuilder/VectorSetReader.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/IndexBuilder/VectorSetReader.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/IndexBuilder/VectorSetReader.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/IndexBuilder/VectorSetReaders/DefaultReader.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/IndexBuilder/VectorSetReaders/DefaultReader.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/IndexBuilder/VectorSetReaders/DefaultReader.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/IndexBuilder/VectorSetReaders/DefaultReader.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/QueryParser.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Server/QueryParser.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/QueryParser.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Server/QueryParser.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/SearchExecutionContext.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Server/SearchExecutionContext.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/SearchExecutionContext.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Server/SearchExecutionContext.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/SearchExecutor.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Server/SearchExecutor.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/SearchExecutor.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Server/SearchExecutor.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/SearchService.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Server/SearchService.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/SearchService.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Server/SearchService.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/ServiceContext.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Server/ServiceContext.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/ServiceContext.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Server/ServiceContext.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/ServiceSettings.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Server/ServiceSettings.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Server/ServiceSettings.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Server/ServiceSettings.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Client.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Client.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Client.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Client.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Common.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Common.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Common.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Common.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Connection.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Connection.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Connection.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Connection.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/ConnectionManager.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/ConnectionManager.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/ConnectionManager.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/ConnectionManager.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Packet.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Packet.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Packet.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Packet.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/RemoteSearchQuery.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/RemoteSearchQuery.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/RemoteSearchQuery.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/RemoteSearchQuery.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/ResourceManager.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/ResourceManager.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/ResourceManager.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/ResourceManager.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Server.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Server.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/Server.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/Server.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/SimpleSerialization.h b/core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/SimpleSerialization.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/inc/Socket/SimpleSerialization.h rename to core/src/index/thirdparty/SPTAG/AnnService/inc/Socket/SimpleSerialization.h diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/packages.config b/core/src/index/thirdparty/SPTAG/AnnService/packages.config similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/packages.config rename to core/src/index/thirdparty/SPTAG/AnnService/packages.config diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorContext.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorContext.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorContext.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorContext.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorExecutionContext.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorExecutionContext.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorExecutionContext.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorExecutionContext.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorService.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorService.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorService.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorService.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorSettings.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorSettings.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorSettings.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/AggregatorSettings.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/main.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/main.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Aggregator/main.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Aggregator/main.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Client/ClientWrapper.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Client/ClientWrapper.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Client/ClientWrapper.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Client/ClientWrapper.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Client/Options.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Client/Options.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Client/Options.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Client/Options.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Client/main.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Client/main.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Client/main.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Client/main.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/BKT/BKTIndex.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Core/BKT/BKTIndex.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/BKT/BKTIndex.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Core/BKT/BKTIndex.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/Common/NeighborhoodGraph.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Core/Common/NeighborhoodGraph.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/Common/NeighborhoodGraph.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Core/Common/NeighborhoodGraph.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/Common/WorkSpacePool.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Core/Common/WorkSpacePool.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/Common/WorkSpacePool.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Core/Common/WorkSpacePool.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/CommonDataStructure.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Core/CommonDataStructure.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/CommonDataStructure.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Core/CommonDataStructure.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/KDT/KDTIndex.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Core/KDT/KDTIndex.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/KDT/KDTIndex.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Core/KDT/KDTIndex.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/MetadataSet.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Core/MetadataSet.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/MetadataSet.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Core/MetadataSet.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/VectorIndex.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Core/VectorIndex.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/VectorIndex.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Core/VectorIndex.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/VectorSet.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Core/VectorSet.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Core/VectorSet.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Core/VectorSet.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/ArgumentsParser.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Helper/ArgumentsParser.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/ArgumentsParser.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Helper/ArgumentsParser.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/Base64Encode.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Helper/Base64Encode.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/Base64Encode.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Helper/Base64Encode.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/CommonHelper.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Helper/CommonHelper.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/CommonHelper.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Helper/CommonHelper.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/Concurrent.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Helper/Concurrent.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/Concurrent.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Helper/Concurrent.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/SimpleIniReader.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Helper/SimpleIniReader.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Helper/SimpleIniReader.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Helper/SimpleIniReader.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/Options.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/Options.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/Options.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/Options.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/ThreadPool.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/ThreadPool.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/ThreadPool.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/ThreadPool.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/VectorSetReader.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/VectorSetReader.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/VectorSetReader.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/VectorSetReader.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/VectorSetReaders/DefaultReader.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/VectorSetReaders/DefaultReader.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/VectorSetReaders/DefaultReader.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/VectorSetReaders/DefaultReader.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/main.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/main.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexBuilder/main.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/IndexBuilder/main.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexSearcher/main.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/IndexSearcher/main.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/IndexSearcher/main.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/IndexSearcher/main.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/QueryParser.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Server/QueryParser.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/QueryParser.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Server/QueryParser.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/SearchExecutionContext.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Server/SearchExecutionContext.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/SearchExecutionContext.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Server/SearchExecutionContext.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/SearchExecutor.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Server/SearchExecutor.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/SearchExecutor.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Server/SearchExecutor.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/SearchService.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Server/SearchService.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/SearchService.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Server/SearchService.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/ServiceContext.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Server/ServiceContext.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/ServiceContext.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Server/ServiceContext.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/ServiceSettings.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Server/ServiceSettings.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/ServiceSettings.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Server/ServiceSettings.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/main.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Server/main.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Server/main.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Server/main.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Client.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Client.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Client.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Client.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Common.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Common.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Common.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Common.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Connection.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Connection.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Connection.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Connection.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/ConnectionManager.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Socket/ConnectionManager.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/ConnectionManager.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Socket/ConnectionManager.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Packet.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Packet.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Packet.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Packet.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/RemoteSearchQuery.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Socket/RemoteSearchQuery.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/RemoteSearchQuery.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Socket/RemoteSearchQuery.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Server.cpp b/core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Server.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/AnnService/src/Socket/Server.cpp rename to core/src/index/thirdparty/SPTAG/AnnService/src/Socket/Server.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/CMakeLists.txt b/core/src/index/thirdparty/SPTAG/CMakeLists.txt similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/CMakeLists.txt rename to core/src/index/thirdparty/SPTAG/CMakeLists.txt diff --git a/cpp/src/core/thirdparty/SPTAG/Dockerfile b/core/src/index/thirdparty/SPTAG/Dockerfile similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Dockerfile rename to core/src/index/thirdparty/SPTAG/Dockerfile diff --git a/cpp/src/core/thirdparty/SPTAG/LICENSE b/core/src/index/thirdparty/SPTAG/LICENSE similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/LICENSE rename to core/src/index/thirdparty/SPTAG/LICENSE diff --git a/cpp/src/core/thirdparty/SPTAG/README.md b/core/src/index/thirdparty/SPTAG/README.md similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/README.md rename to core/src/index/thirdparty/SPTAG/README.md diff --git a/cpp/src/core/thirdparty/SPTAG/SPTAG.sdf b/core/src/index/thirdparty/SPTAG/SPTAG.sdf similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/SPTAG.sdf rename to core/src/index/thirdparty/SPTAG/SPTAG.sdf diff --git a/cpp/src/core/thirdparty/SPTAG/SPTAG.sln b/core/src/index/thirdparty/SPTAG/SPTAG.sln similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/SPTAG.sln rename to core/src/index/thirdparty/SPTAG/SPTAG.sln diff --git a/cpp/src/core/thirdparty/SPTAG/Test/CMakeLists.txt b/core/src/index/thirdparty/SPTAG/Test/CMakeLists.txt similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/CMakeLists.txt rename to core/src/index/thirdparty/SPTAG/Test/CMakeLists.txt diff --git a/cpp/src/core/thirdparty/SPTAG/Test/Test.vcxproj b/core/src/index/thirdparty/SPTAG/Test/Test.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/Test.vcxproj rename to core/src/index/thirdparty/SPTAG/Test/Test.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/Test/Test.vcxproj.filters b/core/src/index/thirdparty/SPTAG/Test/Test.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/Test.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/Test/Test.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/Test/Test.vcxproj.user b/core/src/index/thirdparty/SPTAG/Test/Test.vcxproj.user similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/Test.vcxproj.user rename to core/src/index/thirdparty/SPTAG/Test/Test.vcxproj.user diff --git a/cpp/src/core/thirdparty/SPTAG/Test/inc/Test.h b/core/src/index/thirdparty/SPTAG/Test/inc/Test.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/inc/Test.h rename to core/src/index/thirdparty/SPTAG/Test/inc/Test.h diff --git a/cpp/src/core/thirdparty/SPTAG/Test/packages.config b/core/src/index/thirdparty/SPTAG/Test/packages.config similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/packages.config rename to core/src/index/thirdparty/SPTAG/Test/packages.config diff --git a/cpp/src/core/thirdparty/SPTAG/Test/src/AlgoTest.cpp b/core/src/index/thirdparty/SPTAG/Test/src/AlgoTest.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/src/AlgoTest.cpp rename to core/src/index/thirdparty/SPTAG/Test/src/AlgoTest.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/Test/src/Base64HelperTest.cpp b/core/src/index/thirdparty/SPTAG/Test/src/Base64HelperTest.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/src/Base64HelperTest.cpp rename to core/src/index/thirdparty/SPTAG/Test/src/Base64HelperTest.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/Test/src/CommonHelperTest.cpp b/core/src/index/thirdparty/SPTAG/Test/src/CommonHelperTest.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/src/CommonHelperTest.cpp rename to core/src/index/thirdparty/SPTAG/Test/src/CommonHelperTest.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/Test/src/DistanceTest.cpp b/core/src/index/thirdparty/SPTAG/Test/src/DistanceTest.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/src/DistanceTest.cpp rename to core/src/index/thirdparty/SPTAG/Test/src/DistanceTest.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/Test/src/IniReaderTest.cpp b/core/src/index/thirdparty/SPTAG/Test/src/IniReaderTest.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/src/IniReaderTest.cpp rename to core/src/index/thirdparty/SPTAG/Test/src/IniReaderTest.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/Test/src/Serialize.cpp b/core/src/index/thirdparty/SPTAG/Test/src/Serialize.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/src/Serialize.cpp rename to core/src/index/thirdparty/SPTAG/Test/src/Serialize.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/Test/src/StringConvertTest.cpp b/core/src/index/thirdparty/SPTAG/Test/src/StringConvertTest.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/src/StringConvertTest.cpp rename to core/src/index/thirdparty/SPTAG/Test/src/StringConvertTest.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/Test/src/main.cpp b/core/src/index/thirdparty/SPTAG/Test/src/main.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Test/src/main.cpp rename to core/src/index/thirdparty/SPTAG/Test/src/main.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/CMakeLists.txt b/core/src/index/thirdparty/SPTAG/Wrappers/CMakeLists.txt similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/CMakeLists.txt rename to core/src/index/thirdparty/SPTAG/Wrappers/CMakeLists.txt diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/JavaClient.vcxproj b/core/src/index/thirdparty/SPTAG/Wrappers/JavaClient.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/JavaClient.vcxproj rename to core/src/index/thirdparty/SPTAG/Wrappers/JavaClient.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/JavaClient.vcxproj.filters b/core/src/index/thirdparty/SPTAG/Wrappers/JavaClient.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/JavaClient.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/Wrappers/JavaClient.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/JavaCore.vcxproj b/core/src/index/thirdparty/SPTAG/Wrappers/JavaCore.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/JavaCore.vcxproj rename to core/src/index/thirdparty/SPTAG/Wrappers/JavaCore.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/JavaCore.vcxproj.filters b/core/src/index/thirdparty/SPTAG/Wrappers/JavaCore.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/JavaCore.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/Wrappers/JavaCore.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/PythonClient.vcxproj b/core/src/index/thirdparty/SPTAG/Wrappers/PythonClient.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/PythonClient.vcxproj rename to core/src/index/thirdparty/SPTAG/Wrappers/PythonClient.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/PythonClient.vcxproj.filters b/core/src/index/thirdparty/SPTAG/Wrappers/PythonClient.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/PythonClient.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/Wrappers/PythonClient.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj b/core/src/index/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj rename to core/src/index/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj.filters b/core/src/index/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj.filters similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj.filters rename to core/src/index/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj.filters diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj.user b/core/src/index/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj.user similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj.user rename to core/src/index/thirdparty/SPTAG/Wrappers/PythonCore.vcxproj.user diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/inc/ClientInterface.h b/core/src/index/thirdparty/SPTAG/Wrappers/inc/ClientInterface.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/inc/ClientInterface.h rename to core/src/index/thirdparty/SPTAG/Wrappers/inc/ClientInterface.h diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/inc/CoreInterface.h b/core/src/index/thirdparty/SPTAG/Wrappers/inc/CoreInterface.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/inc/CoreInterface.h rename to core/src/index/thirdparty/SPTAG/Wrappers/inc/CoreInterface.h diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/inc/JavaClient.i b/core/src/index/thirdparty/SPTAG/Wrappers/inc/JavaClient.i similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/inc/JavaClient.i rename to core/src/index/thirdparty/SPTAG/Wrappers/inc/JavaClient.i diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/inc/JavaCommon.i b/core/src/index/thirdparty/SPTAG/Wrappers/inc/JavaCommon.i similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/inc/JavaCommon.i rename to core/src/index/thirdparty/SPTAG/Wrappers/inc/JavaCommon.i diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/inc/JavaCore.i b/core/src/index/thirdparty/SPTAG/Wrappers/inc/JavaCore.i similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/inc/JavaCore.i rename to core/src/index/thirdparty/SPTAG/Wrappers/inc/JavaCore.i diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/inc/PythonClient.i b/core/src/index/thirdparty/SPTAG/Wrappers/inc/PythonClient.i similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/inc/PythonClient.i rename to core/src/index/thirdparty/SPTAG/Wrappers/inc/PythonClient.i diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/inc/PythonCommon.i b/core/src/index/thirdparty/SPTAG/Wrappers/inc/PythonCommon.i similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/inc/PythonCommon.i rename to core/src/index/thirdparty/SPTAG/Wrappers/inc/PythonCommon.i diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/inc/PythonCore.i b/core/src/index/thirdparty/SPTAG/Wrappers/inc/PythonCore.i similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/inc/PythonCore.i rename to core/src/index/thirdparty/SPTAG/Wrappers/inc/PythonCore.i diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/inc/TransferDataType.h b/core/src/index/thirdparty/SPTAG/Wrappers/inc/TransferDataType.h similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/inc/TransferDataType.h rename to core/src/index/thirdparty/SPTAG/Wrappers/inc/TransferDataType.h diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/packages.config b/core/src/index/thirdparty/SPTAG/Wrappers/packages.config similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/packages.config rename to core/src/index/thirdparty/SPTAG/Wrappers/packages.config diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/src/ClientInterface.cpp b/core/src/index/thirdparty/SPTAG/Wrappers/src/ClientInterface.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/src/ClientInterface.cpp rename to core/src/index/thirdparty/SPTAG/Wrappers/src/ClientInterface.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/Wrappers/src/CoreInterface.cpp b/core/src/index/thirdparty/SPTAG/Wrappers/src/CoreInterface.cpp similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/Wrappers/src/CoreInterface.cpp rename to core/src/index/thirdparty/SPTAG/Wrappers/src/CoreInterface.cpp diff --git a/cpp/src/core/thirdparty/SPTAG/azure-pipelines.yml b/core/src/index/thirdparty/SPTAG/azure-pipelines.yml similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/azure-pipelines.yml rename to core/src/index/thirdparty/SPTAG/azure-pipelines.yml diff --git a/cpp/src/core/thirdparty/SPTAG/build.sh b/core/src/index/thirdparty/SPTAG/build.sh similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/build.sh rename to core/src/index/thirdparty/SPTAG/build.sh diff --git a/cpp/src/core/thirdparty/SPTAG/docs/GettingStart.md b/core/src/index/thirdparty/SPTAG/docs/GettingStart.md similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/docs/GettingStart.md rename to core/src/index/thirdparty/SPTAG/docs/GettingStart.md diff --git a/cpp/src/core/thirdparty/SPTAG/docs/img/sptag.png b/core/src/index/thirdparty/SPTAG/docs/img/sptag.png similarity index 100% rename from cpp/src/core/thirdparty/SPTAG/docs/img/sptag.png rename to core/src/index/thirdparty/SPTAG/docs/img/sptag.png diff --git a/cpp/src/core/thirdparty/build.sh b/core/src/index/thirdparty/build.sh similarity index 100% rename from cpp/src/core/thirdparty/build.sh rename to core/src/index/thirdparty/build.sh diff --git a/cpp/src/core/thirdparty/faiss_cache_check_lists.txt b/core/src/index/thirdparty/faiss_cache_check_lists.txt similarity index 100% rename from cpp/src/core/thirdparty/faiss_cache_check_lists.txt rename to core/src/index/thirdparty/faiss_cache_check_lists.txt diff --git a/cpp/src/core/thirdparty/versions.txt b/core/src/index/thirdparty/versions.txt similarity index 100% rename from cpp/src/core/thirdparty/versions.txt rename to core/src/index/thirdparty/versions.txt diff --git a/cpp/src/core/unittest/CMakeLists.txt b/core/src/index/unittest/CMakeLists.txt similarity index 100% rename from cpp/src/core/unittest/CMakeLists.txt rename to core/src/index/unittest/CMakeLists.txt diff --git a/cpp/src/core/unittest/SPTAG.cpp b/core/src/index/unittest/SPTAG.cpp similarity index 100% rename from cpp/src/core/unittest/SPTAG.cpp rename to core/src/index/unittest/SPTAG.cpp diff --git a/cpp/src/core/unittest/faiss_ori/CMakeLists.txt b/core/src/index/unittest/faiss_ori/CMakeLists.txt similarity index 100% rename from cpp/src/core/unittest/faiss_ori/CMakeLists.txt rename to core/src/index/unittest/faiss_ori/CMakeLists.txt diff --git a/cpp/src/core/unittest/faiss_ori/gpuresource_test.cpp b/core/src/index/unittest/faiss_ori/gpuresource_test.cpp similarity index 100% rename from cpp/src/core/unittest/faiss_ori/gpuresource_test.cpp rename to core/src/index/unittest/faiss_ori/gpuresource_test.cpp diff --git a/cpp/src/core/unittest/kdtree.cpp b/core/src/index/unittest/kdtree.cpp similarity index 100% rename from cpp/src/core/unittest/kdtree.cpp rename to core/src/index/unittest/kdtree.cpp diff --git a/cpp/src/core/unittest/sift.50NN.graph b/core/src/index/unittest/sift.50NN.graph similarity index 100% rename from cpp/src/core/unittest/sift.50NN.graph rename to core/src/index/unittest/sift.50NN.graph diff --git a/cpp/src/core/unittest/siftsmall_base.fvecs b/core/src/index/unittest/siftsmall_base.fvecs similarity index 100% rename from cpp/src/core/unittest/siftsmall_base.fvecs rename to core/src/index/unittest/siftsmall_base.fvecs diff --git a/cpp/src/core/unittest/test_idmap.cpp b/core/src/index/unittest/test_idmap.cpp similarity index 100% rename from cpp/src/core/unittest/test_idmap.cpp rename to core/src/index/unittest/test_idmap.cpp diff --git a/cpp/src/core/unittest/test_ivf.cpp b/core/src/index/unittest/test_ivf.cpp similarity index 100% rename from cpp/src/core/unittest/test_ivf.cpp rename to core/src/index/unittest/test_ivf.cpp diff --git a/cpp/src/core/unittest/test_kdt.cpp b/core/src/index/unittest/test_kdt.cpp similarity index 100% rename from cpp/src/core/unittest/test_kdt.cpp rename to core/src/index/unittest/test_kdt.cpp diff --git a/cpp/src/core/unittest/test_nsg/CMakeLists.txt b/core/src/index/unittest/test_nsg/CMakeLists.txt similarity index 100% rename from cpp/src/core/unittest/test_nsg/CMakeLists.txt rename to core/src/index/unittest/test_nsg/CMakeLists.txt diff --git a/cpp/src/core/unittest/test_nsg/test_nsg.cpp b/core/src/index/unittest/test_nsg/test_nsg.cpp similarity index 100% rename from cpp/src/core/unittest/test_nsg/test_nsg.cpp rename to core/src/index/unittest/test_nsg/test_nsg.cpp diff --git a/cpp/src/core/unittest/utils.cpp b/core/src/index/unittest/utils.cpp similarity index 100% rename from cpp/src/core/unittest/utils.cpp rename to core/src/index/unittest/utils.cpp diff --git a/cpp/src/core/unittest/utils.h b/core/src/index/unittest/utils.h similarity index 100% rename from cpp/src/core/unittest/utils.h rename to core/src/index/unittest/utils.h diff --git a/cpp/src/main.cpp b/core/src/main.cpp similarity index 100% rename from cpp/src/main.cpp rename to core/src/main.cpp diff --git a/cpp/src/metrics/MetricBase.h b/core/src/metrics/MetricBase.h similarity index 100% rename from cpp/src/metrics/MetricBase.h rename to core/src/metrics/MetricBase.h diff --git a/cpp/src/metrics/Metrics.cpp b/core/src/metrics/Metrics.cpp similarity index 100% rename from cpp/src/metrics/Metrics.cpp rename to core/src/metrics/Metrics.cpp diff --git a/cpp/src/metrics/Metrics.h b/core/src/metrics/Metrics.h similarity index 100% rename from cpp/src/metrics/Metrics.h rename to core/src/metrics/Metrics.h diff --git a/cpp/src/metrics/PrometheusMetrics.cpp b/core/src/metrics/PrometheusMetrics.cpp similarity index 100% rename from cpp/src/metrics/PrometheusMetrics.cpp rename to core/src/metrics/PrometheusMetrics.cpp diff --git a/cpp/src/metrics/PrometheusMetrics.h b/core/src/metrics/PrometheusMetrics.h similarity index 100% rename from cpp/src/metrics/PrometheusMetrics.h rename to core/src/metrics/PrometheusMetrics.h diff --git a/cpp/src/metrics/SystemInfo.cpp b/core/src/metrics/SystemInfo.cpp similarity index 100% rename from cpp/src/metrics/SystemInfo.cpp rename to core/src/metrics/SystemInfo.cpp diff --git a/cpp/src/metrics/SystemInfo.h b/core/src/metrics/SystemInfo.h similarity index 100% rename from cpp/src/metrics/SystemInfo.h rename to core/src/metrics/SystemInfo.h diff --git a/cpp/src/scheduler/Algorithm.cpp b/core/src/scheduler/Algorithm.cpp similarity index 100% rename from cpp/src/scheduler/Algorithm.cpp rename to core/src/scheduler/Algorithm.cpp diff --git a/cpp/src/scheduler/Algorithm.h b/core/src/scheduler/Algorithm.h similarity index 100% rename from cpp/src/scheduler/Algorithm.h rename to core/src/scheduler/Algorithm.h diff --git a/core/src/scheduler/BuildMgr.cpp b/core/src/scheduler/BuildMgr.cpp new file mode 100644 index 0000000000..d90a074d30 --- /dev/null +++ b/core/src/scheduler/BuildMgr.cpp @@ -0,0 +1,22 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +#include "scheduler/BuildMgr.h" + +namespace milvus { +namespace scheduler {} // namespace scheduler +} // namespace milvus diff --git a/core/src/scheduler/BuildMgr.h b/core/src/scheduler/BuildMgr.h new file mode 100644 index 0000000000..ee7ab38e25 --- /dev/null +++ b/core/src/scheduler/BuildMgr.h @@ -0,0 +1,63 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace milvus { +namespace scheduler { + +class BuildMgr { + public: + explicit BuildMgr(int64_t numoftasks) : numoftasks_(numoftasks) { + } + + public: + void + Put() { + ++numoftasks_; + } + + void + take() { + --numoftasks_; + } + + int64_t + numoftasks() { + return (int64_t)numoftasks_; + } + + private: + std::atomic_long numoftasks_; +}; + +using BuildMgrPtr = std::shared_ptr; + +} // namespace scheduler +} // namespace milvus diff --git a/cpp/src/scheduler/Definition.h b/core/src/scheduler/Definition.h similarity index 100% rename from cpp/src/scheduler/Definition.h rename to core/src/scheduler/Definition.h diff --git a/cpp/src/scheduler/JobMgr.cpp b/core/src/scheduler/JobMgr.cpp similarity index 100% rename from cpp/src/scheduler/JobMgr.cpp rename to core/src/scheduler/JobMgr.cpp diff --git a/cpp/src/scheduler/JobMgr.h b/core/src/scheduler/JobMgr.h similarity index 100% rename from cpp/src/scheduler/JobMgr.h rename to core/src/scheduler/JobMgr.h diff --git a/cpp/src/scheduler/ResourceFactory.cpp b/core/src/scheduler/ResourceFactory.cpp similarity index 100% rename from cpp/src/scheduler/ResourceFactory.cpp rename to core/src/scheduler/ResourceFactory.cpp diff --git a/cpp/src/scheduler/ResourceFactory.h b/core/src/scheduler/ResourceFactory.h similarity index 100% rename from cpp/src/scheduler/ResourceFactory.h rename to core/src/scheduler/ResourceFactory.h diff --git a/cpp/src/scheduler/ResourceMgr.cpp b/core/src/scheduler/ResourceMgr.cpp similarity index 100% rename from cpp/src/scheduler/ResourceMgr.cpp rename to core/src/scheduler/ResourceMgr.cpp diff --git a/cpp/src/scheduler/ResourceMgr.h b/core/src/scheduler/ResourceMgr.h similarity index 100% rename from cpp/src/scheduler/ResourceMgr.h rename to core/src/scheduler/ResourceMgr.h diff --git a/cpp/src/scheduler/SchedInst.cpp b/core/src/scheduler/SchedInst.cpp similarity index 100% rename from cpp/src/scheduler/SchedInst.cpp rename to core/src/scheduler/SchedInst.cpp diff --git a/cpp/src/scheduler/SchedInst.h b/core/src/scheduler/SchedInst.h similarity index 100% rename from cpp/src/scheduler/SchedInst.h rename to core/src/scheduler/SchedInst.h diff --git a/cpp/src/scheduler/Scheduler.cpp b/core/src/scheduler/Scheduler.cpp similarity index 100% rename from cpp/src/scheduler/Scheduler.cpp rename to core/src/scheduler/Scheduler.cpp diff --git a/cpp/src/scheduler/Scheduler.h b/core/src/scheduler/Scheduler.h similarity index 100% rename from cpp/src/scheduler/Scheduler.h rename to core/src/scheduler/Scheduler.h diff --git a/cpp/src/scheduler/TaskCreator.cpp b/core/src/scheduler/TaskCreator.cpp similarity index 100% rename from cpp/src/scheduler/TaskCreator.cpp rename to core/src/scheduler/TaskCreator.cpp diff --git a/cpp/src/scheduler/TaskCreator.h b/core/src/scheduler/TaskCreator.h similarity index 100% rename from cpp/src/scheduler/TaskCreator.h rename to core/src/scheduler/TaskCreator.h diff --git a/cpp/src/scheduler/TaskTable.cpp b/core/src/scheduler/TaskTable.cpp similarity index 100% rename from cpp/src/scheduler/TaskTable.cpp rename to core/src/scheduler/TaskTable.cpp diff --git a/cpp/src/scheduler/TaskTable.h b/core/src/scheduler/TaskTable.h similarity index 100% rename from cpp/src/scheduler/TaskTable.h rename to core/src/scheduler/TaskTable.h diff --git a/cpp/src/scheduler/Utils.cpp b/core/src/scheduler/Utils.cpp similarity index 100% rename from cpp/src/scheduler/Utils.cpp rename to core/src/scheduler/Utils.cpp diff --git a/cpp/src/scheduler/Utils.h b/core/src/scheduler/Utils.h similarity index 100% rename from cpp/src/scheduler/Utils.h rename to core/src/scheduler/Utils.h diff --git a/cpp/src/scheduler/action/Action.h b/core/src/scheduler/action/Action.h similarity index 100% rename from cpp/src/scheduler/action/Action.h rename to core/src/scheduler/action/Action.h diff --git a/cpp/src/scheduler/action/PushTaskToNeighbour.cpp b/core/src/scheduler/action/PushTaskToNeighbour.cpp similarity index 100% rename from cpp/src/scheduler/action/PushTaskToNeighbour.cpp rename to core/src/scheduler/action/PushTaskToNeighbour.cpp diff --git a/cpp/src/scheduler/event/Event.h b/core/src/scheduler/event/Event.h similarity index 100% rename from cpp/src/scheduler/event/Event.h rename to core/src/scheduler/event/Event.h diff --git a/cpp/src/scheduler/event/EventDump.cpp b/core/src/scheduler/event/EventDump.cpp similarity index 100% rename from cpp/src/scheduler/event/EventDump.cpp rename to core/src/scheduler/event/EventDump.cpp diff --git a/cpp/src/scheduler/event/FinishTaskEvent.h b/core/src/scheduler/event/FinishTaskEvent.h similarity index 100% rename from cpp/src/scheduler/event/FinishTaskEvent.h rename to core/src/scheduler/event/FinishTaskEvent.h diff --git a/cpp/src/scheduler/event/LoadCompletedEvent.h b/core/src/scheduler/event/LoadCompletedEvent.h similarity index 100% rename from cpp/src/scheduler/event/LoadCompletedEvent.h rename to core/src/scheduler/event/LoadCompletedEvent.h diff --git a/cpp/src/scheduler/event/StartUpEvent.h b/core/src/scheduler/event/StartUpEvent.h similarity index 100% rename from cpp/src/scheduler/event/StartUpEvent.h rename to core/src/scheduler/event/StartUpEvent.h diff --git a/cpp/src/scheduler/event/TaskTableUpdatedEvent.h b/core/src/scheduler/event/TaskTableUpdatedEvent.h similarity index 100% rename from cpp/src/scheduler/event/TaskTableUpdatedEvent.h rename to core/src/scheduler/event/TaskTableUpdatedEvent.h diff --git a/cpp/src/scheduler/job/BuildIndexJob.cpp b/core/src/scheduler/job/BuildIndexJob.cpp similarity index 100% rename from cpp/src/scheduler/job/BuildIndexJob.cpp rename to core/src/scheduler/job/BuildIndexJob.cpp diff --git a/cpp/src/scheduler/job/BuildIndexJob.h b/core/src/scheduler/job/BuildIndexJob.h similarity index 100% rename from cpp/src/scheduler/job/BuildIndexJob.h rename to core/src/scheduler/job/BuildIndexJob.h diff --git a/cpp/src/scheduler/job/DeleteJob.cpp b/core/src/scheduler/job/DeleteJob.cpp similarity index 100% rename from cpp/src/scheduler/job/DeleteJob.cpp rename to core/src/scheduler/job/DeleteJob.cpp diff --git a/cpp/src/scheduler/job/DeleteJob.h b/core/src/scheduler/job/DeleteJob.h similarity index 100% rename from cpp/src/scheduler/job/DeleteJob.h rename to core/src/scheduler/job/DeleteJob.h diff --git a/cpp/src/scheduler/job/Job.h b/core/src/scheduler/job/Job.h similarity index 100% rename from cpp/src/scheduler/job/Job.h rename to core/src/scheduler/job/Job.h diff --git a/cpp/src/scheduler/job/SearchJob.cpp b/core/src/scheduler/job/SearchJob.cpp similarity index 100% rename from cpp/src/scheduler/job/SearchJob.cpp rename to core/src/scheduler/job/SearchJob.cpp diff --git a/cpp/src/scheduler/job/SearchJob.h b/core/src/scheduler/job/SearchJob.h similarity index 100% rename from cpp/src/scheduler/job/SearchJob.h rename to core/src/scheduler/job/SearchJob.h diff --git a/cpp/src/scheduler/optimizer/HybridPass.cpp b/core/src/scheduler/optimizer/HybridPass.cpp similarity index 100% rename from cpp/src/scheduler/optimizer/HybridPass.cpp rename to core/src/scheduler/optimizer/HybridPass.cpp diff --git a/cpp/src/scheduler/optimizer/HybridPass.h b/core/src/scheduler/optimizer/HybridPass.h similarity index 100% rename from cpp/src/scheduler/optimizer/HybridPass.h rename to core/src/scheduler/optimizer/HybridPass.h diff --git a/core/src/scheduler/optimizer/LargeSQ8HPass.cpp b/core/src/scheduler/optimizer/LargeSQ8HPass.cpp new file mode 100644 index 0000000000..62d0e57902 --- /dev/null +++ b/core/src/scheduler/optimizer/LargeSQ8HPass.cpp @@ -0,0 +1,73 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +#include "scheduler/optimizer/LargeSQ8HPass.h" +#include "cache/GpuCacheMgr.h" +#include "scheduler/SchedInst.h" +#include "scheduler/Utils.h" +#include "scheduler/task/SearchTask.h" +#include "scheduler/tasklabel/SpecResLabel.h" +#include "utils/Log.h" + +namespace milvus { +namespace scheduler { + +bool +LargeSQ8HPass::Run(const TaskPtr& task) { + if (task->Type() != TaskType::SearchTask) { + return false; + } + + auto search_task = std::static_pointer_cast(task); + if (search_task->file_->engine_type_ != (int)engine::EngineType::FAISS_IVFSQ8H) { + return false; + } + + auto search_job = std::static_pointer_cast(search_task->job_.lock()); + + // TODO: future, Index::IVFSQ8H, if nq < threshold set cpu, else set gpu + if (search_job->nq() < 100) { + return false; + } + + std::vector gpus = scheduler::get_gpu_pool(); + std::vector all_free_mem; + for (auto& gpu : gpus) { + auto cache = cache::GpuCacheMgr::GetInstance(gpu); + auto free_mem = cache->CacheCapacity() - cache->CacheUsage(); + all_free_mem.push_back(free_mem); + } + + auto max_e = std::max_element(all_free_mem.begin(), all_free_mem.end()); + auto best_index = std::distance(all_free_mem.begin(), max_e); + auto best_device_id = gpus[best_index]; + + ResourcePtr res_ptr = ResMgrInst::GetInstance()->GetResource(ResourceType::GPU, best_device_id); + if (not res_ptr) { + SERVER_LOG_ERROR << "GpuResource " << best_device_id << " invalid."; + // TODO: throw critical error and exit + return false; + } + + auto label = std::make_shared(std::weak_ptr(res_ptr)); + task->label() = label; + + return true; +} + +} // namespace scheduler +} // namespace milvus diff --git a/core/src/scheduler/optimizer/LargeSQ8HPass.h b/core/src/scheduler/optimizer/LargeSQ8HPass.h new file mode 100644 index 0000000000..49e658002f --- /dev/null +++ b/core/src/scheduler/optimizer/LargeSQ8HPass.h @@ -0,0 +1,47 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "Pass.h" + +namespace milvus { +namespace scheduler { + +class LargeSQ8HPass : public Pass { + public: + LargeSQ8HPass() = default; + + public: + bool + Run(const TaskPtr& task) override; +}; + +using LargeSQ8HPassPtr = std::shared_ptr; + +} // namespace scheduler +} // namespace milvus diff --git a/cpp/src/scheduler/optimizer/Optimizer.cpp b/core/src/scheduler/optimizer/Optimizer.cpp similarity index 100% rename from cpp/src/scheduler/optimizer/Optimizer.cpp rename to core/src/scheduler/optimizer/Optimizer.cpp diff --git a/cpp/src/scheduler/optimizer/Optimizer.h b/core/src/scheduler/optimizer/Optimizer.h similarity index 100% rename from cpp/src/scheduler/optimizer/Optimizer.h rename to core/src/scheduler/optimizer/Optimizer.h diff --git a/cpp/src/scheduler/optimizer/Pass.h b/core/src/scheduler/optimizer/Pass.h similarity index 100% rename from cpp/src/scheduler/optimizer/Pass.h rename to core/src/scheduler/optimizer/Pass.h diff --git a/cpp/src/scheduler/resource/Connection.h b/core/src/scheduler/resource/Connection.h similarity index 100% rename from cpp/src/scheduler/resource/Connection.h rename to core/src/scheduler/resource/Connection.h diff --git a/cpp/src/scheduler/resource/CpuResource.cpp b/core/src/scheduler/resource/CpuResource.cpp similarity index 100% rename from cpp/src/scheduler/resource/CpuResource.cpp rename to core/src/scheduler/resource/CpuResource.cpp diff --git a/cpp/src/scheduler/resource/CpuResource.h b/core/src/scheduler/resource/CpuResource.h similarity index 100% rename from cpp/src/scheduler/resource/CpuResource.h rename to core/src/scheduler/resource/CpuResource.h diff --git a/cpp/src/scheduler/resource/DiskResource.cpp b/core/src/scheduler/resource/DiskResource.cpp similarity index 100% rename from cpp/src/scheduler/resource/DiskResource.cpp rename to core/src/scheduler/resource/DiskResource.cpp diff --git a/cpp/src/scheduler/resource/DiskResource.h b/core/src/scheduler/resource/DiskResource.h similarity index 100% rename from cpp/src/scheduler/resource/DiskResource.h rename to core/src/scheduler/resource/DiskResource.h diff --git a/cpp/src/scheduler/resource/GpuResource.cpp b/core/src/scheduler/resource/GpuResource.cpp similarity index 100% rename from cpp/src/scheduler/resource/GpuResource.cpp rename to core/src/scheduler/resource/GpuResource.cpp diff --git a/cpp/src/scheduler/resource/GpuResource.h b/core/src/scheduler/resource/GpuResource.h similarity index 100% rename from cpp/src/scheduler/resource/GpuResource.h rename to core/src/scheduler/resource/GpuResource.h diff --git a/cpp/src/scheduler/resource/Node.cpp b/core/src/scheduler/resource/Node.cpp similarity index 100% rename from cpp/src/scheduler/resource/Node.cpp rename to core/src/scheduler/resource/Node.cpp diff --git a/cpp/src/scheduler/resource/Node.h b/core/src/scheduler/resource/Node.h similarity index 100% rename from cpp/src/scheduler/resource/Node.h rename to core/src/scheduler/resource/Node.h diff --git a/cpp/src/scheduler/resource/Resource.cpp b/core/src/scheduler/resource/Resource.cpp similarity index 100% rename from cpp/src/scheduler/resource/Resource.cpp rename to core/src/scheduler/resource/Resource.cpp diff --git a/cpp/src/scheduler/resource/Resource.h b/core/src/scheduler/resource/Resource.h similarity index 100% rename from cpp/src/scheduler/resource/Resource.h rename to core/src/scheduler/resource/Resource.h diff --git a/cpp/src/scheduler/resource/TestResource.cpp b/core/src/scheduler/resource/TestResource.cpp similarity index 100% rename from cpp/src/scheduler/resource/TestResource.cpp rename to core/src/scheduler/resource/TestResource.cpp diff --git a/cpp/src/scheduler/resource/TestResource.h b/core/src/scheduler/resource/TestResource.h similarity index 100% rename from cpp/src/scheduler/resource/TestResource.h rename to core/src/scheduler/resource/TestResource.h diff --git a/cpp/src/scheduler/task/BuildIndexTask.cpp b/core/src/scheduler/task/BuildIndexTask.cpp similarity index 100% rename from cpp/src/scheduler/task/BuildIndexTask.cpp rename to core/src/scheduler/task/BuildIndexTask.cpp diff --git a/cpp/src/scheduler/task/BuildIndexTask.h b/core/src/scheduler/task/BuildIndexTask.h similarity index 100% rename from cpp/src/scheduler/task/BuildIndexTask.h rename to core/src/scheduler/task/BuildIndexTask.h diff --git a/cpp/src/scheduler/task/DeleteTask.cpp b/core/src/scheduler/task/DeleteTask.cpp similarity index 100% rename from cpp/src/scheduler/task/DeleteTask.cpp rename to core/src/scheduler/task/DeleteTask.cpp diff --git a/cpp/src/scheduler/task/DeleteTask.h b/core/src/scheduler/task/DeleteTask.h similarity index 100% rename from cpp/src/scheduler/task/DeleteTask.h rename to core/src/scheduler/task/DeleteTask.h diff --git a/cpp/src/scheduler/task/Path.h b/core/src/scheduler/task/Path.h similarity index 100% rename from cpp/src/scheduler/task/Path.h rename to core/src/scheduler/task/Path.h diff --git a/cpp/src/scheduler/task/SearchTask.cpp b/core/src/scheduler/task/SearchTask.cpp similarity index 100% rename from cpp/src/scheduler/task/SearchTask.cpp rename to core/src/scheduler/task/SearchTask.cpp diff --git a/cpp/src/scheduler/task/SearchTask.h b/core/src/scheduler/task/SearchTask.h similarity index 100% rename from cpp/src/scheduler/task/SearchTask.h rename to core/src/scheduler/task/SearchTask.h diff --git a/cpp/src/scheduler/task/Task.h b/core/src/scheduler/task/Task.h similarity index 100% rename from cpp/src/scheduler/task/Task.h rename to core/src/scheduler/task/Task.h diff --git a/cpp/src/scheduler/task/TestTask.cpp b/core/src/scheduler/task/TestTask.cpp similarity index 100% rename from cpp/src/scheduler/task/TestTask.cpp rename to core/src/scheduler/task/TestTask.cpp diff --git a/cpp/src/scheduler/task/TestTask.h b/core/src/scheduler/task/TestTask.h similarity index 100% rename from cpp/src/scheduler/task/TestTask.h rename to core/src/scheduler/task/TestTask.h diff --git a/cpp/src/scheduler/tasklabel/BroadcastLabel.h b/core/src/scheduler/tasklabel/BroadcastLabel.h similarity index 100% rename from cpp/src/scheduler/tasklabel/BroadcastLabel.h rename to core/src/scheduler/tasklabel/BroadcastLabel.h diff --git a/cpp/src/scheduler/tasklabel/DefaultLabel.h b/core/src/scheduler/tasklabel/DefaultLabel.h similarity index 100% rename from cpp/src/scheduler/tasklabel/DefaultLabel.h rename to core/src/scheduler/tasklabel/DefaultLabel.h diff --git a/cpp/src/scheduler/tasklabel/SpecResLabel.h b/core/src/scheduler/tasklabel/SpecResLabel.h similarity index 100% rename from cpp/src/scheduler/tasklabel/SpecResLabel.h rename to core/src/scheduler/tasklabel/SpecResLabel.h diff --git a/cpp/src/scheduler/tasklabel/TaskLabel.h b/core/src/scheduler/tasklabel/TaskLabel.h similarity index 100% rename from cpp/src/scheduler/tasklabel/TaskLabel.h rename to core/src/scheduler/tasklabel/TaskLabel.h diff --git a/cpp/src/sdk/CMakeLists.txt b/core/src/sdk/CMakeLists.txt similarity index 100% rename from cpp/src/sdk/CMakeLists.txt rename to core/src/sdk/CMakeLists.txt diff --git a/cpp/src/sdk/examples/CMakeLists.txt b/core/src/sdk/examples/CMakeLists.txt similarity index 100% rename from cpp/src/sdk/examples/CMakeLists.txt rename to core/src/sdk/examples/CMakeLists.txt diff --git a/cpp/src/sdk/examples/grpcsimple/CMakeLists.txt b/core/src/sdk/examples/grpcsimple/CMakeLists.txt similarity index 100% rename from cpp/src/sdk/examples/grpcsimple/CMakeLists.txt rename to core/src/sdk/examples/grpcsimple/CMakeLists.txt diff --git a/cpp/src/sdk/examples/grpcsimple/main.cpp b/core/src/sdk/examples/grpcsimple/main.cpp similarity index 100% rename from cpp/src/sdk/examples/grpcsimple/main.cpp rename to core/src/sdk/examples/grpcsimple/main.cpp diff --git a/cpp/src/sdk/examples/grpcsimple/src/ClientTest.cpp b/core/src/sdk/examples/grpcsimple/src/ClientTest.cpp similarity index 100% rename from cpp/src/sdk/examples/grpcsimple/src/ClientTest.cpp rename to core/src/sdk/examples/grpcsimple/src/ClientTest.cpp diff --git a/cpp/src/sdk/examples/grpcsimple/src/ClientTest.h b/core/src/sdk/examples/grpcsimple/src/ClientTest.h similarity index 100% rename from cpp/src/sdk/examples/grpcsimple/src/ClientTest.h rename to core/src/sdk/examples/grpcsimple/src/ClientTest.h diff --git a/cpp/src/sdk/grpc/ClientProxy.cpp b/core/src/sdk/grpc/ClientProxy.cpp similarity index 100% rename from cpp/src/sdk/grpc/ClientProxy.cpp rename to core/src/sdk/grpc/ClientProxy.cpp diff --git a/cpp/src/sdk/grpc/ClientProxy.h b/core/src/sdk/grpc/ClientProxy.h similarity index 100% rename from cpp/src/sdk/grpc/ClientProxy.h rename to core/src/sdk/grpc/ClientProxy.h diff --git a/cpp/src/sdk/grpc/GrpcClient.cpp b/core/src/sdk/grpc/GrpcClient.cpp similarity index 100% rename from cpp/src/sdk/grpc/GrpcClient.cpp rename to core/src/sdk/grpc/GrpcClient.cpp diff --git a/cpp/src/sdk/grpc/GrpcClient.h b/core/src/sdk/grpc/GrpcClient.h similarity index 100% rename from cpp/src/sdk/grpc/GrpcClient.h rename to core/src/sdk/grpc/GrpcClient.h diff --git a/cpp/src/sdk/include/MilvusApi.h b/core/src/sdk/include/MilvusApi.h similarity index 100% rename from cpp/src/sdk/include/MilvusApi.h rename to core/src/sdk/include/MilvusApi.h diff --git a/cpp/src/sdk/include/Status.h b/core/src/sdk/include/Status.h similarity index 100% rename from cpp/src/sdk/include/Status.h rename to core/src/sdk/include/Status.h diff --git a/cpp/src/sdk/interface/ConnectionImpl.cpp b/core/src/sdk/interface/ConnectionImpl.cpp similarity index 100% rename from cpp/src/sdk/interface/ConnectionImpl.cpp rename to core/src/sdk/interface/ConnectionImpl.cpp diff --git a/cpp/src/sdk/interface/ConnectionImpl.h b/core/src/sdk/interface/ConnectionImpl.h similarity index 100% rename from cpp/src/sdk/interface/ConnectionImpl.h rename to core/src/sdk/interface/ConnectionImpl.h diff --git a/cpp/src/sdk/interface/Status.cpp b/core/src/sdk/interface/Status.cpp similarity index 100% rename from cpp/src/sdk/interface/Status.cpp rename to core/src/sdk/interface/Status.cpp diff --git a/cpp/src/server/Config.cpp b/core/src/server/Config.cpp similarity index 100% rename from cpp/src/server/Config.cpp rename to core/src/server/Config.cpp diff --git a/cpp/src/server/Config.h b/core/src/server/Config.h similarity index 100% rename from cpp/src/server/Config.h rename to core/src/server/Config.h diff --git a/cpp/src/server/DBWrapper.cpp b/core/src/server/DBWrapper.cpp similarity index 100% rename from cpp/src/server/DBWrapper.cpp rename to core/src/server/DBWrapper.cpp diff --git a/cpp/src/server/DBWrapper.h b/core/src/server/DBWrapper.h similarity index 100% rename from cpp/src/server/DBWrapper.h rename to core/src/server/DBWrapper.h diff --git a/cpp/src/server/Server.cpp b/core/src/server/Server.cpp similarity index 100% rename from cpp/src/server/Server.cpp rename to core/src/server/Server.cpp diff --git a/cpp/src/server/Server.h b/core/src/server/Server.h similarity index 100% rename from cpp/src/server/Server.h rename to core/src/server/Server.h diff --git a/cpp/src/server/grpc_impl/GrpcRequestHandler.cpp b/core/src/server/grpc_impl/GrpcRequestHandler.cpp similarity index 100% rename from cpp/src/server/grpc_impl/GrpcRequestHandler.cpp rename to core/src/server/grpc_impl/GrpcRequestHandler.cpp diff --git a/cpp/src/server/grpc_impl/GrpcRequestHandler.h b/core/src/server/grpc_impl/GrpcRequestHandler.h similarity index 100% rename from cpp/src/server/grpc_impl/GrpcRequestHandler.h rename to core/src/server/grpc_impl/GrpcRequestHandler.h diff --git a/cpp/src/server/grpc_impl/GrpcRequestScheduler.cpp b/core/src/server/grpc_impl/GrpcRequestScheduler.cpp similarity index 100% rename from cpp/src/server/grpc_impl/GrpcRequestScheduler.cpp rename to core/src/server/grpc_impl/GrpcRequestScheduler.cpp diff --git a/cpp/src/server/grpc_impl/GrpcRequestScheduler.h b/core/src/server/grpc_impl/GrpcRequestScheduler.h similarity index 100% rename from cpp/src/server/grpc_impl/GrpcRequestScheduler.h rename to core/src/server/grpc_impl/GrpcRequestScheduler.h diff --git a/cpp/src/server/grpc_impl/GrpcRequestTask.cpp b/core/src/server/grpc_impl/GrpcRequestTask.cpp similarity index 100% rename from cpp/src/server/grpc_impl/GrpcRequestTask.cpp rename to core/src/server/grpc_impl/GrpcRequestTask.cpp diff --git a/cpp/src/server/grpc_impl/GrpcRequestTask.h b/core/src/server/grpc_impl/GrpcRequestTask.h similarity index 100% rename from cpp/src/server/grpc_impl/GrpcRequestTask.h rename to core/src/server/grpc_impl/GrpcRequestTask.h diff --git a/cpp/src/server/grpc_impl/GrpcServer.cpp b/core/src/server/grpc_impl/GrpcServer.cpp similarity index 100% rename from cpp/src/server/grpc_impl/GrpcServer.cpp rename to core/src/server/grpc_impl/GrpcServer.cpp diff --git a/cpp/src/server/grpc_impl/GrpcServer.h b/core/src/server/grpc_impl/GrpcServer.h similarity index 100% rename from cpp/src/server/grpc_impl/GrpcServer.h rename to core/src/server/grpc_impl/GrpcServer.h diff --git a/cpp/src/utils/BlockingQueue.h b/core/src/utils/BlockingQueue.h similarity index 100% rename from cpp/src/utils/BlockingQueue.h rename to core/src/utils/BlockingQueue.h diff --git a/cpp/src/utils/BlockingQueue.inl b/core/src/utils/BlockingQueue.inl similarity index 100% rename from cpp/src/utils/BlockingQueue.inl rename to core/src/utils/BlockingQueue.inl diff --git a/cpp/src/utils/CommonUtil.cpp b/core/src/utils/CommonUtil.cpp similarity index 100% rename from cpp/src/utils/CommonUtil.cpp rename to core/src/utils/CommonUtil.cpp diff --git a/cpp/src/utils/CommonUtil.h b/core/src/utils/CommonUtil.h similarity index 100% rename from cpp/src/utils/CommonUtil.h rename to core/src/utils/CommonUtil.h diff --git a/cpp/src/utils/Error.h b/core/src/utils/Error.h similarity index 100% rename from cpp/src/utils/Error.h rename to core/src/utils/Error.h diff --git a/cpp/src/utils/Exception.h b/core/src/utils/Exception.h similarity index 100% rename from cpp/src/utils/Exception.h rename to core/src/utils/Exception.h diff --git a/cpp/src/utils/Log.h b/core/src/utils/Log.h similarity index 100% rename from cpp/src/utils/Log.h rename to core/src/utils/Log.h diff --git a/cpp/src/utils/LogUtil.cpp b/core/src/utils/LogUtil.cpp similarity index 100% rename from cpp/src/utils/LogUtil.cpp rename to core/src/utils/LogUtil.cpp diff --git a/cpp/src/utils/LogUtil.h b/core/src/utils/LogUtil.h similarity index 100% rename from cpp/src/utils/LogUtil.h rename to core/src/utils/LogUtil.h diff --git a/cpp/src/utils/SignalUtil.cpp b/core/src/utils/SignalUtil.cpp similarity index 100% rename from cpp/src/utils/SignalUtil.cpp rename to core/src/utils/SignalUtil.cpp diff --git a/cpp/src/utils/SignalUtil.h b/core/src/utils/SignalUtil.h similarity index 100% rename from cpp/src/utils/SignalUtil.h rename to core/src/utils/SignalUtil.h diff --git a/cpp/src/utils/Status.cpp b/core/src/utils/Status.cpp similarity index 100% rename from cpp/src/utils/Status.cpp rename to core/src/utils/Status.cpp diff --git a/cpp/src/utils/Status.h b/core/src/utils/Status.h similarity index 100% rename from cpp/src/utils/Status.h rename to core/src/utils/Status.h diff --git a/cpp/src/utils/StringHelpFunctions.cpp b/core/src/utils/StringHelpFunctions.cpp similarity index 100% rename from cpp/src/utils/StringHelpFunctions.cpp rename to core/src/utils/StringHelpFunctions.cpp diff --git a/cpp/src/utils/StringHelpFunctions.h b/core/src/utils/StringHelpFunctions.h similarity index 100% rename from cpp/src/utils/StringHelpFunctions.h rename to core/src/utils/StringHelpFunctions.h diff --git a/cpp/src/utils/ThreadPool.h b/core/src/utils/ThreadPool.h similarity index 100% rename from cpp/src/utils/ThreadPool.h rename to core/src/utils/ThreadPool.h diff --git a/cpp/src/utils/TimeRecorder.cpp b/core/src/utils/TimeRecorder.cpp similarity index 100% rename from cpp/src/utils/TimeRecorder.cpp rename to core/src/utils/TimeRecorder.cpp diff --git a/cpp/src/utils/TimeRecorder.h b/core/src/utils/TimeRecorder.h similarity index 100% rename from cpp/src/utils/TimeRecorder.h rename to core/src/utils/TimeRecorder.h diff --git a/cpp/src/utils/ValidationUtil.cpp b/core/src/utils/ValidationUtil.cpp similarity index 100% rename from cpp/src/utils/ValidationUtil.cpp rename to core/src/utils/ValidationUtil.cpp diff --git a/cpp/src/utils/ValidationUtil.h b/core/src/utils/ValidationUtil.h similarity index 100% rename from cpp/src/utils/ValidationUtil.h rename to core/src/utils/ValidationUtil.h diff --git a/cpp/src/utils/easylogging++.cc b/core/src/utils/easylogging++.cc similarity index 100% rename from cpp/src/utils/easylogging++.cc rename to core/src/utils/easylogging++.cc diff --git a/cpp/src/utils/easylogging++.h b/core/src/utils/easylogging++.h similarity index 100% rename from cpp/src/utils/easylogging++.h rename to core/src/utils/easylogging++.h diff --git a/cpp/src/wrapper/ConfAdapter.cpp b/core/src/wrapper/ConfAdapter.cpp similarity index 100% rename from cpp/src/wrapper/ConfAdapter.cpp rename to core/src/wrapper/ConfAdapter.cpp diff --git a/cpp/src/wrapper/ConfAdapter.h b/core/src/wrapper/ConfAdapter.h similarity index 100% rename from cpp/src/wrapper/ConfAdapter.h rename to core/src/wrapper/ConfAdapter.h diff --git a/cpp/src/wrapper/ConfAdapterMgr.cpp b/core/src/wrapper/ConfAdapterMgr.cpp similarity index 100% rename from cpp/src/wrapper/ConfAdapterMgr.cpp rename to core/src/wrapper/ConfAdapterMgr.cpp diff --git a/cpp/src/wrapper/ConfAdapterMgr.h b/core/src/wrapper/ConfAdapterMgr.h similarity index 100% rename from cpp/src/wrapper/ConfAdapterMgr.h rename to core/src/wrapper/ConfAdapterMgr.h diff --git a/cpp/src/wrapper/DataTransfer.cpp b/core/src/wrapper/DataTransfer.cpp similarity index 100% rename from cpp/src/wrapper/DataTransfer.cpp rename to core/src/wrapper/DataTransfer.cpp diff --git a/cpp/src/wrapper/DataTransfer.h b/core/src/wrapper/DataTransfer.h similarity index 100% rename from cpp/src/wrapper/DataTransfer.h rename to core/src/wrapper/DataTransfer.h diff --git a/cpp/src/wrapper/KnowhereResource.cpp b/core/src/wrapper/KnowhereResource.cpp similarity index 100% rename from cpp/src/wrapper/KnowhereResource.cpp rename to core/src/wrapper/KnowhereResource.cpp diff --git a/cpp/src/wrapper/KnowhereResource.h b/core/src/wrapper/KnowhereResource.h similarity index 100% rename from cpp/src/wrapper/KnowhereResource.h rename to core/src/wrapper/KnowhereResource.h diff --git a/cpp/src/wrapper/VecImpl.cpp b/core/src/wrapper/VecImpl.cpp similarity index 100% rename from cpp/src/wrapper/VecImpl.cpp rename to core/src/wrapper/VecImpl.cpp diff --git a/cpp/src/wrapper/VecImpl.h b/core/src/wrapper/VecImpl.h similarity index 100% rename from cpp/src/wrapper/VecImpl.h rename to core/src/wrapper/VecImpl.h diff --git a/cpp/src/wrapper/VecIndex.cpp b/core/src/wrapper/VecIndex.cpp similarity index 100% rename from cpp/src/wrapper/VecIndex.cpp rename to core/src/wrapper/VecIndex.cpp diff --git a/cpp/src/wrapper/VecIndex.h b/core/src/wrapper/VecIndex.h similarity index 100% rename from cpp/src/wrapper/VecIndex.h rename to core/src/wrapper/VecIndex.h diff --git a/cpp/start_server.sh b/core/start_server.sh similarity index 100% rename from cpp/start_server.sh rename to core/start_server.sh diff --git a/cpp/stop_server.sh b/core/stop_server.sh similarity index 100% rename from cpp/stop_server.sh rename to core/stop_server.sh diff --git a/cpp/thirdparty/versions.txt b/core/thirdparty/versions.txt similarity index 100% rename from cpp/thirdparty/versions.txt rename to core/thirdparty/versions.txt diff --git a/cpp/unittest/CMakeLists.txt b/core/unittest/CMakeLists.txt similarity index 100% rename from cpp/unittest/CMakeLists.txt rename to core/unittest/CMakeLists.txt diff --git a/cpp/unittest/db/CMakeLists.txt b/core/unittest/db/CMakeLists.txt similarity index 100% rename from cpp/unittest/db/CMakeLists.txt rename to core/unittest/db/CMakeLists.txt diff --git a/cpp/unittest/db/appendix/log_config.conf b/core/unittest/db/appendix/log_config.conf similarity index 100% rename from cpp/unittest/db/appendix/log_config.conf rename to core/unittest/db/appendix/log_config.conf diff --git a/cpp/unittest/db/appendix/server_config.yaml b/core/unittest/db/appendix/server_config.yaml similarity index 100% rename from cpp/unittest/db/appendix/server_config.yaml rename to core/unittest/db/appendix/server_config.yaml diff --git a/cpp/unittest/db/test_db.cpp b/core/unittest/db/test_db.cpp similarity index 100% rename from cpp/unittest/db/test_db.cpp rename to core/unittest/db/test_db.cpp diff --git a/cpp/unittest/db/test_db_mysql.cpp b/core/unittest/db/test_db_mysql.cpp similarity index 100% rename from cpp/unittest/db/test_db_mysql.cpp rename to core/unittest/db/test_db_mysql.cpp diff --git a/cpp/unittest/db/test_engine.cpp b/core/unittest/db/test_engine.cpp similarity index 100% rename from cpp/unittest/db/test_engine.cpp rename to core/unittest/db/test_engine.cpp diff --git a/cpp/unittest/db/test_mem.cpp b/core/unittest/db/test_mem.cpp similarity index 100% rename from cpp/unittest/db/test_mem.cpp rename to core/unittest/db/test_mem.cpp diff --git a/cpp/unittest/db/test_meta.cpp b/core/unittest/db/test_meta.cpp similarity index 100% rename from cpp/unittest/db/test_meta.cpp rename to core/unittest/db/test_meta.cpp diff --git a/cpp/unittest/db/test_meta_mysql.cpp b/core/unittest/db/test_meta_mysql.cpp similarity index 100% rename from cpp/unittest/db/test_meta_mysql.cpp rename to core/unittest/db/test_meta_mysql.cpp diff --git a/cpp/unittest/db/test_misc.cpp b/core/unittest/db/test_misc.cpp similarity index 100% rename from cpp/unittest/db/test_misc.cpp rename to core/unittest/db/test_misc.cpp diff --git a/cpp/unittest/db/test_search.cpp b/core/unittest/db/test_search.cpp similarity index 100% rename from cpp/unittest/db/test_search.cpp rename to core/unittest/db/test_search.cpp diff --git a/cpp/unittest/db/utils.cpp b/core/unittest/db/utils.cpp similarity index 100% rename from cpp/unittest/db/utils.cpp rename to core/unittest/db/utils.cpp diff --git a/cpp/unittest/db/utils.h b/core/unittest/db/utils.h similarity index 100% rename from cpp/unittest/db/utils.h rename to core/unittest/db/utils.h diff --git a/cpp/unittest/main.cpp b/core/unittest/main.cpp similarity index 100% rename from cpp/unittest/main.cpp rename to core/unittest/main.cpp diff --git a/cpp/unittest/metrics/CMakeLists.txt b/core/unittest/metrics/CMakeLists.txt similarity index 100% rename from cpp/unittest/metrics/CMakeLists.txt rename to core/unittest/metrics/CMakeLists.txt diff --git a/cpp/unittest/metrics/test_metricbase.cpp b/core/unittest/metrics/test_metricbase.cpp similarity index 100% rename from cpp/unittest/metrics/test_metricbase.cpp rename to core/unittest/metrics/test_metricbase.cpp diff --git a/cpp/unittest/metrics/test_metrics.cpp b/core/unittest/metrics/test_metrics.cpp similarity index 100% rename from cpp/unittest/metrics/test_metrics.cpp rename to core/unittest/metrics/test_metrics.cpp diff --git a/cpp/unittest/metrics/test_prometheus.cpp b/core/unittest/metrics/test_prometheus.cpp similarity index 100% rename from cpp/unittest/metrics/test_prometheus.cpp rename to core/unittest/metrics/test_prometheus.cpp diff --git a/cpp/unittest/metrics/utils.cpp b/core/unittest/metrics/utils.cpp similarity index 100% rename from cpp/unittest/metrics/utils.cpp rename to core/unittest/metrics/utils.cpp diff --git a/cpp/unittest/metrics/utils.h b/core/unittest/metrics/utils.h similarity index 100% rename from cpp/unittest/metrics/utils.h rename to core/unittest/metrics/utils.h diff --git a/cpp/unittest/scheduler/CMakeLists.txt b/core/unittest/scheduler/CMakeLists.txt similarity index 100% rename from cpp/unittest/scheduler/CMakeLists.txt rename to core/unittest/scheduler/CMakeLists.txt diff --git a/cpp/unittest/scheduler/task_test.cpp b/core/unittest/scheduler/task_test.cpp similarity index 100% rename from cpp/unittest/scheduler/task_test.cpp rename to core/unittest/scheduler/task_test.cpp diff --git a/cpp/unittest/scheduler/test_algorithm.cpp b/core/unittest/scheduler/test_algorithm.cpp similarity index 100% rename from cpp/unittest/scheduler/test_algorithm.cpp rename to core/unittest/scheduler/test_algorithm.cpp diff --git a/cpp/unittest/scheduler/test_event.cpp b/core/unittest/scheduler/test_event.cpp similarity index 100% rename from cpp/unittest/scheduler/test_event.cpp rename to core/unittest/scheduler/test_event.cpp diff --git a/cpp/unittest/scheduler/test_node.cpp b/core/unittest/scheduler/test_node.cpp similarity index 100% rename from cpp/unittest/scheduler/test_node.cpp rename to core/unittest/scheduler/test_node.cpp diff --git a/cpp/unittest/scheduler/test_normal.cpp b/core/unittest/scheduler/test_normal.cpp similarity index 100% rename from cpp/unittest/scheduler/test_normal.cpp rename to core/unittest/scheduler/test_normal.cpp diff --git a/cpp/unittest/scheduler/test_resource.cpp b/core/unittest/scheduler/test_resource.cpp similarity index 100% rename from cpp/unittest/scheduler/test_resource.cpp rename to core/unittest/scheduler/test_resource.cpp diff --git a/cpp/unittest/scheduler/test_resource_factory.cpp b/core/unittest/scheduler/test_resource_factory.cpp similarity index 100% rename from cpp/unittest/scheduler/test_resource_factory.cpp rename to core/unittest/scheduler/test_resource_factory.cpp diff --git a/cpp/unittest/scheduler/test_resource_mgr.cpp b/core/unittest/scheduler/test_resource_mgr.cpp similarity index 100% rename from cpp/unittest/scheduler/test_resource_mgr.cpp rename to core/unittest/scheduler/test_resource_mgr.cpp diff --git a/cpp/unittest/scheduler/test_scheduler.cpp b/core/unittest/scheduler/test_scheduler.cpp similarity index 100% rename from cpp/unittest/scheduler/test_scheduler.cpp rename to core/unittest/scheduler/test_scheduler.cpp diff --git a/cpp/unittest/scheduler/test_tasktable.cpp b/core/unittest/scheduler/test_tasktable.cpp similarity index 100% rename from cpp/unittest/scheduler/test_tasktable.cpp rename to core/unittest/scheduler/test_tasktable.cpp diff --git a/cpp/unittest/server/CMakeLists.txt b/core/unittest/server/CMakeLists.txt similarity index 100% rename from cpp/unittest/server/CMakeLists.txt rename to core/unittest/server/CMakeLists.txt diff --git a/cpp/unittest/server/appendix/log_config.conf b/core/unittest/server/appendix/log_config.conf similarity index 100% rename from cpp/unittest/server/appendix/log_config.conf rename to core/unittest/server/appendix/log_config.conf diff --git a/cpp/unittest/server/appendix/server_config.yaml b/core/unittest/server/appendix/server_config.yaml similarity index 100% rename from cpp/unittest/server/appendix/server_config.yaml rename to core/unittest/server/appendix/server_config.yaml diff --git a/cpp/unittest/server/test_cache.cpp b/core/unittest/server/test_cache.cpp similarity index 100% rename from cpp/unittest/server/test_cache.cpp rename to core/unittest/server/test_cache.cpp diff --git a/cpp/unittest/server/test_config.cpp b/core/unittest/server/test_config.cpp similarity index 100% rename from cpp/unittest/server/test_config.cpp rename to core/unittest/server/test_config.cpp diff --git a/cpp/unittest/server/test_rpc.cpp b/core/unittest/server/test_rpc.cpp similarity index 100% rename from cpp/unittest/server/test_rpc.cpp rename to core/unittest/server/test_rpc.cpp diff --git a/cpp/unittest/server/util_test.cpp b/core/unittest/server/util_test.cpp similarity index 100% rename from cpp/unittest/server/util_test.cpp rename to core/unittest/server/util_test.cpp diff --git a/cpp/unittest/wrapper/CMakeLists.txt b/core/unittest/wrapper/CMakeLists.txt similarity index 100% rename from cpp/unittest/wrapper/CMakeLists.txt rename to core/unittest/wrapper/CMakeLists.txt diff --git a/cpp/unittest/wrapper/test_wrapper.cpp b/core/unittest/wrapper/test_wrapper.cpp similarity index 100% rename from cpp/unittest/wrapper/test_wrapper.cpp rename to core/unittest/wrapper/test_wrapper.cpp diff --git a/cpp/unittest/wrapper/utils.cpp b/core/unittest/wrapper/utils.cpp similarity index 100% rename from cpp/unittest/wrapper/utils.cpp rename to core/unittest/wrapper/utils.cpp diff --git a/cpp/unittest/wrapper/utils.h b/core/unittest/wrapper/utils.h similarity index 100% rename from cpp/unittest/wrapper/utils.h rename to core/unittest/wrapper/utils.h diff --git a/cpp/version.h.macro b/core/version.h.macro similarity index 100% rename from cpp/version.h.macro rename to core/version.h.macro diff --git a/cpp/LICENSE.txt b/cpp/LICENSE.txt deleted file mode 100644 index 1ca16fdeff..0000000000 --- a/cpp/LICENSE.txt +++ /dev/null @@ -1,3 +0,0 @@ -Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved -Unauthorized copying of this file, via any medium is strictly prohibited. -Proprietary and confidential. \ No newline at end of file diff --git a/cpp/Milvus-EULA-cn.md b/cpp/Milvus-EULA-cn.md deleted file mode 100644 index e9a25dcc6c..0000000000 --- a/cpp/Milvus-EULA-cn.md +++ /dev/null @@ -1,119 +0,0 @@ -# **Milvus**终端用户授权许可条款及条件 - -#### 2019-06-30 版 - - - -本条款和条件(下称“本协议”)适用于使用由上海赜睿信息科技有限公司(下称“**ZILLIZ**”)所提供的Milvus产品(参见如下定义) 的用户。 - -**请仔细阅读如下条款:** - -**若您(下称“您”或“用户”)代表某公司或者其他机构使用任何产品时, 您特此陈述您作为该公司或该等其他机构的员工或代理,您有权代表该公司或该等其他机构接受本协议项下所要求的全部条款和条件。** - -**若使用任何产品,您知晓并同意:** - -**(A)您已阅读本协议中所有的条款和条件;** - -**(B)您已理解本协议中所有的条款和条件;** - -**(C)您已同意本协议中所有条款和条件对您具有法律约束力。** - -**如果您不同意本协议所述条款和条件中的任意内容,则可以选择不使用产品的任何部分。** - -**本协议的“生效日期”是指您第一次下载任何产品的日期。** - -1. **产品**,指本协议项下任何 **ZILLIZ** 的Milvus产品和软件,包括: Milvus向量检索数据库Docker版与其相关的升级、更新、故障修复或修改版本(统称“更新软件”)。无论本协议是否另有规定: - - (a)仅Milvus向量检索数据库Docker版是免费授权用户的版本,且ZILLIZ保留收回该授权的权力; - - (b)任何使用或者试用Milvus向量检索数据库Docker版的个人与组织,需要通过support@zilliz.com向ZILLIZ告知个人或者组织的身份、联系方式以及使用Milvus的目的。 - - (c)制作和使用额外的副本仅限于必要的备份目的。 - -2. **全部协议**,本协议包括本授权许可条款及条件以及任何[Milvus官方网站](https://milvus.io)展示或者网页链接所附或引用的全部条款。本协议是双方就相关事项达成的完整协议,取代 **ZILLIZ** 与用户之间就本条款相关事项所达成的其他任何协议,无论是口头的还是书面的。 - -3. **使用许可**,**ZILLIZ** 授予用户非排他性的、不可转让的、非可再授权的、可撤回的和有限的许可进行访问和使用第1条所定义的产品,该访问和使用许可仅限于用户内部使用之目的。通过电子下载或其他经许可的来源获得产品的用户均应受限于本协议的内容。 - -4. **许可限制**,除非本协议另有明文规定,否则用户将不被允许: - - (a)修改、翻译或制造产品的衍生作品; - - (b)反向编译、反向工程、破解产品的任何部分或试图发现有关产品的任何源代码、基本理念或运算方法; (c)销售、分派、再授权、出租、出借、出质、提供或另行翻译全部或部分产品; - - (d)制造、获取非法制造的、再版或复制产品; - - (e)删除或更改与产品相关联的任何商标、标志、版权或其他专有标 ; - - (f)不得在没有 **ZILLIZ** 明确书面授权的情况下,使用或许可他人使用产品为第三方提供服务,无论是在产品服务过程中使用或采用分时的方式; - - (g)引起或许可任何其他方进行上述任何一种禁止行为。 - -5. **所有权**,**ZILLIZ** 和用户在本协议项下的许可需明确,**ZILLIZ** 有以下各项的全部权利、所有权和相关利益:(a)产品(包括但不限于,任何更新软件、修订版本或其衍生作品); - - (b)在 **ZILLIZ** 根据本协议提供任何服务的过程中或作为其提供服务的结果,由 **ZILLIZ** 发现、 产生或发展出来的所有的概念、发明、发现、改进、信息、创意作品等; - - (c)前述各项所含的任何知识产权权利。在本协议项下,“知识产权”是指在任何管辖区域经申请和注册获得认可和保护的全部专利、版权、道德权利、商标、商业秘密和任何其他形式的权利。**ZILLIZ** 与用户同意,在受限于法律法规规定及本协议全部条款和条件的前提下,用户拥有使用产品而产生的数据的权利、所有权等相关利益。本协议中无任何默示许可,**ZILLIZ** 保留本协议项下未明确授权的全部权利。除非本协议明确约定,**ZILLIZ** 在本协议下未授予用户任何许可权利,无论是通过暗示、默许或其他方式。 - -6. **保密**,保密信息是指,无论是在本协议生效前或生效后,由 **ZILLIZ** 披露给用户的与本协议或与 **ZILLIZ** 相关的所有信息(无论是以口头、书面或其他有形、无形的形式)。保密信息包括但不限于,商业计划的内容、产品、发明、设计图纸、财务计划、计算机程序、发明、用户信息、战略和其他类似信息。在本协议期限内,除非获得明确许可, 用户需保证保密信息的秘密性,并确保不会使用上述保密信息。用户将采用与保护其自身保密信息的同等谨慎程度(不论在何种情况下均不低于合理的谨慎程度)来保护 **ZILLIZ** 的保密信息,来避免使得保密信息被未经授权的使用和披露。保密信息只供用户根据本协议规定使用产品之目的而使用。此外,用户将: - - (a)除非用户为了根据本协议的规定而使用产品之目的外,不得以任何形式复制、使用或披露保密信息; (b)只向为确保用户可根据本协议使用产品而必需知道该保密信息的员工和顾问披露保密信息,前提是上述员工和顾问已签署了包含保密义务不低于本条所述内容的保密协议。 - - 保密信息不包括下列信息: - - (a) 非因用户过错违反本协议导致已进入公共领域可被第三方获取的; - - (b) 用户能合理证明其在通过 **ZILLIZ** 获得之前已知晓的; - - (c)用户能证明没有使用或参考该保密信息而独立获得的; - - (d)用户从其他无披露限制或无保密义务的第三方获得的。如无另行说明,由用户提供给 **ZILLIZ** 有关产品的任何建议、评论或者其他反馈(统称“反馈信息”)将同样构成保密信息。 - - 此外,**ZILLIZ** 有权使用、披露、复制、许可和利用上述反馈信息,而无需承担任何知识产权负担或其他任何形式的义务或限制。根据相关法律法规,与本协议的履行和用户使用 **ZILLIZ** 产品相关的情况下: - - (a)**ZILLIZ** 同意不会要求用户提供任何个人身份信息; - - (b)用户同意不提供任何个人身份信息给 **ZILLIZ**。 - -7. **免责声明**,用户陈述、保证及承诺如下: - - (a)其所有员工和顾问都将遵守本协议的全部条款; - - (b)在履行本协议时将遵守全部可适用的政府部门颁发的法律、法规、规章、命令和其他要求(无论是现行有效还是之后生效的)。 - - 无论本协议是否另有规定,用户将持续对其雇员或顾问的全部作为或不作为承担责任,如同该等作为或不作为系其自身所为。 - - 产品系按照原状或现状提供给用户,不含任何形式的陈述、保证、 承诺或条件。**ZILLIZ** 及其供应商不保证任何产品将无任何故障、错误或漏洞。**ZILLIZ** 和其供应商不为产品的如下内容提供任何陈述和保证(无论是明示或暗示,口头或书面),不论该内容是否依据法律之规定,行业惯例,交易习惯或其他原因而要求的: - - (a)保证适销性; - - (b)保证可适用于任何目的(不论 **ZILLIZ** 是否知晓、应当知晓、被建议或另行得知该目的); - - (c)保证不侵权和拥有全部所有权。用户已明确知悉并同意产品上无任何陈述和保证。此外,鉴于进行入侵和网络攻击的新技术在不断发展,**ZILLIZ** 并不保证产品或产品所使用的系统或网络将免于任何入侵或攻击。 - -8. **损害赔偿**,用户应赔偿、保护或使得 **ZILLIZ** 及其董事、高管、 雇员、供应商、顾问、承包商和代理商(统称为“**ZILLIZ **受保障方”)免受所有现存或潜在的针对 **ZILLIZ** 受保障方因提起请求、诉讼或其他程序而引起的要求其赔偿损害损失、支付费用、罚款、调解、 损失费用等支出(包括但不限于律师费、费用、罚款、利息和垫付款),用户承担上述责任的前提是该请求、诉讼或其他程序,不论是否成功系在如下情况发生时导致、引起的,或以任何形式与下述情况相关: - - (a)任何对本协议的违反(包括但不限于,任何违反用户陈述和保证或约定的情况); - - (b)用户过失或故意产生的过错行为; - - (c)引起争议的数据和信息系在产品的使用过程中产生或收集的。 - -9. **责任限制**,除了 **ZILLIZ** 存在欺诈或故意的过错行为,在任何情况下: - - (a)**ZILLIZ** 都不会赔偿用户或任何第三方的因本协议或产品(包括用户使用或无法使用产品的情况)而遭受的任何利润损失、数 据损失、使用损失、收入损失、商誉损失、任何经营活动的中断,任何其他商业损害或损失,或任何间接的、特殊的、附带的、惩戒性、惩罚性或伴随的损失,不论上述损失系因合同、侵权、严格责任或其他原因而确认的,即使 **ZILLIZ** 已被通知或因其他可能的渠道知晓上述损失发生的可能性; - - (b)**ZILLIZ** 因本协议所需承担的全部赔偿责任不应超过用户已支付或将支付给 **ZILLIZ** 的全部款项总额(若有),多项请求亦不得超过该金额限制。上述限制、排除情况及声明应在相关法律允许的最大范围内得以适用,即便任何补偿无法达到其实质目的。 - -10. **第三方供应商**,产品可能包括由第三方供应商许可提供的软件或其他代码(下称“第三方软件”)。用户已知悉第三方供应商不对产品或其任何部分提供任何陈述和保证,**ZILLIZ** 不承担因产品或用户对第三方软件的使用或不能使用的情况而产生的任何责任。 - -11. **诊断和报告**,用户了解并同意该产品包含诊断功能作为其默认配置。 诊断功能用于收集有关使用环境和产品使用过程中的配置文件、节点数、 软件版本、日志文档和其他信息,并将上述信息报告给 **ZILLIZ** 用于提前识别潜在的支持问题、了解用户的使用环境、并提高产品的使用性能。虽然用户可以选择更改诊断功能来禁用自动定时报告或仅用于报告服务记录,但用户需同意,每季度须至少运行一次诊断功能并将结果报告给**ZILLIZ**。 - -12. **终止**,本协议期限从生效之日起直到 **ZILLIZ** 网站规定的期限终止,除非本协议因用户违反本协议中条款而提前终止。无论本协议是否另有规定,在用户存在违反第3、4、5或7条时,**ZILLIZ**有权立即终止本协议。本协议期满或提前终止时: - - (a)根据本协议所授予给用户的所有权利将立即终止,在此情况下用户应立即停止使用产品; - - (b) 用户应及时将届时仍由其占有的所有保密信息及其副本(包括但不限于产品)交还给 **ZILLIZ**,或根据 **ZILLIZ** 的自行审慎决定及指示, 销毁该等保密信息全部副本,未经 **ZILLIZ** 书面同意,用户不得擅自保留任何由 **ZILLIZ** 提供的保密信息及其副本。 - -13. **第三方资源**, **ZILLIZ** 供应的产品可能包括对其他网站、内容或资源的超链接(下称“第三方资源”),且 **ZILLIZ** 此类产品的正常使用可能依赖于第三方资源的可用性。**ZILLIZ** 无法控制任何第三方资源。用户承认并同意,**ZILLIZ** 不就第三方资源的可用性及安全性承担任何责任,也不对该等第三方资源所涉及的或从其中获得的任何广告、产品或其他材料提供保证。用户承认并同意,**ZILLIZ** 不应因第三方资源的可用性及安全性、或用户依赖于第三方资源所涉及的或从其中获得的任何广告、产品或其他材料的完整性、准确性及存续而可能遭受的损失或损害承担任何责任。 - -14. **其他**,本协议全部内容均在中华人民共和国境内履行,受中华人民共和国法律管辖并根据其解释(但不适用相关冲突法的法律条款)。用 **ZILLIZ** 同意与本协议有关的任何争议将向上海市徐汇区人民法院提出,且不可撤销无条件的同意上述法院对因本协议提起的全部诉讼、争议拥有排他的管辖权。一旦确定任何条款无效、非法或无法执行, **ZILLIZ** 保留修改和解释该条款的权利。任何需要发送给用户的通知如公布在 **ZILLIZ** 的网站上则被视为已有效、合法地发送给用户。除了本合同项下应支付款项的义务外,任何一方将不对因不可抗力而导致的无法合理控制的全部或部分未能履行或延迟履行本协议的行为负责, 不可抗力包括但不限于火灾、暴风雨、洪水、地震、内乱、电信中断、 电力中断或其他基础设施的中断、**ZILLIZ** 使用的服务提供商存在问题导致服务中断或终止、罢工、故意毁坏事件、电缆被切断、病毒入侵或其他任意第三方故意或非法的行为引起的其他类似事件。在上述迟延履行情况出现时,可延迟履行协议的时间为因上述原因引起的延迟时间。 本协议另有明确规定外,本协议所要求或认可的通知或通讯均需以书面形式经一方有权代表签署或授权并以直接呈递、隔夜快递,经确认的电子邮件发送,经确认的传真或邮寄挂号信、挂号邮件保留回单等方式送达。对本协议的任何修改、补充或删除或权利放弃,必须通过书面由双方适当授权的代表签署确认后方为有效。任何一方对任何权利或救济的不履行或迟延履行(部分或全部)不构成对该等权利或救济的放弃,也不影响任何其他权利或救济。本协议项下的所有权利主张和救济均可为累积的且不排除本协议中包含的或法律所规定的其他任何权利或救济。 对本协议中任何一项违约责任的豁免或延迟行使任何权利,并不构成对其他后续违约责任的豁免。 \ No newline at end of file diff --git a/cpp/Milvus-EULA-en.md b/cpp/Milvus-EULA-en.md deleted file mode 100644 index 3444dd722b..0000000000 --- a/cpp/Milvus-EULA-en.md +++ /dev/null @@ -1,129 +0,0 @@ -# ZILLIZ End-User License Agreement - -#### Last updated: 2019-06-30 - - - -This End-user License Agreement ("Agreement") is applicable to all users who uses Milvus provided by ZILLIZ company. - -**Please read this agreement carefully before clicking the I Agree button, downloading or using this Application.** - -**If you ("You" or "User") use any product on behalf of a company or other organization, you hereby state that you are an employee or agent of the company or such other institution, and you have the right to represent the company or such institutions to accept all the terms and conditions required under this Agreement. ** - -**If you use any product, you acknowledge and agree:** - -**(A) You have read all the terms and conditions in the Agreement;** - -**(B) You have understand all the terms and conditions in the Agreement;** - -**(C) You have agreed that all the terms and conditions of this Agreement are legally binding on you.** - -**If you do not agree to any of the terms and conditions set forth in this Agreement, you may choose not to use any part of the product.** - -**This agreement takes effect immediately the first time you download the application**. - -1. **Product**. In this Agreement, it refers to Milvus and other related software products of **ZILLIZ**, including Milvus vector indexing database and its updates, higher versions, maintenance or patch releases ("Updated Software"). - - (a) Only the Docker version of Milvus vector indexing database is granted free to the User. **ZILLIZ** retains the right to revoke this grant; - - (b) Any person or organization that intend to use or try the Docker version of Milvus vector indexing database need to inform **ZILLIZ** of the personal identity, contact information and purposes of using the Product by sending an email to: support@zilliz.com; - - (c)Making or using additional copy of the Product is only restricted to necessary copy purposes. - -2. **Related Agreements**. The Related Agreements includes this Agreement and all other related terms and conditions that appear in [Milvus official website](https://milvus.io). This Agreement is the entire and final agreement that replaces all other terms agreed between the User and **ZILLIZ** about issues listed here, oral or written. - -3. **License Grant**. **ZILLIZ** grant You a revocable, non-exclusive, non-transferable limited right to install and use the Application defined above for your personal, non-commercial purposes. The User who uses the Application through downloading and other permitted channels are also subject to this Agreement; - -4. **Restrictions on Use.** You shall use the Application in accordance with the terms in the Agreement, and shall not: - - (a)Make any modification, translation or derivative work from the Application; - - (b)Decompile, reverse engineer, disassemble, attempt to derive the source code or algorithm of the Application; - - (c)Sell, distribute, license re-granting or provide translation of the whole or part of the Application; - - (d)Use the Application for creating a product, service or software. - - (e)Remove, alter or obscure any proprietary notice, trademark, or copyright of the Company and Application; - - (f)Install or use the Application to provide service to third-party partners, without acquiring formal grant of **ZILLIZ** ; - - (g)Perform or permit any behaviors that might lead to one of the above prohibited actions. - -5. **Ownership**. **ZILLIZ** enjoys the ownership of the following: - - (a)Products (includes but is not restricted to any updated software, patch releases, or derivative products); - - (b)All concepts, innovations, discoveries, improvements, information, or creative products developed and discovered by **ZILLIZ** as a result of or arising out of the service providing process; - - (c)Intellectual property rights of the above mentioned products and innovations. In this Agreement, "Intellectual Property" refers to trademarks, patents, designations of origin, industrial designs and models and copyright. **ZILLIZ** and the User agree that the User enjoy all the rights to use data produced by using the Product, while **ZILLIZ** keeps all other rights not explicitly stated in the Agreement. Unless otherwise stated, **ZILLIZ** has not granted any additional rights to Users, either implied, acquiesced or in other ways. - -6. **Non-disclosure**. Confidential Information refers to any and all information revealed to the User by **ZILLIZ**, either oral or written, tangible or intangible, before or after the Agreement takes effect. Confidential information includes but is not restricted to business plans and strategies, product, innovations, design papers, financial plans, computer programs, User information, etc. Within the term of this Agreement, unless granted definite permission, the User shall hold and maintain the Confidential Information in strictest confidence for the sole and exclusive benefit of **ZILLIZ** and using the Product. In addition: - - (a)You shall not copy, use or disclose Confidential Information for purposes other than using the Product agreed in this Agreement; - - (b)You shall carefully restrict access to Confidential Information to employees, contractors, and third parties as is reasonably required and shall require those persons to sign nondisclosure restrictions at least as protective as those in this Agreement. - - Confidential Information does not include: - - (a)Information that can be obtained by third-parties not due to User's violation of the Agreement; - - (b)Information that can be proven to be provided to Users not by **ZILLIZ** ; - - (c) Information that are obtained with no reference to Confidential Information; - - (d)Information the User gets from third-parties that are not subject to non-disclosure agreement. Unless otherwise stated, any comments, suggestions or other feedback ("Feedback Information") about the Product by the User to **ZILLIZ** will also be counted as Confidential Information. - - Furthermore, **ZILLIZ** has the right to use, disclose, copy or use above Feedback Information, and bearing no intellectual property burden or restrictions. According to related laws and regulations, during the fulfillment of this Agreement: - - (a)**ZILLIZ** agree not to require the User to provide any information regarding personal identities; - - (b)The User agree not to provide **ZILLIZ** with any personal information. - -7. **Disclaimer of Warranties**. You acknowledge, agree and promise that: - - (a) All employees and consultants will obey all terms in the Agreement; - - (b)Application of the Agreement is subject to all laws, terms, acts, commands and other requirements issued by the government (no matter these laws are in effect now or will be effective in the future). - - The User shall be held responsible for all the behaviors in relation to the Application. - - The Application is provided on an "As is" or "As available" basis, and that You use or reliance on the Application is at your sole risk and discretion. **ZILLIZ** and its partners make no warranty that the Application will meet all Your requirements and expectations. - - **ZILLIZ** and its suppliers hereby disclaim any and all representations, warranties and guaranties regarding the Application, whether expressed, implied or statutory: - - (a)The implied warranty of merchantability; - - (b)Fitness for a particular purpose; - - (c)Non-infringement. - - Further more, considering the continuous advancement of Internet hacking and attaching technologies, **ZILLIZ** make no guarantee that the Application or the systems and Internet it uses will be exempt from any hack or attack. - -8. **Damages and Penalties**. The User shall pay, protect or prevent **ZILLIZ** and its board members, executives, employees, consultants or representative agencies (**ZILLIZ** Protected Party) from any existing or potential damage loss, fees, penalties and other outgoing payments (include but are not limited to lawyer fees, fines, interests and advance payment) arising out of legal request, litigation or other processes. The prerequisite condition of the above obligations are that the legal request, litigation or process are caused by any of the following situations: - - (a)Any violation of the Agreement; - - (b)User fault or deliberate behavior; - - (c)Controversial data is produced or collected during the usage of the Product. - -9. **Limitation of Liability**. Unless due to deliberate fraud or error from **ZILLIZ**, below terms are applicable: - - (a)Under no circumstances shall **ZILLIZ** be held liable for any profit loss, data loss, revenue loss, termination of operations, any indirect, special, exemplary or consequential damages arising out or in connection with Your access or use of the Application; - - (b)Without limiting the generality of the foregoing, **ZILLIZ**'s aggregate liability to You shall not exceed the total amount of money You already paid or will pay to **ZILLIZ** (if any). - -10. **Third-party Suppliers**. The User acknowledge that no statement and guarantee should be expected from Third-party Suppliers about the Product or its components. **ZILLIZ** hold no obligations to the Users' usage of the softwares provided by third-party Suppliers. - -11. **Diagnosis and Report**. The User know and agree that Diagnosis is part of the configuration of the Product. Diagnosis is used to collect the configuration files, node numbers, software version, logs and related information, and send a Report to **ZILLIZ** to recognize potential support problems, get to know User environment, and to enhance product features. Although You can choose to turn off the Diagnosis function of automatic report sending, however, You shall run the Diagnosis at least once every quarter and send the Report to **ZILLIZ**. - -12. **Termination of Licensing**. This Agreement is valid from the day it takes effect to the termination dated defined in **ZILLIZ** website, unless the User has disobeyed the terms and caused the Agreement to end in advance. Whether or not listed, if the User has violated terms in Clause 3, 4, 5 or 7, **ZILLIZ** may, in its sole and absolute discretion, terminate this License and the rights afforded to You. Upon the expiration or termination of the License: - - (a)All rights afforded to the User based upon this Agreement will be terminated. You shall ease use of the Product and uninstall related software; - - (b)The User shall return all confidential information and the copy (includes but not restricted to Product) back to **ZILLIZ**, or destroy all copy of confidential information on permission of **ZILLIZ**. Without the written approval of **ZILLIZ**, the User is not allowed to keep any confidential information or its copy provided by **ZILLIZ**. - -13. **Third-party Resources**. Products supplied by **ZILLIZ** may include hyperlinks to other websites, content or resources ("Third Party Resources"), and the normal use of such products may depend on the availability of third party resources. **ZILLIZ** is unable to control any third-party resources. The User acknowledges and agrees that **ZILLIZ** is not responsible for the availability and security of third-party resources and does not guarantee any advertising, products or other materials that are or are derived from such third party resources. The User acknowledges and agrees that **ZILLIZ** shall not hold obligations about any liability for loss or damage that may be suffered due to the availability and security of third party resources, or the integrity or accuracy of any advertisements, products or other materials that the User relies on or obtains from third party resources. - -14. **Other**. The entire contents of this Agreement are performed within the territory of the People's Republic of China and are governed by and construed in accordance with the laws of the People's Republic of China (but not applicable to the relevant conflict laws). **ZILLIZ** agrees that any disputes relating to this Agreement will be submitted to the Xuhui District People's Court of Shanghai, and irrevocably and unconditionally agree that the above courts have exclusive jurisdiction over all litigations and disputes brought about by this Agreement. Once it is determined that any provision is invalid, illegal or unenforceable, **ZILLIZ** reserves the right to modify and interpret the terms. Any notice that needs to be sent to the user, if posted on the **ZILLIZ** website, is deemed to have been validly and legally sent to the user. Except for the obligation to pay under this contract, neither party will be liable for failure to perform or delayed performance of this Agreement in whole or in part due to force majeure. The force majeure includes but is not limited to fire, storm, flood , earthquake, civil strife, telecommunications disruption, power outage or other infrastructure disruption, service interruption or termination caused by **ZILLIZ** service provider problems, strikes, intentional destruction events, cable cuts, virus intrusion or any other similar incidents caused by intentional or illegal acts by third parties. In the case of the above-mentioned delayed performance, the delay in fulfilling the agreement may be the delay time due to the above reasons. Unless otherwise stated in this Agreement, notices or communications required or endorsed by this Agreement must be signed or authorized in writing by a party, and delivered by direct delivery, overnight delivery, confirmed email, confirmed fax or by mailing a registered letter, registered mail, and returning the order, etc. Any modification, addition or deletion or waiver of this Agreement must be confirmed by a written confirmation by a suitably authorized representative of both parties. The non-performance or delay in the performance of any right or remedy by any party (partially or wholly) does not constitute a waiver of such rights or remedies, nor does it affect any other rights or remedies. All claims and remedies under this Agreement may be cumulative and do not exclude any other rights or remedies contained in this Agreement or as required by law. Exemption from the waiver or delay of any liability for breach of contract in this Agreement does not constitute an exemption from other subsequent breach of contract obligations. \ No newline at end of file diff --git a/cpp/RELEASE.md b/cpp/RELEASE.md deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/cpp/scripts/requirements.sh b/cpp/scripts/requirements.sh deleted file mode 100755 index 5f8b74ad2c..0000000000 --- a/cpp/scripts/requirements.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -wget -P /tmp https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB -apt-key add /tmp/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB - -sh -c 'echo deb https://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list' -apt -y update && apt-get -y install intel-mkl-gnu-2019.4-243 intel-mkl-core-2019.4-243 - -#sh -c 'echo export LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2019.4.243/linux/mkl/lib/intel64:\$LD_LIBRARY_PATH > /etc/profile.d/mkl.sh' -#source /etc/profile diff --git a/docs/.gitignore b/docs/.gitignore deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/docs/License.md b/docs/License.md deleted file mode 100644 index 5a8bbedba3..0000000000 --- a/docs/License.md +++ /dev/null @@ -1,80 +0,0 @@ -# 软件许可协议 -### 前言 -下载或使用本协议随附的软件前,请仔细阅读条款和条件(下称“协议”)。使用软件或点击“我接受 (I ACCEPT)”按钮或类似的按钮,即表示您同意仅在遵循本协议条款和条件的前提下使用软件。您保证您至少年满十八周岁,并且您拥有签署合同的法定能力。如果您代表任何公司、组织或其他实体签署本协议,则 (A) 本协议中所称“您”同时亦指该公司、组织或实体;并且 (B) 您声明并保证您拥有约束该公司、组织或实体接受本协议所规定条款和条件的授权。“贵方”和“客户”亦指您。 - -您对软件的使用明确以您接受本协议的条款和条件为前提。如果您不同意本协议的条款和条件,则不得安装或使用软件。 - -### 定义 -“许可软件” 指的是仅以目标代码形式呈现的 Zilliz 专有软件程序和 Zilliz 依据本协议提供的软件更新。 - -“知识产权” 指依据任何司法管辖区法律产生的专利、版权、商业秘密、商标或任何种类或性质的其他类似知识产权,包括任何所谓的“道德权利”。 - -“软件更新” 指 Zilliz 依据支持和维护服务协议向其客户广泛提供的有关许可软件和第三方软件的新版本、漏洞修复或补丁或配置数据变更。 - -“服务” 指 Zilliz 依据本协议的条款向客户提供的服务,包括支持和专业服务,明确限于直接与客户对软件的使用有关的服务,且明确排除任何其他服务。 - -“许可期限” 指自生效日起,到软件许可日结束时为止。 - -“支持” 指 Zilliz 依据本协议条款,向用户提供有关软件的支持和维护服务,包括任何更新、不定、增强和漏洞修复。 - -“授权用户” 指在遵循本协议中限制的前提下,被授权代表您使用许可软件的贵方员工和顾问。 - -### 交付和支持 -对于在线试用版许可证, Zilliz 将在客户履行注册和资格认证程序后,立即交付软件使用令牌并安排用户在合适的时间试用软件。 - -对于离线试用版许可证, Zilliz 将在客户履行注册和资格认证程序且提供安装系统硬件信息后,立即交付软件以及任何适用的许可证密钥。 - -### 许可 -对于在线试用版许可证,在您履行本协议的前提下,Zilliz 向您授予有限、非排他性、不可转让的许可证(无再许可权),期限为 Zilliz 与您商定的其他期限,从向您提供许可软件的试用版之日起计算,您可凭此许可证您可以试用 Zilliz 为您提供的 MegaSearch 软件。您在任何时候都不得将许可软件用于任何业务的经营。您不得(并且亦不得允许任何第三方)将任何许可软件用于任何基准测试目的,或应用服务提供商目的、分时或服务部目的,或者任何除本协议所设想的贵方内部评估目的以外的任何目的。Zilliz 可能会自行酌定延长期限。在原期限以后继续使用许可软件,即表示您同意在新期限内继续遵循本协议的条款。 - -对于离线试用版许可证,在您履行本协议的前提下,Zilliz 向您授予有限、非排他性、不可转让的许可证(无再许可权),期限为 Zilliz 与您书面商定的其他期限,从向您提供许可软件的试用版之日起计算,您可凭此许可证在您拥有或控制的且与 Zilliz 协商后,指定的设备上安装和使用仅以目标代码形式呈现的许可软件,但仅限您在内部评估软件之用。您在任何时候都不得将许可软件用于任何业务的经营。您不得(并且亦不得允许任何第三方)将任何许可软件用于任何基准测试目的,或应用服务提供商目的、分时或服务部目的,或者任何除本协议所设想的贵方内部评估目的以外的任何目的。Zilliz 可能会自行酌定延长期限。在原期限以后继续使用许可软件,即表示您同意在新期限内继续遵循本协议的条款。 - -### 限制 -您不得(并且亦不得允许或鼓励任何第三方)全部或部分复制、分发、编制衍生作品、公开展示或公开演示许可软件,或为任何第三方使用或向任何第三方提供许可软件,或代表任何第三方使用许可软件。除非且仅限在适用的法律或第三方许可证不允许此类限制的情况下,您不得(并且亦不得允许任何第三方):(a) 对许可软件或与许可软件有关的任何其他应用程序、软件、文档或数据,或其中任何部分进行反向工程、反编译、反汇编或企图通过其他方式发现源代码、目标代码或底层结构、理念或算法;(b) 干扰或绕过许可软件的任何功能,包括但不限于任何旨在监控您遵守本协议情况的许可证密钥;(c) 出让、出售、出租、许可、再许可或以其他方式转让或企图转让许可软件的权利;(d) 以不符合本协议以及所有适用法律法规(包括但不限于任何适用的隐私、数据保护和知识产权法律)的方式使用任何许可软件;或者 (e) 篡改或删除许可软件上或其中出现的任何版权、商标、专利或其他专有权利通告或标签。您必须在本协议终止或到期后卸载并删除许可软件。您接受许可软件可包含导致许可软件在期限结束时不能正常使用的自动终止功能。 - -### 所有权 -Zilliz 自行(及其许可人(如有))保留与许可软件有关的所有知识产权。许可软件的所有增强、衍生作品和修改,以及您或任何第三方提供的与许可软件有关的任何建议、理念、增强请求、反馈、推荐或其他信息,包括其中所有知识产权,均转让给 Zilliz。您保留您用于许可软件的所有您的保密信息和数据的所有权,并且除依据本协议提供服务这一唯一目的而使用数据外,您的保密信息或数据(下称“您的数据”)的权利并未转移或转让给 Zilliz。许可软件仅被许可,本协议的任何内容均不得解释或阐释为转让或出售 Zilliz 对许可软件的所有权。任何一方均不得质疑对方的知识产权。您不得质疑或造成第三方质疑 Zilliz 知识产权的有效性或强制性。 - -### 保密 - -##### 保密信息 -指一方披露给另一方(“接收方”)且任何一方都将合理预期或认为属于保密或专有信息的,该方拥有权利的任何保密或专有知识、信息、材料或商业秘密,包括但不限于以各种介质形式呈现(包括但不限于口头、书面和电子数据形式)的与业务方法、产品、服务、财务、客户和潜在客户、供应商、定价和费率、成本、费用、营销、技术、财产、规范、人员或组织有关的信息。Zilliz 的保密信息包括所有许可软件、文档以及与之有关的任何其他技术信息。 - -##### 保密 -各接收方:(i) 应对对方(“披露方”)披露的所有保密信息严格保密;(ii) 除因本协议而需要知晓该信息并且受严格程度不低于本协议条款的书面保密义务约束的接收方人员外,未经披露方书面同意不得向任何第三方披露、传播、分发或传输此类保密信息; (iii) 除为了履行其在本协议下的义务的唯一目的外,不得使用该保密信息;并且 (iv) 应当至少以接收方保护类似性质的自有保密信息所采取的相同注意程度保护保密信息,以防止对该保密信息的未经授权的访问、使用、传播或发布,但在任何情况下都不得低于合理的注意程度。接收方如获知该保密信息被未经授权访问、使用、传播或发布,应立即书面通知披露方。 - -##### 强制披露 -在事先书面通知披露方(在法律允许的范围内)后,接收方可以在以下范围内披露披露方的保密信息:(i) 应法律法规要求予以披露;(ii) 应法院或其他政府机构裁定要求予以披露。接收方同意协助披露方(由披露方承担费用)采取一切正当的手段,以限制或阻止披露该保密信息,以及取得对所披露的任何信息的保密待遇。 - -##### 材料的归还 -本协议终止或到期时,或者披露方提前提出书面请求时,接收方将立即(根据披露方的选择)归还或销毁其持有、保管或控制的从披露方收到的所有保密信息(包括所有副本)。应披露方请求,在归还或销毁后,接收方应以书面形式证明已经完成归还或销毁。 - -##### 例外 -保密信息不包含接收方有书面证据证明属于下列任何情况的信息:(i) 接收方已经知晓或后来从第三方收到且不存在保密限制的;或者 (ii) 已经公开或非因接收方过错行为而被公开的。 - -##### 隐私政策 -您自行负责发布并维护一份充分提供所有声明的隐私政策,并取得与使用许可软件以及其他方式相关的收集、使用和披露数据的所有同意,并且将赔偿并使 Zilliz 免受因违反前述条款而导致或引发的损害。您在本协议下不会向 Zilliz 提供任何个人身份识别信息。您对您的数据负责,并且您有义务备份您的所有数据,以防止在使用许可软件之前、期间和之后发生丢失。Zilliz 不对您的数据丢失负责。 - -### 期限与终止 - -##### 期限 -本协议从向您提供许可软件之日起,至期限终止之间持续有效。 - -##### 终止 -Zilliz 可以随时自行酌定向您发出通知后终止本协议。 - -### 您的责任 -您自行负责您的数据的开发、内容、操作、维护和使用。例如,您自行负责下列方面: - -- 您的数据的技术操作,包括确保您对任何服务的调用兼容该服务当时使用的 API。 -- 您的数据对第三方可接受使用政策和法律的遵守。 -- 与您的数据有关任何索赔。 -- 正确受理和处理任何主张您的数据违反其权利的人向您(或您的任何关联人)发出的通知,包括依据《数字千年版权法》发出的通知。 - -您负责恰当配置和使用许可软件,自行采取措施维护您的数据的恰当安全性、保护和备份。此类措施可能包括使用加密技术来保护您的数据以防止未经授权的访问,以及定期存档您的数据。 - -默认情况下,许可软件在提供时将没有主机或网络,这意味着您必须选择要安装软件的主机和网络,并且您自行负责恰当管理、限制和监控相关访问权限和访问控制。 - -许可软件生成的登录凭据和私有密钥仅供您指定的主机使用,您不得向任何其他实体或个人出售、转让或再许可,您不得在任何除了您指定主机外的主机上使用该秘钥。 - -您承认您应当为您的数据实施恰当的保护机制。 \ No newline at end of file diff --git a/docs/PrivacyPolicy.md b/docs/PrivacyPolicy.md deleted file mode 100644 index ee8cb5b57d..0000000000 --- a/docs/PrivacyPolicy.md +++ /dev/null @@ -1,63 +0,0 @@ -# 隐私政策 - -我们重视保护您的私人信息。本隐私声明适用于 Zilliz (上海赜睿信息科技有限公司)拥有和经营的任何网站和产品对数据的收集和使用。使用 Zilliz 的网站和产品即表示您同意本声明所述的数据实践。 - -### 个人信息的收集 -Zilliz 可能会收集您的个人身份识别信息,例如: - -- 姓名 -- 地址 -- 电子邮件地址 -- 电话号码 -- IP 地址 -- 您访问网站的日期和时间 - -请注意,如果您直接通过 Zilliz 的公开消息平台披露个人身份识别信息或个人敏感数据,此信息可能会被其他人收集和使用。 - -Zilliz 建议您查阅从 Zilliz 链接的网站的隐私声明,以了解这些网站如何收集、使用和共享您的信息。 Zilliz 不对除 Zilliz 以外其他公司或网站的隐私声明或其他内容负责。 - - -### 个人信息的使用 -为运营其网站和交付您请求的服务, Zilliz 收集和使用您的个人信息。 - -Zilliz 可能使用您的身份识别信息来为您介绍 Zilliz 及其关联公司提供的其他产品或服务。此外,Zilliz还可能邀请您参加调查,以了解您对当前服务或可能提供的新服务的意见。 - -Zilliz 不会将您的信息出售、出租或出赁给第三方。 - -Zilliz 可能会与受信任的合作伙伴共享您的信息,以帮助执行统计分析、向您发送电子邮件或寄送信件、提供客户支持或安排交付。除向 Zilliz 提供上述服务之外,所有此类第三方均不得出于其他目的使用您的个人信息,且必须维护您信息的机密性。 - -Zilliz 可能会跟踪用户在 Zilliz 访问的网站和网页,以确定最受欢迎的 Zilliz 服务。此数据用于在 Zilliz 根据客户行为所揭示的客户特定兴趣领域来为其提供定制内容和广告。 - -Zilliz 将在不通知您的情况下披露您的个人信息,但仅限于依据法律要求或有充分理由相信披露信息是以下情况所必要:(a) 遵循法令或遵循适用于 Zilliz 或网站的法律程序;(b) 维护和保护 Zilliz 的权利或财产;以及 (c) 在紧急情况下保护 Zilliz 用户或公众的人身安全。 - -### 自动收集的信息 - -Zilliz 可能会自动收集您计算机硬件和软件的相关信息。此信息可能包括:IP 地址、浏览器类型、域名、访问时间以及进站前链接网站的地址。此信息用于运营服务、维护服务质量以及提供关于 Zilliz 网站使用情况的一般统计信息。 - -### COOKIE 的使用 - -Zilliz 网站可能会使用“Cookie”来帮助您个性化自己的在线体验。Cookie 是网页服务器放置在您硬盘上的一个文本文件。Cookie 不能用于运行程序或向您的计算机发送病毒。分配给您的 Cookie 是唯一的,只能由向您发布 Cookie 的域中的 Web 服务器阅读。 - -使用 Cookie 的主要目的之一是提供方便的功能,为您节约时间。使用 Cookie 的目的是告诉 Web 服务器您回到了某个特定的页面。例如,如果您个性化了 Zilliz 页面,或者注册了 Zilliz 网站或服务,Cookie 可帮助 Zilliz 在您再次访问时重新调用您的具体信息。这可以简化您输入个人信息的过程,例如账单地址、收货地址等等。当您再次访问相同的 Zilliz 网站时,可检索您以前提供的信息,以便您轻松使用您自定义的 Zilliz 功能。您可以接受或拒绝 Cookie。大多数 Web 浏览器会自动接受 Cookie,但您通常可以通过修改浏览器设置来拒绝 Cookie。如果您选择拒绝 Cookie,您可能无法真正体验您所访问 Zilliz 服务或网站的交互功能。 - -### 儿童 - -Zilliz 不会在知情的情况下收集十三岁以下儿童的个人身份识别信息。如果您未满十三周岁,您必须取得您父母或监护人的允许方可使用本网站。 - -### 对本声明的修订 - -Zilliz 将不时根据公司和客户的反馈更新本隐私声明。Zilliz 建议您定期查阅本声明,或通过如下地址申请本政策的副本,从而了解 Zilliz 如何保护您的信息。 - -#### 联系信息 - -Zilliz 欢迎您就本隐私声明提出问题或意见。如果您认为 Zilliz 未遵守本声明,或者需要请求修改 Zilliz 持有的您的个人身份识别信息,或者需要行使有关我们如何收集和处理您的个人身份识别信息的选择权,请通过以下方式联系 Zilliz: - -Zilliz - -上海徐汇区桂箐路69号桂箐园28栋6C - -电子邮件地址:info@zilliz.com - -我们将依据相关数据隐私法律的规定,在系统能力范围内,尽商业上合理的努力响应请求。 - -2019 年 5 月 15 日生效 \ No newline at end of file diff --git a/docs/SLA.md b/docs/SLA.md deleted file mode 100644 index dc5c41a12f..0000000000 --- a/docs/SLA.md +++ /dev/null @@ -1,75 +0,0 @@ -# MegaSearch SLA - -### 1. 引言 -本 MegaSearch 服务级别协议(以下简称“服务级别协议”)由 Zilliz 制定。如果我们未能达到和保持本服务级别协议中说明的每种服务的服务级别,则您有资格获得月度服务费用的部分服务费抵扣。在您的协议期间,这些条款都不会做任何变动。如果续展订购,则在续订期限开始时实行的本服务级别协议的版本将适用于整个续订期限。如果对本服务级别协议有任何重大不利变更,我们应至少提前九十(90)天进行通知。 - -### 2. 服务内容 -MegaSearch 服务基于强大的GPU芯片和大规模并行算法,提供针对特征向量和多维度数据的联合查询。用户可以通过调用 MegaSearch 提供的API或者SDK将 MegaSearch 无缝对接到自己的AI预测业务上。 - -### 3. 定义 -3.1 “服务” 指的是 Zilliz 根据本协议向开发者提供的付费服务(未付费情况,不适用于本协议) - -3.2 “索赔” 指客户根据本服务级别协议向Zilliz提交的、有关尚未达到某个服务级别以及客户可获得的服务费抵扣的索赔。 - -3.3 “客户” 指签订本协议的机构。 - -3.4 “客户支持” 指 Zilliz 可由此为客户提供帮助以解决服务问题的服务。 - -3.5 “错误代码”用于指示某项操作出现了问题,例如,5xx 范围内的 HTTP 状态代码。 - -3.6 “事件” 表示导致无法达到服务级别的任何情况。 - -3.7 “管理界面” 指由 Zilliz 提供的 web 界面,客户可以通过该界面来管理 MegaSearch 服务。 - -3.8 “预览版” 指提供用来获得客户反馈的服务或软件的预览版、测试版或其他预发行版。 - -3.9 “服务费抵扣” 表示针对受影响的服务已经证实的服务索赔,返还给客户的月度服务费用的百分比。 - -3.10 “服务级别”指定世纪互联选择遵守并据此衡量其所提供的每种服务的服务级别的标准,具体如下所述。 - -3.11 “服务资源”指某个服务内可供使用的单独资源。 - -3.12 “成功代码”用于指示某项操作已经成功,例如,2xx 范围内的 HTTP 状态代码。 - -3.13 “支持时段”指支持某个服务功能或者支持与某个单独产品或服务兼容的时间范围。 - -### 4. 服务赔偿 -#### 4.1 赔偿范围 - -因 MegaSearch 设计缺陷导致用户所购买的服务无法正常使用,Zilliz 将对不可用时间进行赔偿,但不包括以下原因所导致的服务不可用时间: - -4.1.1 Zilliz 预先通知用户后进行系统维护所引起的,包括割接、维修、升级和模拟故障演练。 - -4.1.2 用户的应用程序或数据信息受到黑客攻击而引起的。 - -4.1.3 用户维护不当或保密不当致使数据、口令、密码等丢失或泄漏所引起的。 - -4.1.4 用户的疏忽或由用户授权的操作所引起的。 - -4.1.5 不可抗力以及意外事件引起的。 - -4.1.6 其他非 Zilliz 原因所造成的不可用。 - -#### 4.2 服务费抵扣 - -4.2.1 针对所描述的每一种服务,下文介绍了服务费抵扣的金额和计算方法。 - -4.2.2 服务费抵扣是客户针对未能达到任何服务级别的唯一且排他性的救济。 - -4.2.3 在任何情况下,任何帐单月份内提供的与特定服务或服务资源相关的服务费抵扣都不得超过客户在该帐单月份内用于该服务或服务资源(如果有)的月度服务费用。 - -#### 4.3 赔偿方案 - -4.3.1 “最大可用分钟数” 是指在一个帐单月份期间,用户可用 MegaSearch 的总分钟数。 - -4.3.2 “停机时间” 是指在一个账单月份期间,MegaSearch 的总累计分钟数。当在某一分钟内,客户所有试图与 MegaSearch 建立连接的连续尝试均失败,则将会视该分钟内该数据库不可用。 - -4.3.4 每月正常服务时间百分比计算公式: 每月正常服务时间百分比 % = (最大可用分钟数 − 停机时间) ÷ 最大可用分钟数 - -4.3.5 以下服务级别和服务费抵扣适用于客户对 MegaSearch 服务的使用: - -| 每月正常服务时间百分比 | 服务费抵扣 | -| ---- | ---- | -| <99.9% | 10% | -| <99% | 25% | - diff --git a/environment.yaml b/environment.yaml deleted file mode 100644 index ae4ddba205..0000000000 --- a/environment.yaml +++ /dev/null @@ -1,71 +0,0 @@ -name: vec_engine -channels: - - pytorch - - defaults -dependencies: - - blas=1.0=mkl - - ca-certificates=2019.1.23=0 - - certifi=2019.3.9=py36_0 - - click=7.0=py36_0 - - flask=1.0.2=py36_1 - - intel-openmp=2019.1=144 - - itsdangerous=1.1.0=py36_0 - - jinja2=2.10=py36_0 - - libedit=3.1.20181209=hc058e9b_0 - - libffi=3.2.1=hd88cf55_4 - - libgcc-ng=8.2.0=hdf63c60_1 - - libgfortran-ng=7.3.0=hdf63c60_0 - - libstdcxx-ng=8.2.0=hdf63c60_1 - - markupsafe=1.1.1=py36h7b6447c_0 - - mkl=2019.1=144 - - mkl_fft=1.0.10=py36ha843d7b_0 - - mkl_random=1.0.2=py36hd81dba3_0 - - ncurses=6.1=he6710b0_1 - - numpy=1.16.2=py36h7e9f1db_0 - - numpy-base=1.16.2=py36hde5b4d6_0 - - openssl=1.1.1b=h7b6447c_1 - - pip=19.0.3=py36_0 - - python=3.6.8=h0371630_0 - - readline=7.0=h7b6447c_5 - - setuptools=40.8.0=py36_0 - - sqlite=3.27.2=h7b6447c_0 - - tk=8.6.8=hbc83047_0 - - werkzeug=0.14.1=py36_0 - - wheel=0.33.1=py36_0 - - xz=5.2.4=h14c3975_4 - - zlib=1.2.11=h7b6447c_3 - - cuda90=1.0=h6433d27_0 - - faiss-gpu=1.5.0=py36_cuda9.0_1 - - pip: - - aniso8601==6.0.0 - - atomicwrites==1.3.0 - - attrs==19.1.0 - - chardet==3.0.4 - - environs==4.1.0 - - faiss==0.1 - - flask-httpauth==3.2.4 - - flask-profiler==1.8.1 - - flask-restful==0.3.7 - - flask-script==2.0.6 - - flask-sqlalchemy==2.3.2 - - get==2019.3.22 - - idna==2.8 - - marshmallow==2.19.1 - - more-itertools==6.0.0 - - pluggy==0.9.0 - - post==2019.3.22 - - public==2019.3.22 - - py==1.8.0 - - pymysql==0.9.3 - - pytest==4.3.1 - - python-dotenv==0.10.1 - - pytz==2018.9 - - query-string==2019.3.22 - - request==2019.3.22 - - requests==2.21.0 - - simplejson==3.16.0 - - six==1.12.0 - - sqlalchemy==1.3.1 - - urllib3==1.24.1 -prefix: /home/zilliz/opt/app/miniconda3/envs/vec_engine - diff --git a/install/miniconda.sh.REMOVED.git-id b/install/miniconda.sh.REMOVED.git-id deleted file mode 100644 index 946315ee3b..0000000000 --- a/install/miniconda.sh.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -58cc8994e72d5852a06f40ca7222f5751f773473 \ No newline at end of file diff --git a/pyengine/engine/.env.example b/pyengine/engine/.env.example deleted file mode 100644 index f36c2acd02..0000000000 --- a/pyengine/engine/.env.example +++ /dev/null @@ -1,8 +0,0 @@ -DEBUG=True -SQLALCHEMY_TRACK_MODIFICATIONS=False -SECRET_KEY=test -SQLALCHEMY_DATABASE_URI=mysql+pymysql://vecwise@127.0.0.1:3306/vecdata -PROFILER_STORAGE_DB_URL=mysql+pymysql://vecwise@127.0.0.1:3306/vecdata - -ROW_LIMIT=10000000 -DATABASE_DIRECTORY=/tmp diff --git a/pyengine/engine/__init__.py b/pyengine/engine/__init__.py deleted file mode 100644 index 88609494d5..0000000000 --- a/pyengine/engine/__init__.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- coding: utf-8 -*- -from engine import settings -from flask import Flask -from flask_sqlalchemy import SQLAlchemy -import flask_profiler - -app = Flask(__name__) -app.config.from_object(settings) -app.config['flask_profiler'] = settings.FLASK_PROFILER_CONFIG - -#创建数据库对象 -print ("Create database instance") -db = SQLAlchemy(app) - -from engine.model.group_table import GroupTable -from engine.model.file_table import FileTable - -from engine.controller import views - -flask_profiler.init_app(app) diff --git a/pyengine/engine/controller/__init__.py b/pyengine/engine/controller/__init__.py deleted file mode 100644 index 8b13789179..0000000000 --- a/pyengine/engine/controller/__init__.py +++ /dev/null @@ -1 +0,0 @@ - diff --git a/pyengine/engine/controller/error_code.py b/pyengine/engine/controller/error_code.py deleted file mode 100644 index 4dc761e5e1..0000000000 --- a/pyengine/engine/controller/error_code.py +++ /dev/null @@ -1,6 +0,0 @@ - -class ErrorCode(object): - SUCCESS_CODE = 0 - FAULT_CODE = 1 - GROUP_NOT_EXIST = 2 - ALREADY_EXIST = 3 \ No newline at end of file diff --git a/pyengine/engine/controller/group_handler.py b/pyengine/engine/controller/group_handler.py deleted file mode 100644 index 42f609c7b4..0000000000 --- a/pyengine/engine/controller/group_handler.py +++ /dev/null @@ -1,28 +0,0 @@ -import os, shutil -from engine.settings import DATABASE_DIRECTORY - -class GroupHandler(object): - - @staticmethod - def CreateGroupDirectory(group_id): - path = GroupHandler.GetGroupDirectory(group_id) - path = path.strip() - path=path.rstrip("\\") - if not os.path.exists(path): - os.makedirs(path) - return path - - @staticmethod - def DeleteGroupDirectory(group_id): - path = GroupHandler.GetGroupDirectory(group_id) - path = path.strip() - path=path.rstrip("\\") - if os.path.exists(path): - shutil.rmtree(path) - return path - - @staticmethod - def GetGroupDirectory(group_id): - print("GetGroupDirectory, Path: ", DATABASE_DIRECTORY + '/' + group_id) - return DATABASE_DIRECTORY + '/' + group_id - diff --git a/pyengine/engine/controller/index_file_handler.py b/pyengine/engine/controller/index_file_handler.py deleted file mode 100644 index e66bbe8cd7..0000000000 --- a/pyengine/engine/controller/index_file_handler.py +++ /dev/null @@ -1,15 +0,0 @@ - -class IndexFileHandler(object): - - @staticmethod - def Create(filename, type): - # type means: csv, parquet - pass - - @staticmethod - def Read(filename, type): - pass - - @staticmethod - def Append(filename, type, record): - pass \ No newline at end of file diff --git a/pyengine/engine/controller/meta_manager.py b/pyengine/engine/controller/meta_manager.py deleted file mode 100644 index dcfabc78a8..0000000000 --- a/pyengine/engine/controller/meta_manager.py +++ /dev/null @@ -1,60 +0,0 @@ -from engine.model.group_table import GroupTable -from engine.model.file_table import FileTable -from engine.controller.error_code import ErrorCode -from engine import db - -class MetaManager(object): - - @staticmethod - def Sync(): - db.session.commit() - - @staticmethod - def AddGroup(group_name, dimension): - new_group = GroupTable(group_name, dimension) - - # add into database - db.session.add(new_group) - - return ErrorCode.SUCCESS_CODE, group_name - - @staticmethod - def GetGroup(group_name): - group = GroupTable.query.filter(GroupTable.group_name==group_name).first() - if group: - return ErrorCode.SUCCESS_CODE, group - else: - return ErrorCode.FAULT_CODE, None - - @staticmethod - def GetAllGroup(): - groups = GroupTable.query.all() - return groups - - @staticmethod - def DeleteGroup(group): - db.session.delete(group) - - @staticmethod - def DeleteGroupFiles(group_name): - records = FileTable.query.filter(FileTable.group_name == group_name).all() - for record in records: - # print("record.group_name: ", record.group_name) - db.session.delete(record) - - @staticmethod - def UpdateGroup(group_name, data): - GroupTable.query.filter(GroupTable.group_name==group_name).update(data) - - - @staticmethod - def GetAllRawFiles(group_name): - FileTable.query.filter(FileTable.group_name == group_name and FileTable.type == 'raw') - - @staticmethod - def CreateRawFile(group_name, filename): - db.session.add(FileTable(group_name, filename, 'raw', 0)) - - @staticmethod - def UpdateFile(filename, data): - FileTable.query.filter(FileTable.filename == filename).update(data) diff --git a/pyengine/engine/controller/raw_file_handler.py b/pyengine/engine/controller/raw_file_handler.py deleted file mode 100644 index 5342c765d5..0000000000 --- a/pyengine/engine/controller/raw_file_handler.py +++ /dev/null @@ -1,18 +0,0 @@ - -class RawFileHandler(object): - @staticmethod - def Create(filename, type): - # type means: csv, parquet - pass - - @staticmethod - def Read(filename, type): - pass - - @staticmethod - def Append(filename, type, record): - pass - - @staticmethod - def GetRawFilename(group_id): - return group_id + '.raw' \ No newline at end of file diff --git a/pyengine/engine/controller/scheduler.py b/pyengine/engine/controller/scheduler.py deleted file mode 100644 index 48b7081133..0000000000 --- a/pyengine/engine/controller/scheduler.py +++ /dev/null @@ -1,71 +0,0 @@ -from engine.retrieval import search_index -from engine.ingestion import build_index -from engine.ingestion import serialize -import numpy as np - - -class Singleton(type): - _instances = {} - - def __call__(cls, *args, **kwargs): - if cls not in cls._instances: - cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs) - return cls._instances[cls] - - -class Scheduler(metaclass=Singleton): - def search(self, index_file_key, vectors, k): - # assert index_file_key - # assert vectors - assert k != 0 - - query_vectors = serialize.to_array(vectors) - return self.__scheduler(index_file_key, query_vectors, k) - - def __scheduler(self, index_data_key, vectors, k): - result_list = [] - - if 'raw' in index_data_key: - raw_vectors = index_data_key['raw'] - raw_vector_ids = index_data_key['raw_id'] - d = index_data_key['dimension'] - index_builder = build_index.FactoryIndex() - index = index_builder().build(d, raw_vectors, raw_vector_ids) - searcher = search_index.FaissSearch(index) - result_list.append(searcher.search_by_vectors(vectors, k)) - - if 'index' in index_data_key: - index_data_list = index_data_key['index'] - for key in index_data_list: - index = get_index_data(key) - searcher = search_index.FaissSearch(index) - result_list.append(searcher.search_by_vectors(vectors, k)) - - if len(result_list) == 1: - return result_list[0].vectors[0].tolist() # TODO(linxj): fix hard code - - return result_list; # TODO(linxj): add topk - - # d_list = np.array([]) - # v_list = np.array([]) - # for result in result_list: - # rd = result.distance - # rv = result.vectors - # - # td_list = np.array([]) - # tv_list = np.array([]) - # for d, v in zip(rd, rv): - # td_list = np.append(td_list, d) - # tv_list = np.append(tv_list, v) - # d_list = np.add(d_list, td_list) - # v_list = np.add(v_list, td_list) - # - # print(d_list) - # print(v_list) - # result_map = [d_list, v_list] - # top_k_result = search_index.top_k(result_map, k) - # return top_k_result - - -def get_index_data(key): - return serialize.read_index(key) diff --git a/pyengine/engine/controller/storage_manager.py b/pyengine/engine/controller/storage_manager.py deleted file mode 100644 index aa0ee19f4a..0000000000 --- a/pyengine/engine/controller/storage_manager.py +++ /dev/null @@ -1,29 +0,0 @@ -import os, shutil -from engine.settings import DATABASE_DIRECTORY - -class StorageManager(object): - @staticmethod - def AddGroup(group_name): - path = StorageManager.GetGroupDirectory(group_name) - path = path.strip() - path=path.rstrip("\\") - if not os.path.exists(path): - os.makedirs(path) - - @staticmethod - def GetGroupDirectory(group_name): - return DATABASE_DIRECTORY + '/' + group_name - - @staticmethod - def DeleteGroup(group_id): - path = StorageManager.GetGroupDirectory(group_id) - path = path.strip() - path=path.rstrip("\\") - if os.path.exists(path): - shutil.rmtree(path) - - def Read(): - pass - - def Write(): - pass diff --git a/pyengine/engine/controller/tests/__init__.py b/pyengine/engine/controller/tests/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/pyengine/engine/controller/tests/conftest.py b/pyengine/engine/controller/tests/conftest.py deleted file mode 100644 index 3528621769..0000000000 --- a/pyengine/engine/controller/tests/conftest.py +++ /dev/null @@ -1,17 +0,0 @@ -import pytest -from flask import Flask -from engine import app - -@pytest.fixture(scope='module') -def test_client(): - # Flask provides a way to test your application by exposing the Werkzeug test Client - # and handling the context locals for you. - testing_client = app.test_client() - - # Establish an application context before running the tests. - ctx = app.app_context() - ctx.push() - - yield testing_client # this is where the testing happens! - - ctx.pop() \ No newline at end of file diff --git a/pyengine/engine/controller/tests/test_group_handler.py b/pyengine/engine/controller/tests/test_group_handler.py deleted file mode 100644 index c123409e7c..0000000000 --- a/pyengine/engine/controller/tests/test_group_handler.py +++ /dev/null @@ -1,36 +0,0 @@ -from engine.controller.group_handler import GroupHandler -from engine.settings import DATABASE_DIRECTORY -import pytest -import os -import logging - -logging.basicConfig(level = logging.INFO,format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s') -logger = logging.getLogger(__name__) - -class TestGroupHandler: - def test_get_group(self): - group_path = GroupHandler.GetGroupDirectory('test_group') - verified_path = DATABASE_DIRECTORY + '/' + 'test_group' - logger.debug(group_path) - assert group_path == verified_path - - def test_create_group(self): - group_path = GroupHandler.CreateGroupDirectory('test_group') - if os.path.exists(group_path): - assert True - else: - assert False - - def test_delete_group(self): - group_path = GroupHandler.GetGroupDirectory('test_group') - if os.path.exists(group_path): - assert True - GroupHandler.DeleteGroupDirectory('test_group') - if os.path.exists(group_path): - assert False - else: - assert True - else: - assert False - - diff --git a/pyengine/engine/controller/tests/test_scheduler.py b/pyengine/engine/controller/tests/test_scheduler.py deleted file mode 100644 index d3bd2a4e95..0000000000 --- a/pyengine/engine/controller/tests/test_scheduler.py +++ /dev/null @@ -1,70 +0,0 @@ -from ..scheduler import * - -import unittest -import faiss -import numpy as np - - -class TestScheduler(unittest.TestCase): - def test_single_query(self): - d = 64 - nb = 10000 - nq = 1 - nt = 5000 - xt, xb, xq = get_dataset(d, nb, nt, nq) - ids_xb = np.arange(xb.shape[0]) - ids_xt = np.arange(xt.shape[0]) - file_name = "/tmp/tempfile_1" - - index = faiss.IndexFlatL2(d) - index2 = faiss.IndexIDMap(index) - index2.add_with_ids(xb, ids_xb) - Dref, Iref = index.search(xq, 5) - faiss.write_index(index, file_name) - - scheduler_instance = Scheduler() - - # query 1 - query_index = dict() - query_index['index'] = [file_name] - vectors = scheduler_instance.search(query_index, vectors=xq, k=5) - assert np.all(vectors == Iref) - - # query 2 - query_index.clear() - query_index['raw'] = xb - query_index['raw_id'] = ids_xb - query_index['dimension'] = d - vectors = scheduler_instance.search(query_index, vectors=xq, k=5) - assert np.all(vectors == Iref) - - # query 3 - # TODO(linxj): continue... - # query_index.clear() - # query_index['raw'] = xt - # query_index['raw_id'] = ids_xt - # query_index['dimension'] = d - # query_index['index'] = [file_name] - # vectors = scheduler_instance.search(query_index, vectors=xq, k=5) - # assert np.all(vectors == Iref) - - -def get_dataset(d, nb, nt, nq): - """A dataset that is not completely random but still challenging to - index - """ - d1 = 10 # intrinsic dimension (more or less) - n = nb + nt + nq - rs = np.random.RandomState(1338) - x = rs.normal(size=(n, d1)) - x = np.dot(x, rs.rand(d1, d)) - # now we have a d1-dim ellipsoid in d-dimensional space - # higher factor (>4) -> higher frequency -> less linear - x = x * (rs.rand(d) * 4 + 0.1) - x = np.sin(x) - x = x.astype('float32') - return x[:nt], x[nt:-nq], x[-nq:] - - -if __name__ == "__main__": - unittest.main() diff --git a/pyengine/engine/controller/tests/test_vector_engine.py b/pyengine/engine/controller/tests/test_vector_engine.py deleted file mode 100644 index eb5193cd05..0000000000 --- a/pyengine/engine/controller/tests/test_vector_engine.py +++ /dev/null @@ -1,107 +0,0 @@ -from engine.controller.vector_engine import VectorEngine -from engine.settings import DATABASE_DIRECTORY -from engine.controller.error_code import ErrorCode -from flask import jsonify -import pytest -import os -import numpy as np -import logging - -logging.basicConfig(level = logging.INFO,format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s') -logger = logging.getLogger(__name__) - -class TestVectorEngine: - def setup_class(self): - self.__vectors = [[1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8] for _ in range(10) ] - self.__vector = [1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8] - self.__limit = 1 - - - def teardown_class(self): - pass - - def test_group(self): - # Make sure there is no group - code, group_id = VectorEngine.DeleteGroup('test_group') - assert code == ErrorCode.SUCCESS_CODE - assert group_id == 'test_group' - - # Add a group - code, group_id = VectorEngine.AddGroup('test_group', 8) - assert code == ErrorCode.SUCCESS_CODE - assert group_id == 'test_group' - - # Check the group existing - code, group_id = VectorEngine.GetGroup('test_group') - assert code == ErrorCode.SUCCESS_CODE - assert group_id == 'test_group' - - # Check the group list - code, group_list = VectorEngine.GetGroupList() - assert code == ErrorCode.SUCCESS_CODE - assert group_list == [{'group_name': 'test_group', 'file_number': 0}] - - # Add Vector for not exist group - code, vector_id = VectorEngine.AddVector('not_exist_group', self.__vectors) - assert code == VectorEngine.GROUP_NOT_EXIST - assert vector_id == 'invalid' - - # Add vector for exist group - code, vector_id = VectorEngine.AddVector('test_group', self.__vectors) - assert code == ErrorCode.SUCCESS_CODE - print(vector_id) - assert vector_id == ['test_group.0', 'test_group.1', 'test_group.2', 'test_group.3', 'test_group.4', 'test_group.5', 'test_group.6', 'test_group.7', 'test_group.8', 'test_group.9'] - - # Check search vector interface - code, vector_id = VectorEngine.SearchVector('test_group', self.__vector, self.__limit) - assert code == ErrorCode.SUCCESS_CODE - assert vector_id == ['test_group.0'] - - # Check create index interface - code = VectorEngine.CreateIndex('test_group') - assert code == ErrorCode.SUCCESS_CODE - - # Remove the group - code, group_id = VectorEngine.DeleteGroup('test_group') - assert code == ErrorCode.SUCCESS_CODE - assert group_id == 'test_group' - - # Check the group is disppeared - code, group_id = VectorEngine.GetGroup('test_group') - assert code == VectorEngine.FAULT_CODE - assert group_id == 'test_group' - - # Check SearchVector interface - code, vector_ids = VectorEngine.SearchVector('test_group', self.__vector, self.__limit) - assert code == VectorEngine.GROUP_NOT_EXIST - assert vector_ids == {} - - # Create Index for not exist group id - code = VectorEngine.CreateIndex('test_group') - assert code == VectorEngine.GROUP_NOT_EXIST - - # Clear raw file - code = VectorEngine.ClearRawFile('test_group') - assert code == ErrorCode.SUCCESS_CODE - - def test_raw_file(self): - filename = VectorEngine.InsertVectorIntoRawFile('test_group', 'test_group.raw', self.__vector, 0) - assert filename == 'test_group.raw' - - expected_list = [self.__vector] - vector_list, vector_id_list = VectorEngine.GetVectorListFromRawFile('test_group', filename) - - - print('expected_list: ', expected_list) - print('vector_list: ', vector_list) - print('vector_id_list: ', vector_id_list) - - expected_list = np.asarray(expected_list).astype('float32') - assert np.all(vector_list == expected_list) - - code = VectorEngine.ClearRawFile('test_group') - assert code == ErrorCode.SUCCESS_CODE - - - - diff --git a/pyengine/engine/controller/tests/test_views.py b/pyengine/engine/controller/tests/test_views.py deleted file mode 100644 index e933470b69..0000000000 --- a/pyengine/engine/controller/tests/test_views.py +++ /dev/null @@ -1,82 +0,0 @@ -from engine.controller.vector_engine import VectorEngine -from engine.settings import DATABASE_DIRECTORY -from engine import app -from flask import jsonify -import pytest -import os -import logging -import json - -logging.basicConfig(level = logging.INFO,format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s') -logger = logging.getLogger(__name__) - -class TestViews: - HEADERS = {'Content-Type': 'application/json'} - - def loads(self, resp): - return json.loads(resp.data.decode()) - - def test_group(self, test_client): - data = {"dimension": 10} - - resp = test_client.get('/vector/group/6', headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 1 - - resp = test_client.post('/vector/group/6', data=json.dumps(data), headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - - resp = test_client.get('/vector/group/6', headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - - # GroupList - resp = test_client.get('/vector/group', headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - assert self.loads(resp)['group_list'] == [{'file_number': 0, 'group_name': '6'}] - - resp = test_client.delete('/vector/group/6', headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - - - def test_vector(self, test_client): - dimension = {"dimension": 8} - resp = test_client.post('/vector/group/6', data=json.dumps(dimension), headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - - vector = {"vector": [[1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8]]} - resp = test_client.post('/vector/add/6', data=json.dumps(vector), headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - - vector = {"vector": [[1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8]]} - resp = test_client.post('/vector/add/6', data=json.dumps(vector), headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - - vector = {"vector": [[1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8], [1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8], [1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8]]} - resp = test_client.post('/vector/add/6', data=json.dumps(vector), headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - - resp = test_client.post('/vector/index/6', headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - - limit = {"vector": [1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8], "limit": 1} - resp = test_client.get('/vector/search/6', data=json.dumps(limit), headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - assert self.loads(resp)['vector_id'] == ['6.0'] - - resp = test_client.delete('/vector/group/6', headers = TestViews.HEADERS) - assert resp.status_code == 200 - assert self.loads(resp)['code'] == 0 - - - - diff --git a/pyengine/engine/controller/vector_engine.py b/pyengine/engine/controller/vector_engine.py deleted file mode 100644 index 88a44f6ced..0000000000 --- a/pyengine/engine/controller/vector_engine.py +++ /dev/null @@ -1,243 +0,0 @@ -from engine.model.group_table import GroupTable -from engine.model.file_table import FileTable -from engine.controller.raw_file_handler import RawFileHandler -from engine.controller.group_handler import GroupHandler -from engine.controller.index_file_handler import IndexFileHandler -from engine.settings import ROW_LIMIT -from flask import jsonify -from engine.ingestion import build_index -from engine.controller.scheduler import Scheduler -from engine.ingestion import serialize -from engine.controller.meta_manager import MetaManager -from engine.controller.error_code import ErrorCode -from engine.controller.storage_manager import StorageManager -from datetime import date -import sys, os - -class VectorEngine(object): - group_vector_dict = None - group_vector_id_dict = None - SUCCESS_CODE = 0 - FAULT_CODE = 1 - GROUP_NOT_EXIST = 2 - - @staticmethod - def AddGroup(group_name, dimension): - error, group = MetaManager.GetGroup(group_name) - if error == ErrorCode.SUCCESS_CODE: - return ErrorCode.FAULT_CODE, group_name - else: - StorageManager.AddGroup(group_name) - MetaManager.AddGroup(group_name, dimension) - MetaManager.Sync() - return ErrorCode.SUCCESS_CODE, group_name - - - @staticmethod - def GetGroup(group_name): - error, _ = MetaManager.GetGroup(group_name) - return error, group_name - - @staticmethod - def DeleteGroup(group_name): - group = GroupTable.query.filter(GroupTable.group_name==group_name).first() - if(group): - MetaManager.DeleteGroup(group) - StorageManager.DeleteGroup(group_name) - MetaManager.DeleteGroupFiles(group_name) - MetaManager.Sync() - return VectorEngine.SUCCESS_CODE, group_name - else: - return VectorEngine.SUCCESS_CODE, group_name - - - @staticmethod - def GetGroupList(): - groups = MetaManager.GetAllGroup() - group_list = [] - for group_tuple in groups: - group_item = {} - group_item['group_name'] = group_tuple.group_name - group_item['file_number'] = 0 - group_list.append(group_item) - - return VectorEngine.SUCCESS_CODE, group_list - - @staticmethod - def AddVectorToNewFile(group_name): - pass - - @staticmethod - def BuildVectorIndex(group_name, raw_filename, dimension): - # Build index - raw_vector_array, raw_vector_id_array = VectorEngine.GetVectorListFromRawFile(group_name) - - # create index - index_builder = build_index.FactoryIndex() - index = index_builder().build(dimension, raw_vector_array, raw_vector_id_array) - - # TODO(jinhai): store index into Cache - index_filename = raw_filename + '_index' - serialize.write_index(file_name=index_filename, index=index) - - UpdateFile(raw_filename, {'row_number': ROW_LIMIT, 'type': 'index', 'filename': index_filename}) - - @staticmethod - def AddVector(group_name, vectors): - print(group_name, vectors) - error, group = MetaManager.GetGroup(group_name) - if error == VectorEngine.FAULT_CODE: - return VectorEngine.GROUP_NOT_EXIST, 'invalid' - - # first raw file - raw_filename = str(group.file_number) - files = MetaManager.GetAllRawFiles(group_name) - - current_raw_row_number = 0 - current_raw_file = None - if files != None: - for file in files: - if file.filename == raw_filename: - current_raw_file = file - current_raw_row_number = file.row_number - print(raw_filename) - elif file.type == 'raw': - BuildVectorIndex(group_name, file.filename, group.dimension) - else: - pass - else: - pass - - vector_str_list = [] - - # Verify if the row number + incoming row > limit - incoming_row_number = len(vectors) - - start_row_index = 0 - total_row_number = group.row_number - table_row_number = current_raw_row_number - if current_raw_row_number + incoming_row_number > ROW_LIMIT: - # Insert into exist raw file - start_row_index = ROW_LIMIT - current_raw_row_number - - for i in range(0, start_row_index, 1): - total_row_number += 1 - vector_id = total_row_number - VectorEngine.InsertVectorIntoRawFile(group_name, raw_filename, vectors[i], vector_id) - ++ table_row_number - vector_str_list.append(group_name + '.' + str(vector_id)) - - BuildVectorIndex(group_name, raw_filename, group.dimension) - - # create new raw file name - raw_filename = str(group.file_number + 1) - table_row_number = 0 - current_raw_file = None - - # If no raw file - if current_raw_file == None: - # update file table - MetaManager.CreateRawFile(group_name, raw_filename) - - # 1. update db on file number and row number - new_group_file_number = group.file_number + 1 - new_group_row_number = int(group.row_number) + incoming_row_number - start_row_index - MetaManager.UpdateGroup(group_name, {'file_number': new_group_file_number, 'row_number': new_group_row_number}) - - # 2. store vector into raw files - for i in range (start_row_index, incoming_row_number, 1): - vector_id = total_row_number - total_row_number += 1 - VectorEngine.InsertVectorIntoRawFile(group_name, raw_filename, vectors[i], vector_id) - ++ table_row_number - vector_str_list.append(group_name + '.' + str(vector_id)) - - MetaManager.UpdateFile(raw_filename, {'row_number': table_row_number}) - - MetaManager.UpdateGroup(group_name, {'row_number': total_row_number}) - # 3. sync - MetaManager.Sync() - return VectorEngine.SUCCESS_CODE, vector_str_list - - - @staticmethod - def SearchVector(group_id, vector, limit): - # Check the group exist - code, _ = VectorEngine.GetGroup(group_id) - if code == VectorEngine.FAULT_CODE: - return VectorEngine.GROUP_NOT_EXIST, {} - - group = GroupTable.query.filter(GroupTable.group_name == group_id).first() - # find all files - files = FileTable.query.filter(FileTable.group_name == group_id).all() - index_keys = [ i.filename for i in files if i.type == 'index' ] - index_map = {} - index_map['index'] = index_keys - index_map['raw'], index_map['raw_id'] = VectorEngine.GetVectorListFromRawFile(group_id, "fakename") #TODO: pass by key, get from storage - index_map['dimension'] = group.dimension - - scheduler_instance = Scheduler() - vectors = [] - vectors.append(vector) - result = scheduler_instance.search(index_map, vectors, limit) - - vector_ids_str = [] - for int_id in result: - vector_ids_str.append(group_id + '.' + str(int_id)) - - return VectorEngine.SUCCESS_CODE, vector_ids_str - - - @staticmethod - def CreateIndex(group_id): - # Check the group exist - code, _ = VectorEngine.GetGroup(group_id) - if code == VectorEngine.FAULT_CODE: - return VectorEngine.GROUP_NOT_EXIST - - # create index - file = FileTable.query.filter(FileTable.group_name == group_id).filter(FileTable.type == 'raw').first() - path = GroupHandler.GetGroupDirectory(group_id) + '/' + file.filename - print('Going to create index for: ', path) - return VectorEngine.SUCCESS_CODE - - - @staticmethod - def InsertVectorIntoRawFile(group_id, filename, vector, vector_id): - # print(sys._getframe().f_code.co_name, group_id, vector) - # path = GroupHandler.GetGroupDirectory(group_id) + '/' + filename - if VectorEngine.group_vector_dict is None: - # print("VectorEngine.group_vector_dict is None") - VectorEngine.group_vector_dict = dict() - - if VectorEngine.group_vector_id_dict is None: - VectorEngine.group_vector_id_dict = dict() - - if not (group_id in VectorEngine.group_vector_dict): - VectorEngine.group_vector_dict[group_id] = [] - - if not (group_id in VectorEngine.group_vector_id_dict): - VectorEngine.group_vector_id_dict[group_id] = [] - - VectorEngine.group_vector_dict[group_id].append(vector) - VectorEngine.group_vector_id_dict[group_id].append(vector_id) - - # print('InsertVectorIntoRawFile: ', VectorEngine.group_vector_dict[group_id], VectorEngine.group_vector_id_dict[group_id]) - print("cache size: ", len(VectorEngine.group_vector_dict[group_id])) - - return filename - - - @staticmethod - def GetVectorListFromRawFile(group_id, filename="todo"): - # print("GetVectorListFromRawFile, vectors: ", serialize.to_array(VectorEngine.group_vector_dict[group_id])) - # print("GetVectorListFromRawFile, vector_ids: ", serialize.to_int_array(VectorEngine.group_vector_id_dict[group_id])) - return serialize.to_array(VectorEngine.group_vector_dict[group_id]), serialize.to_int_array(VectorEngine.group_vector_id_dict[group_id]) - - @staticmethod - def ClearRawFile(group_id): - print("VectorEngine.group_vector_dict: ", VectorEngine.group_vector_dict) - del VectorEngine.group_vector_dict[group_id] - del VectorEngine.group_vector_id_dict[group_id] - return VectorEngine.SUCCESS_CODE - diff --git a/pyengine/engine/controller/views.py b/pyengine/engine/controller/views.py deleted file mode 100644 index 6848133a35..0000000000 --- a/pyengine/engine/controller/views.py +++ /dev/null @@ -1,88 +0,0 @@ -from flask import Flask, jsonify, request -from flask_restful import Resource, Api -from engine import app, db -from engine.model.group_table import GroupTable -from engine.controller.vector_engine import VectorEngine -import json - -# app = Flask(__name__) -api = Api(app) - - -from flask_restful import reqparse -from flask_restful import request -class Vector(Resource): - def __init__(self): - self.__parser = reqparse.RequestParser() - self.__parser.add_argument('vector', type=list, action='append', location=['json']) - - def post(self, group_id): - args = self.__parser.parse_args() - vector = args['vector'] - code, vector_id = VectorEngine.AddVector(group_id, vector) - return jsonify({'code': code, 'vector_id': vector_id}) - - -class VectorSearch(Resource): - def __init__(self): - self.__parser = reqparse.RequestParser() - self.__parser.add_argument('vector', type=float, action='append', location=['json']) - self.__parser.add_argument('limit', type=int, location=['json']) - - def get(self, group_id): - args = self.__parser.parse_args() - print('VectorSearch vector: ', args['vector']) - print('limit: ', args['limit']) - # go to search every thing - code, vector_id = VectorEngine.SearchVector(group_id, args['vector'], args['limit']) - print('vector_id: ', vector_id) - return jsonify({'code': code, 'vector_id': vector_id}) - #return jsonify(}) - - -class Index(Resource): - def __init__(self): - self.__parser = reqparse.RequestParser() - # self.__parser.add_argument('group_id', type=str) - - def post(self, group_id): - code = VectorEngine.CreateIndex(group_id) - return jsonify({'code': code}) - - -class Group(Resource): - def __init__(self): - self.__parser = reqparse.RequestParser() - self.__parser.add_argument('group_id', type=str) - self.__parser.add_argument('dimension', type=int, location=['json']) - - def post(self, group_id): - args = self.__parser.parse_args() - dimension = args['dimension'] - code, group_id = VectorEngine.AddGroup(group_id, dimension) - return jsonify({'code': code, 'group': group_id, 'filenumber': 0}) - - def get(self, group_id): - code, group_id = VectorEngine.GetGroup(group_id) - return jsonify({'code': code, 'group': group_id, 'filenumber': 0}) - - def delete(self, group_id): - code, group_id = VectorEngine.DeleteGroup(group_id) - return jsonify({'code': code, 'group': group_id, 'filenumber': 0}) - - -class GroupList(Resource): - def get(self): - code, group_list = VectorEngine.GetGroupList() - return jsonify({'code': code, 'group_list': group_list}) - - -api.add_resource(Vector, '/vector/add/') -api.add_resource(Group, '/vector/group/') -api.add_resource(GroupList, '/vector/group') -api.add_resource(Index, '/vector/index/') -api.add_resource(VectorSearch, '/vector/search/') - - -# if __name__ == '__main__': -# app.run() diff --git a/pyengine/engine/ingestion/__init__.py b/pyengine/engine/ingestion/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/pyengine/engine/ingestion/build_index.py b/pyengine/engine/ingestion/build_index.py deleted file mode 100644 index bf363fc109..0000000000 --- a/pyengine/engine/ingestion/build_index.py +++ /dev/null @@ -1,56 +0,0 @@ -import faiss -from enum import Enum, unique - - -@unique -class INDEXDEVICES(Enum): - CPU = 0 - GPU = 1 - MULTI_GPU = 2 - - -def FactoryIndex(index_name="DefaultIndex"): - cls = globals()[index_name] - return cls # invoke __init__() by user - - -class Index(): - def build(self, d, vectors, vector_ids, DEVICE=INDEXDEVICES.CPU): - pass - - @staticmethod - def increase(trained_index, vectors): - trained_index.add_with_ids(vectors. vector_ids) - - @staticmethod - def serialize(index): - writer = faiss.VectorIOWriter() - faiss.write_index(index, writer) - array_data = faiss.vector_to_array(writer.data) - return array_data - - -class DefaultIndex(Index): - def __init__(self, *args, **kwargs): - # maybe need to specif parameters - pass - - def build(self, d, vectors, vector_ids, DEVICE=INDEXDEVICES.CPU): - index = faiss.IndexFlatL2(d) - index2 = faiss.IndexIDMap(index) - index2.add_with_ids(vectors, vector_ids) - return index2 - - -class LowMemoryIndex(Index): - def __init__(self, *args, **kwargs): - self.__nlist = 100 - self.__bytes_per_vector = 8 - self.__bits_per_sub_vector = 8 - - def build(d, vectors, vector_ids, DEVICE=INDEXDEVICES.CPU): - # quantizer = faiss.IndexFlatL2(d) - # index = faiss.IndexIVFPQ(quantizer, d, self.nlist, - # self.__bytes_per_vector, self.__bits_per_sub_vector) - # return index - pass diff --git a/pyengine/engine/ingestion/serialize.py b/pyengine/engine/ingestion/serialize.py deleted file mode 100644 index 6e8acf569b..0000000000 --- a/pyengine/engine/ingestion/serialize.py +++ /dev/null @@ -1,18 +0,0 @@ -import faiss -import numpy as np - - -def write_index(index, file_name): - faiss.write_index(index, file_name) - - -def read_index(file_name): - return faiss.read_index(file_name) - - -def to_array(vec): - return np.asarray(vec).astype('float32') - - -def to_int_array(vec): - return np.asarray(vec).astype('int64') diff --git a/pyengine/engine/ingestion/tests/__init__.py b/pyengine/engine/ingestion/tests/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/pyengine/engine/ingestion/tests/test_build.py b/pyengine/engine/ingestion/tests/test_build.py deleted file mode 100644 index 8201d7d202..0000000000 --- a/pyengine/engine/ingestion/tests/test_build.py +++ /dev/null @@ -1,89 +0,0 @@ -from ..build_index import * - -import faiss -import numpy as np -import unittest - - -class TestBuildIndex(unittest.TestCase): - def test_factory_method(self): - index_builder = FactoryIndex() - index = index_builder() - self.assertIsInstance(index, DefaultIndex) - - def test_default_index(self): - d = 64 - nb = 10000 - nq = 100 - _, xb, xq = get_dataset(d, nb, 500, nq) - ids = np.arange(xb.shape[0]) - - # Expected result - index = faiss.IndexFlatL2(d) - index2 = faiss.IndexIDMap(index) - index2.add_with_ids(xb, ids) - Dref, Iref = index.search(xq, 5) - - builder = DefaultIndex() - index2 = builder.build(d, xb, ids) - Dnew, Inew = index2.search(xq, 5) - - assert np.all(Dnew == Dref) and np.all(Inew == Iref) - - def test_increase(self): - # d = 64 - # nb = 10000 - # nq = 100 - # nt = 500 - # xt, xb, xq = get_dataset(d, nb, nt, nq) - # - # index = faiss.IndexFlatL2(d) - # index.add(xb) - # - # assert index.ntotal == nb - # - # Index.increase(index, xt) - # assert index.ntotal == nb + nt - pass - - def test_serialize(self): - d = 64 - nb = 10000 - nq = 100 - nt = 500 - xt, xb, xq = get_dataset(d, nb, nt, nq) - - index = faiss.IndexFlatL2(d) - index.add(xb) - Dref, Iref = index.search(xq, 5) - - ar_data = Index.serialize(index) - - reader = faiss.VectorIOReader() - faiss.copy_array_to_vector(ar_data, reader.data) - index2 = faiss.read_index(reader) - - Dnew, Inew = index2.search(xq, 5) - - assert np.all(Dnew == Dref) and np.all(Inew == Iref) - - -def get_dataset(d, nb, nt, nq): - """A dataset that is not completely random but still challenging to - index - """ - d1 = 10 # intrinsic dimension (more or less) - n = nb + nt + nq - rs = np.random.RandomState(1338) - x = rs.normal(size=(n, d1)) - x = np.dot(x, rs.rand(d1, d)) - # now we have a d1-dim ellipsoid in d-dimensional space - # higher factor (>4) -> higher frequency -> less linear - x = x * (rs.rand(d) * 4 + 0.1) - x = np.sin(x) - x = x.astype('float32') - return x[:nt], x[nt:-nq], x[-nq:] - - -if __name__ == "__main__": - unittest.main() diff --git a/pyengine/engine/model/file_table.py b/pyengine/engine/model/file_table.py deleted file mode 100644 index 6588c7123e..0000000000 --- a/pyengine/engine/model/file_table.py +++ /dev/null @@ -1,23 +0,0 @@ -from engine import db - -class FileTable(db.Model): - __tablename__ = 'file_table' - id = db.Column(db.Integer, primary_key=True) - group_name = db.Column(db.String(100)) - filename = db.Column(db.String(100)) - type = db.Column(db.String(100)) - row_number = db.Column(db.Integer) - date = db.Column(db.Date) - - - def __init__(self, group_name, filename, type, row_number): - self.group_name = group_name - self.filename = filename - self.type = type - self.row_number = row_number - self.type = type - - - def __repr__(self): - return '' % self.tablename - diff --git a/pyengine/engine/model/group_table.py b/pyengine/engine/model/group_table.py deleted file mode 100644 index da3f4f7f55..0000000000 --- a/pyengine/engine/model/group_table.py +++ /dev/null @@ -1,20 +0,0 @@ -from engine import db - -class GroupTable(db.Model): - __tablename__ = 'group_table' - id = db.Column(db.Integer, primary_key=True) - group_name = db.Column(db.String(100)) - file_number = db.Column(db.Integer) - row_number = db.Column(db.BigInteger) - dimension = db.Column(db.Integer) - - - def __init__(self, group_name, dimension): - self.group_name = group_name - self.dimension = dimension - self.file_number = 0 - self.row_number = 0 - - - def __repr__(self): - return '' % self.group_name \ No newline at end of file diff --git a/pyengine/engine/retrieval/__init__.py b/pyengine/engine/retrieval/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/pyengine/engine/retrieval/search_index.py b/pyengine/engine/retrieval/search_index.py deleted file mode 100644 index 9457d6de5d..0000000000 --- a/pyengine/engine/retrieval/search_index.py +++ /dev/null @@ -1,41 +0,0 @@ -import faiss -import numpy as np - - -class SearchResult(): - def __init__(self, D, I): - self.distance = D - self.vectors = I - - def __add__(self, other): - distance = self.distance + other.distance - vectors = self.vectors + other.vectors - return SearchResult(distance, vectors) - - -class FaissSearch(): - def __init__(self, index_data, id_to_vector_map=None): - self.__index = index_data - - if id_to_vector_map is None: - self.__id_to_vector_map = [] - - # def search_by_ids(self, id_list, k): - # pass - - def search_by_vectors(self, query_vectors, k): - id_list = [None] * len(query_vectors) - - result = self.__search(id_list, query_vectors, k) - return result - - def __search(self, id_list, vector_list, k): - D, I = self.__index.search(vector_list, k) - return SearchResult(D, I) - - -# import heapq -def top_k(input, k): - pass - # sorted = heapq.nsmallest(k, input, key=np.sum(input.get())) - # return sorted diff --git a/pyengine/engine/retrieval/tests/__init__.py b/pyengine/engine/retrieval/tests/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/pyengine/engine/retrieval/tests/test_search.py b/pyengine/engine/retrieval/tests/test_search.py deleted file mode 100644 index e0bd3b96c4..0000000000 --- a/pyengine/engine/retrieval/tests/test_search.py +++ /dev/null @@ -1,49 +0,0 @@ -from ..search_index import * - -import unittest -import numpy as np - - -class TestSearchSingleThread(unittest.TestCase): - def test_search_by_vectors(self): - d = 64 - nb = 10000 - nq = 100 - _, xb, xq = get_dataset(d, nb, 500, nq) - - index = faiss.IndexFlatL2(d) - index.add(xb) - - # expect result - Dref, Iref = index.search(xq, 5) - - searcher = FaissSearch(index) - result = searcher.search_by_vectors(xq, 5) - - assert np.all(result.distance == Dref) \ - and np.all(result.vectors == Iref) - pass - - def test_top_k(selfs): - pass - - -def get_dataset(d, nb, nt, nq): - """A dataset that is not completely random but still challenging to - index - """ - d1 = 10 # intrinsic dimension (more or less) - n = nb + nt + nq - rs = np.random.RandomState(1338) - x = rs.normal(size=(n, d1)) - x = np.dot(x, rs.rand(d1, d)) - # now we have a d1-dim ellipsoid in d-dimensional space - # higher factor (>4) -> higher frequency -> less linear - x = x * (rs.rand(d) * 4 + 0.1) - x = np.sin(x) - x = x.astype('float32') - return x[:nt], x[nt:-nq], x[-nq:] - - -if __name__ == "__main__": - unittest.main() diff --git a/pyengine/engine/run_test.sh b/pyengine/engine/run_test.sh deleted file mode 100755 index 5e0da6ae46..0000000000 --- a/pyengine/engine/run_test.sh +++ /dev/null @@ -1 +0,0 @@ -pytest -vv --disable-warnings diff --git a/pyengine/engine/settings.py b/pyengine/engine/settings.py deleted file mode 100644 index 73f09f5f58..0000000000 --- a/pyengine/engine/settings.py +++ /dev/null @@ -1,26 +0,0 @@ -from environs import Env - -env = Env() -env.read_env() - -DEBUG = env.bool('DEBUG', default=False) -SQLALCHEMY_TRACK_MODIFICATIONS = env.bool('DEBUG', default=False) -SECRET_KEY = env.str('SECRET_KEY', 'test') -SQLALCHEMY_DATABASE_URI = env.str('SQLALCHEMY_DATABASE_URI') -SQLALCHEMY_POOL_SIZE = env.int('SQLALCHEMY_POOL_SIZE', 50) - -ROW_LIMIT = env.int('ROW_LIMIT') -DATABASE_DIRECTORY = env.str('DATABASE_DIRECTORY') - -FLASK_PROFILER_CONFIG = { - "enabled": DEBUG, - "storage": { - "engine": "sqlalchemy", - "db_url": env.str("PROFILER_STORAGE_DB_URL") - }, - "basicAuth": { - "enabled": True, - "username": env.str("PROFILER_BASIC_AUTH_USERNAME", "admin"), - "password": env.str("PROFILER_BASIC_AUTH_PASSWORD", "admin"), - } -} diff --git a/pyengine/engine/storage/__init__.py b/pyengine/engine/storage/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/pyengine/engine/storage/storage_manager.py b/pyengine/engine/storage/storage_manager.py deleted file mode 100644 index 63f9d5b0da..0000000000 --- a/pyengine/engine/storage/storage_manager.py +++ /dev/null @@ -1,12 +0,0 @@ -import os -import faiss - -class StorageManager(object): - def __init__(self): - pass - - def put(vector, directory, index_type): - pass - - def take(dir): - pass diff --git a/pyengine/manager.py b/pyengine/manager.py deleted file mode 100644 index da1b0a248c..0000000000 --- a/pyengine/manager.py +++ /dev/null @@ -1,21 +0,0 @@ -from flask_script import Manager - -from engine import db, app - -manager = Manager(app) - -@manager.command -def create_all(): - db.create_all() - -@manager.command -def drop_all(): - db.drop_all() - -@manager.command -def recreate_all(): - db.drop_all() - db.create_all() - -if __name__ == '__main__': - manager.run() diff --git a/pyengine/runserver.py b/pyengine/runserver.py deleted file mode 100644 index 2a1e7303d5..0000000000 --- a/pyengine/runserver.py +++ /dev/null @@ -1,2 +0,0 @@ -from engine import app -app.run() \ No newline at end of file diff --git a/pyengine/tests/__init__.py b/pyengine/tests/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/pyengine/tests/test_function.py b/pyengine/tests/test_function.py deleted file mode 100644 index 6fc260037a..0000000000 --- a/pyengine/tests/test_function.py +++ /dev/null @@ -1,102 +0,0 @@ -import numpy as np -import requests -import pytest -import logging -import json - -url = "http://127.0.0.1:5000" - - -class TestEngineFunction(): - def test_1m_add(self): - d = 4 - nb = 100 - nq = 1 - k = 10 - _, xb, xq = get_dataset(d, nb, 1, nq) - - groupid = "test_search_3" - - route_group = url + "/vector/group/" + groupid - r = requests.post(route_group, json={"dimension": d}) - - # import dataset - vector_add_route = url + "/vector/add/" + groupid - for i in xb: - data = dict() - data['vector'] = i.tolist() - # print(data) - r = requests.post(vector_add_route, json=data) - print(r.json()) - - # search dataset - vector_search_route = url + "/vector/search/" + groupid - data = dict() - for i in xq: - data['vector'] = i.tolist() - data['limit'] = k - # print(data) - r = requests.get(vector_search_route, json=data) - print(r.json()) - - def test_restful_interface(self): - d = 4 - nb = 100 - nq = 1 - k = 10 - _, xb, xq = get_dataset(d, nb, 1, nq) - - groupid_1 = "Group_1" - groupid_2 = "Group_2" - - vector_add_route = url + "/vector/add/" - vector_search_route = url + "/vector/search/" - group_route = url + "/vector/group/" - group_list_route = url + "/vector/group" - - # Add groupid - r = requests.post(group_route + groupid_1, json={"dimension": d}) - print(r.json()) - r = requests.post(group_route + groupid_2, json={"dimension": d}) - print(r.json()) - - # Get groupid list - r = requests.get(group_list_route) - print(r.json()) - - # delete groupid - r = requests.delete(group_route + groupid_2) - print(r.json()) - - # get groupid - r = requests.get(group_route + groupid_1) - print(r.json()) - - # add vector - for i in xb: - data = dict() - data['vector'] = i.tolist() - # print(data) - r = requests.post(vector_add_route + groupid_1, json=data) - print(r.json()) - - # search dataset - data = dict() - for i in xq: - data['vector'] = i.tolist() - data['limit'] = k - # print(data) - r = requests.get(vector_search_route + groupid_1, json=data) - print(r.json()) - - -def get_dataset(d, nb, nt, nq): - d1 = 10 # intrinsic dimension (more or less) - n = nb + nt + nq - rs = np.random.RandomState(1338) - x = rs.normal(size=(n, d1)) - x = np.dot(x, rs.rand(d1, d)) - x = x * (rs.rand(d) * 4 + 0.1) - x = np.sin(x) - x = x.astype('float32') - return x[:nt], x[nt:-nq], x[-nq:] diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md deleted file mode 100644 index 88326e5a1c..0000000000 --- a/python/CHANGELOG.md +++ /dev/null @@ -1,17 +0,0 @@ -# Changelog - -Please mark all change in change log and use the ticket from JIRA. - -## [Unreleased] - -### Bug - -### Improvement - -### New Feature - -- MS-10 - Add Python SDK APIs - -- MS-11 - Implement Python SDK - -### Task diff --git a/python/sdk/.gitignore b/python/sdk/.gitignore deleted file mode 100644 index 723ef36f4e..0000000000 --- a/python/sdk/.gitignore +++ /dev/null @@ -1 +0,0 @@ -.idea \ No newline at end of file diff --git a/python/sdk/client/Abstract.py b/python/sdk/client/Abstract.py deleted file mode 100644 index 41ce37e9f6..0000000000 --- a/python/sdk/client/Abstract.py +++ /dev/null @@ -1,298 +0,0 @@ -from enum import IntEnum - - -class IndexType(IntEnum): - INVALIDE = 0 - IDMAP = 1 - IVFLAT = 2 - - -class TableSchema(object): - """ - Table Schema - - :type table_name: str - :param table_name: (Required) name of table - - :type index_type: IndexType - :param index_type: (Optional) index type, default = 0 - - `IndexType`: 0-invalid, 1-idmap, 2-ivflat - - :type dimension: int64 - :param dimension: (Required) dimension of vector - - :type store_raw_vector: bool - :param store_raw_vector: (Optional) default = False - - """ - def __init__(self, table_name, - dimension=0, - index_type=IndexType.INVALIDE, - store_raw_vector=False): - self.table_name = table_name - self.index_type = index_type - self.dimension = dimension - self.store_raw_vector = store_raw_vector - - -class Range(object): - """ - Range information - - :type start: str - :param start: Range start value - - :type end: str - :param end: Range end value - - """ - def __init__(self, start, end): - self.start = start - self.end = end - - -class RowRecord(object): - """ - Record inserted - - :type vector_data: binary str - :param vector_data: (Required) a vector - - """ - def __init__(self, vector_data): - self.vector_data = vector_data - - -class QueryResult(object): - """ - Query result - - :type id: int64 - :param id: id of the vector - - :type score: float - :param score: Vector similarity 0 <= score <= 100 - - """ - def __init__(self, id, score): - self.id = id - self.score = score - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - -class TopKQueryResult(object): - """ - TopK query results - - :type query_results: list[QueryResult] - :param query_results: TopK query results - - """ - def __init__(self, query_results): - self.query_results = query_results - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - -def _abstract(): - raise NotImplementedError('You need to override this function') - - -class ConnectIntf(object): - """SDK client abstract class - - Connection is a abstract class - - """ - - def connect(self, host=None, port=None, uri=None): - """ - Connect method should be called before any operations - Server will be connected after connect return OK - Should be implemented - - :type host: str - :param host: host - - :type port: str - :param port: port - - :type uri: str - :param uri: (Optional) uri - - :return: Status, indicate if connect is successful - """ - _abstract() - - def connected(self): - """ - connected, connection status - Should be implemented - - :return: Status, indicate if connect is successful - """ - _abstract() - - def disconnect(self): - """ - Disconnect, server will be disconnected after disconnect return SUCCESS - Should be implemented - - :return: Status, indicate if connect is successful - """ - _abstract() - - def create_table(self, param): - """ - Create table - Should be implemented - - :type param: TableSchema - :param param: provide table information to be created - - :return: Status, indicate if connect is successful - """ - _abstract() - - def delete_table(self, table_name): - """ - Delete table - Should be implemented - - :type table_name: str - :param table_name: table_name of the deleting table - - :return: Status, indicate if connect is successful - """ - _abstract() - - def add_vectors(self, table_name, records): - """ - Add vectors to table - Should be implemented - - :type table_name: str - :param table_name: table name been inserted - - :type records: list[RowRecord] - :param records: list of vectors been inserted - - :returns: - Status : indicate if vectors inserted successfully - ids :list of id, after inserted every vector is given a id - """ - _abstract() - - def search_vectors(self, table_name, query_records, query_ranges, top_k): - """ - Query vectors in a table - Should be implemented - - :type table_name: str - :param table_name: table name been queried - - :type query_records: list[RowRecord] - :param query_records: all vectors going to be queried - - :type query_ranges: list[Range] - :param query_ranges: Optional ranges for conditional search. - If not specified, search whole table - - :type top_k: int - :param top_k: how many similar vectors will be searched - - :returns: - Status: indicate if query is successful - query_results: list[TopKQueryResult] - """ - _abstract() - - def describe_table(self, table_name): - """ - Show table information - Should be implemented - - :type table_name: str - :param table_name: which table to be shown - - :returns: - Status: indicate if query is successful - table_schema: TableSchema, given when operation is successful - """ - _abstract() - - def get_table_row_count(self, table_name): - """ - Get table row count - Should be implemented - - :type table_name, str - :param table_name, target table name. - - :returns: - Status: indicate if operation is successful - count: int, table row count - """ - _abstract() - - def show_tables(self): - """ - Show all tables in database - should be implemented - - :return: - Status: indicate if this operation is successful - tables: list[str], list of table names - """ - _abstract() - - def client_version(self): - """ - Provide client version - should be implemented - - :return: str, client version - """ - _abstract() - - def server_version(self): - """ - Provide server version - should be implemented - - :return: str, server version - """ - _abstract() - - def server_status(self, cmd): - """ - Provide server status - should be implemented - :type cmd, str - - :return: str, server status - """ - _abstract() - - - - - - - - - - - - - - - diff --git a/python/sdk/client/Client.py b/python/sdk/client/Client.py deleted file mode 100644 index 88db1b9d5a..0000000000 --- a/python/sdk/client/Client.py +++ /dev/null @@ -1,368 +0,0 @@ -import logging, logging.config - -from thrift.transport import TSocket -from thrift.transport import TTransport -from thrift.protocol import TBinaryProtocol -from thrift.Thrift import TException, TApplicationException - -from milvus.thrift import MilvusService -from milvus.thrift import ttypes -from client.Abstract import ( - ConnectIntf, - TableSchema, - Range, - RowRecord, - QueryResult, - TopKQueryResult, - IndexType -) - -from client.Status import Status -from client.Exceptions import ( - RepeatingConnectError, - DisconnectNotConnectedClientError, - NotConnectError -) - -LOGGER = logging.getLogger(__name__) - -__VERSION__ = '0.1.0' -__NAME__ = 'Milvus Python SDK' - - -class Prepare(object): - - @classmethod - def table_schema(cls, - table_name, - dimension, - index_type=IndexType.INVALIDE, - store_raw_vector = False): - """ - :type table_name: str - :type dimension: int - :type index_type: IndexType - :type store_raw_vector: bool - :param table_name: (Required) name of table - :param dimension: (Required) dimension of the table - :param index_type: (Optional) index type, default = IndexType.INVALID - :param store_raw_vector: (Optional) default = False - - :return: TableSchema object - """ - temp = TableSchema(table_name,dimension, index_type, store_raw_vector) - - return ttypes.TableSchema(table_name=temp.table_name, - dimension=dimension, - index_type=index_type, - store_raw_vector=store_raw_vector) - - @classmethod - def range(cls, start, end): - """ - :type start: str - :type end: str - :param start: (Required) range start - :param end: (Required) range end - - :return: Range object - """ - temp = Range(start=start, end=end) - return ttypes.Range(start_value=temp.start, end_value=temp.end) - - @classmethod - def row_record(cls, vector_data): - """ - Transfer a float binary str to RowRecord and return - - :type vector_data: bytearray or bytes - :param vector_data: (Required) binary vector to store - - :return: RowRecord object - - """ - temp = RowRecord(vector_data) - return ttypes.RowRecord(vector_data=temp.vector_data) - - -class Milvus(ConnectIntf): - """ - The Milvus object is used to connect and communicate with the server - """ - - def __init__(self): - self.status = None - self._transport = None - self._client = None - - def __repr__(self): - return '{}'.format(self.status) - - def connect(self, host='localhost', port='9090', uri=None): - """ - Connect method should be called before any operations. - Server will be connected after connect return OK - - :type host: str - :type port: str - :type uri: str - :param host: (Required) host of the server - :param port: (Required) port of the server - :param uri: (Optional) - - :return: Status, indicate if connect is successful - :rtype: Status - """ - # TODO URI - if self.status and self.status == Status.SUCCESS: - raise RepeatingConnectError("You have already connected!") - - transport = TSocket.TSocket(host=host, port=port) - self._transport = TTransport.TBufferedTransport(transport) - protocol = TBinaryProtocol.TBinaryProtocol(transport) - self._client = MilvusService.Client(protocol) - - try: - transport.open() - self.status = Status(Status.SUCCESS, 'Connected') - LOGGER.info('Connected!') - - except (TTransport.TTransportException, TException) as e: - self.status = Status(Status.CONNECT_FAILED, message=str(e)) - LOGGER.error('logger.error: {}'.format(self.status)) - finally: - return self.status - - @property - def connected(self): - """ - Check if client is connected to the server - - :return: if client is connected - :rtype bool - """ - return self.status == Status.SUCCESS - - def disconnect(self): - """ - Disconnect the client - - :return: Status, indicate if disconnect is successful - :rtype: Status - """ - - if not self._transport: - raise DisconnectNotConnectedClientError('Error') - - try: - - self._transport.close() - LOGGER.info('Client Disconnected!') - self.status = None - - except TException as e: - return Status(Status.PERMISSION_DENIED, str(e)) - return Status(Status.SUCCESS, 'Disconnected') - - def create_table(self, param): - """Create table - - :type param: TableSchema - :param param: Provide table information to be created - - `Please use Prepare.table_schema generate param` - - :return: Status, indicate if operation is successful - :rtype: Status - """ - if not self._client: - raise NotConnectError('Please Connect to the server first!') - - try: - self._client.CreateTable(param) - except (TApplicationException, ) as e: - LOGGER.error('Unable to create table') - return Status(Status.PERMISSION_DENIED, str(e)) - return Status(message='Table {} created!'.format(param.table_name)) - - def delete_table(self, table_name): - """ - Delete table with table_name - - :type table_name: str - :param table_name: Name of the table being deleted - - :return: Status, indicate if operation is successful - :rtype: Status - """ - try: - self._client.DeleteTable(table_name) - except (TApplicationException, TException) as e: - LOGGER.error('Unable to delete table {}'.format(table_name)) - return Status(Status.PERMISSION_DENIED, str(e)) - return Status(message='Table {} deleted!'.format(table_name)) - - def add_vectors(self, table_name, records): - """ - Add vectors to table - - :type table_name: str - :type records: list[RowRecord] - - :param table_name: table name been inserted - :param records: list of vectors been inserted - - `Please use Prepare.row_record generate records` - - :returns: - Status: indicate if vectors inserted successfully - - ids: list of id, after inserted every vector is given a id - :rtype: (Status, list(str)) - """ - try: - ids = self._client.AddVector(table_name=table_name, record_array=records) - except (TApplicationException, TException) as e: - LOGGER.error('{}'.format(e)) - return Status(Status.PERMISSION_DENIED, str(e)), None - return Status(message='Vectors added successfully!'), ids - - def search_vectors(self, table_name, top_k, query_records, query_ranges=None): - """ - Query vectors in a table - - - - :param query_ranges: Optional ranges for conditional search. - If not specified, search whole table - :type query_ranges: list[Range] - :param table_name: table name been queried - :type table_name: str - :param query_records: all vectors going to be queried - - `Please use Prepare.query_record generate QueryRecord` - :type query_records: list[RowRecord] - :param top_k: int, how many similar vectors will be searched - :type top_k: int - - :returns: (Status, res) - - Status: indicate if query is successful - - res: return when operation is successful - :rtype: (Status, list[TopKQueryResult]) - """ - res = [] - try: - top_k_query_results = self._client.SearchVector( - table_name=table_name, - query_record_array=query_records, - query_range_array=query_ranges, - topk=top_k) - - if top_k_query_results: - for top_k in top_k_query_results: - if top_k: - res.append(TopKQueryResult([QueryResult(qr.id, qr.score) - for qr in top_k.query_result_arrays])) - - except (TApplicationException, TException) as e: - LOGGER.error('{}'.format(e)) - return Status(Status.PERMISSION_DENIED, str(e)), None - return Status(message='Success!'), res - - def describe_table(self, table_name): - """ - Show table information - - :type table_name: str - :param table_name: which table to be shown - - :returns: (Status, table_schema) - Status: indicate if query is successful - table_schema: return when operation is successful - :rtype: (Status, TableSchema) - """ - try: - temp = self._client.DescribeTable(table_name) - - except (TApplicationException, TException) as e: - LOGGER.error('{}'.format(e)) - return Status(Status.PERMISSION_DENIED, str(e)), None - return Status(message='Success!'), temp - - def show_tables(self): - """ - Show all tables in database - - :return: - Status: indicate if this operation is successful - - tables: list of table names, return when operation - is successful - :rtype: - (Status, list[str]) - """ - try: - res = self._client.ShowTables() - tables = [] - if res: - tables = res - - except (TApplicationException, TException) as e: - LOGGER.error('{}'.format(e)) - return Status(Status.PERMISSION_DENIED, str(e)), None - return Status(message='Success!'), tables - - def get_table_row_count(self, table_name): - """ - Get table row count - - :type table_name: str - :param table_name: target table name. - - :returns: - Status: indicate if operation is successful - - res: int, table row count - - """ - try: - count = self._client.GetTableRowCount(table_name) - - except (TApplicationException, TException) as e: - LOGGER.error('{}'.format(e)) - return Status(Status.PERMISSION_DENIED, str(e)), None - return Status(message='Success'), count - - def client_version(self): - """ - Provide client version - - :return: Client version - :rtype: str - """ - return __VERSION__ - - def server_version(self): - """ - Provide server version - - :return: Server version - """ - if not self.connected: - raise NotConnectError('You have to connect first') - - return self._client.Ping('version') - - def server_status(self, cmd=None): - """ - Provide server status - - :return: Server status - :rtype : str - """ - if not self.connected: - raise NotConnectError('You have to connect first') - - return self._client.Ping(cmd) diff --git a/python/sdk/client/Exceptions.py b/python/sdk/client/Exceptions.py deleted file mode 100644 index 30be65b5eb..0000000000 --- a/python/sdk/client/Exceptions.py +++ /dev/null @@ -1,18 +0,0 @@ -class ParamError(ValueError): - pass - - -class ConnectError(ValueError): - pass - - -class NotConnectError(ConnectError): - pass - - -class RepeatingConnectError(ConnectError): - pass - - -class DisconnectNotConnectedClientError(ValueError): - pass diff --git a/python/sdk/client/Status.py b/python/sdk/client/Status.py deleted file mode 100644 index d74f7f010a..0000000000 --- a/python/sdk/client/Status.py +++ /dev/null @@ -1,33 +0,0 @@ -class Status(object): - """ - :attribute code: int (optional) default as ok - - :attribute message: str (optional) current status message - """ - SUCCESS = 0 - CONNECT_FAILED = 1 - PERMISSION_DENIED = 2 - TABLE_NOT_EXISTS = 3 - ILLEGAL_ARGUMENT = 4 - ILLEGAL_RANGE = 5 - ILLEGAL_DIMENSION = 6 - - def __init__(self, code=SUCCESS, message=None): - self.code = code - self.message = message - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - """Make Status comparable with self by code""" - if isinstance(other, int): - return self.code == other - else: - return isinstance(other, self.__class__) and self.code == other.code - - def __ne__(self, other): - return not (self == other) - diff --git a/python/sdk/client/__init__.py b/python/sdk/client/__init__.py deleted file mode 100644 index 38a3ed8e53..0000000000 --- a/python/sdk/client/__init__.py +++ /dev/null @@ -1 +0,0 @@ -"""client module""" diff --git a/python/sdk/doc/en/API/sdk.client.rst b/python/sdk/doc/en/API/sdk.client.rst deleted file mode 100644 index b28b507a10..0000000000 --- a/python/sdk/doc/en/API/sdk.client.rst +++ /dev/null @@ -1,27 +0,0 @@ - -sdk.client.Client module -=============================== - -sdk.client.Client.Milvus --------------------------------- - -.. autoclass:: client.Client.Milvus - :members: - :undoc-members: - :show-inheritance: - -sdk.client.Clinet.Prepare --------------------------------- - -.. autoclass:: client.Client.Prepare - :members: - :undoc-members: - :show-inheritance: - -sdk.client.Status module -====================================== - -.. automodule:: client.Status - :members: - :undoc-members: - :show-inheritance: diff --git a/python/sdk/doc/en/QuickStart.rst b/python/sdk/doc/en/QuickStart.rst deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/python/sdk/doc/en/api.rst b/python/sdk/doc/en/api.rst deleted file mode 100644 index a3724e08e3..0000000000 --- a/python/sdk/doc/en/api.rst +++ /dev/null @@ -1,11 +0,0 @@ -API -*** - -client package -============================== - - -.. toctree:: - :maxdepth: 2 - - API/sdk.client.rst \ No newline at end of file diff --git a/python/sdk/doc/en/build/.buildinfo b/python/sdk/doc/en/build/.buildinfo deleted file mode 100644 index da2296fbce..0000000000 --- a/python/sdk/doc/en/build/.buildinfo +++ /dev/null @@ -1,4 +0,0 @@ -# Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: d04411a798cdf7cacd38f10a355d691b -tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/python/sdk/doc/en/build/.doctrees/API/sdk.client.doctree b/python/sdk/doc/en/build/.doctrees/API/sdk.client.doctree deleted file mode 100644 index 4dd1a4c513..0000000000 Binary files a/python/sdk/doc/en/build/.doctrees/API/sdk.client.doctree and /dev/null differ diff --git a/python/sdk/doc/en/build/.doctrees/api.doctree b/python/sdk/doc/en/build/.doctrees/api.doctree deleted file mode 100644 index 83ddfc192a..0000000000 Binary files a/python/sdk/doc/en/build/.doctrees/api.doctree and /dev/null differ diff --git a/python/sdk/doc/en/build/.doctrees/environment.pickle b/python/sdk/doc/en/build/.doctrees/environment.pickle deleted file mode 100644 index ad77752cd6..0000000000 Binary files a/python/sdk/doc/en/build/.doctrees/environment.pickle and /dev/null differ diff --git a/python/sdk/doc/en/build/.doctrees/index.doctree b/python/sdk/doc/en/build/.doctrees/index.doctree deleted file mode 100644 index 890f3afb4a..0000000000 Binary files a/python/sdk/doc/en/build/.doctrees/index.doctree and /dev/null differ diff --git a/python/sdk/doc/en/build/API/sdk.client.html b/python/sdk/doc/en/build/API/sdk.client.html deleted file mode 100644 index 46a0626789..0000000000 --- a/python/sdk/doc/en/build/API/sdk.client.html +++ /dev/null @@ -1,558 +0,0 @@ - - - - - - - - - - - sdk.client.Client module — MilvusPythonSDK 0.0.1 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

sdk.client.Client module

-
-

sdk.client.Client.Milvus

-
-
-class client.Client.Milvus
-

Bases: client.Abstract.ConnectIntf

-

The Milvus object is used to connect and communicate with the server

-
-
-add_vectors(table_name, records)
-

Add vectors to table

-
-
Parameters
-
    -
  • table_name (str) – table name been inserted

  • -
  • records (list[RowRecord]) –

    list of vectors been inserted

    -

    Please use Prepare.row_record generate records

    -

  • -
-
-
Returns
-

Status: indicate if vectors inserted successfully

-

ids: list of id, after inserted every vector is given a id

-

-
-
Return type
-

(Status, list(str))

-
-
-
- -
-
-client_version()
-

Provide client version

-
-
Returns
-

Client version

-
-
Return type
-

str

-
-
-
- -
-
-connect(host='localhost', port='9090', uri=None)
-

Connect method should be called before any operations. -Server will be connected after connect return OK

-
-
Parameters
-
    -
  • host (str) – (Required) host of the server

  • -
  • port (str) – (Required) port of the server

  • -
  • uri (str) – (Optional)

  • -
-
-
Returns
-

Status, indicate if connect is successful

-
-
Return type
-

Status

-
-
-
- -
-
-property connected
-

Check if client is connected to the server

-
-
Returns
-

if client is connected

-
-
-

:rtype bool

-
- -
-
-create_table(param)
-

Create table

-
-
Parameters
-

param (TableSchema) –

Provide table information to be created

-

Please use Prepare.table_schema generate param

-

-
-
Returns
-

Status, indicate if operation is successful

-
-
Return type
-

Status

-
-
-
- -
-
-delete_table(table_name)
-

Delete table with table_name

-
-
Parameters
-

table_name (str) – Name of the table being deleted

-
-
Returns
-

Status, indicate if operation is successful

-
-
Return type
-

Status

-
-
-
- -
-
-describe_table(table_name)
-

Show table information

-
-
Parameters
-

table_name (str) – which table to be shown

-
-
Returns
-

(Status, table_schema) -Status: indicate if query is successful -table_schema: return when operation is successful

-
-
Return type
-

(Status, TableSchema)

-
-
-
- -
-
-disconnect()
-

Disconnect the client

-
-
Returns
-

Status, indicate if disconnect is successful

-
-
Return type
-

Status

-
-
-
- -
-
-get_table_row_count(table_name)
-

Get table row count

-
-
Parameters
-

table_name (str) – target table name.

-
-
Returns
-

Status: indicate if operation is successful

-

res: int, table row count

-

-
-
-
- -
-
-search_vectors(table_name, top_k, query_records, query_ranges=None)
-

Query vectors in a table

-
-
Parameters
-
    -
  • query_ranges (list[Range]) – Optional ranges for conditional search. -If not specified, search whole table

  • -
  • table_name (str) – table name been queried

  • -
  • query_records (list[RowRecord]) –

    all vectors going to be queried

    -

    Please use Prepare.query_record generate QueryRecord

    -

  • -
  • top_k (int) – int, how many similar vectors will be searched

  • -
-
-
Returns
-

(Status, res)

-

Status: indicate if query is successful

-

res: return when operation is successful

-

-
-
Return type
-

(Status, list[TopKQueryResult])

-
-
-
- -
-
-server_status(cmd=None)
-

Provide server status

-
-
Returns
-

Server status

-
-
-

:rtype : str

-
- -
-
-server_version()
-

Provide server version

-
-
Returns
-

Server version

-
-
-
- -
-
-show_tables()
-

Show all tables in database

-
-
Returns
-

Status: indicate if this operation is successful

-
-
tables: list of table names, return when operation

is successful

-
-
-

-
-
Return type
-

(Status, list[str])

-
-
-
- -
- -
-
-

sdk.client.Clinet.Prepare

-
-
-class client.Client.Prepare
-

Bases: object

-
-
-classmethod range(start, end)
-
-
Parameters
-
    -
  • start (str) – (Required) range start

  • -
  • end (str) – (Required) range end

  • -
-
-
Returns
-

Range object

-
-
-
- -
-
-classmethod row_record(vector_data)
-

Transfer a float binary str to RowRecord and return

-
-
Parameters
-

vector_data (bytearray or bytes) – (Required) binary vector to store

-
-
Returns
-

RowRecord object

-
-
-
- -
-
-classmethod table_schema(table_name, dimension, index_type=<IndexType.INVALIDE: 0>, store_raw_vector=False)
-
-
Parameters
-
    -
  • table_name (str) – (Required) name of table

  • -
  • dimension (int) – (Required) dimension of the table

  • -
  • index_type (IndexType) – (Optional) index type, default = IndexType.INVALID

  • -
  • store_raw_vector (bool) – (Optional) default = False

  • -
-
-
Returns
-

TableSchema object

-
-
-
- -
- -
-
-
-

sdk.client.Status module

-
-
-class client.Status.Status(code=0, message=None)
-

Bases: object

-
-
Attribute code
-

int (optional) default as ok

-
-
Attribute message
-

str (optional) current status message

-
-
-
-
-CONNECT_FAILED = 1
-
- -
-
-ILLEGAL_ARGUMENT = 4
-
- -
-
-ILLEGAL_DIMENSION = 6
-
- -
-
-ILLEGAL_RANGE = 5
-
- -
-
-PERMISSION_DENIED = 2
-
- -
-
-SUCCESS = 0
-
- -
-
-TABLE_NOT_EXISTS = 3
-
- -
- -
- - -
- -
- - -
-
- -
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/python/sdk/doc/en/build/_sources/API/sdk.client.rst.txt b/python/sdk/doc/en/build/_sources/API/sdk.client.rst.txt deleted file mode 100644 index b28b507a10..0000000000 --- a/python/sdk/doc/en/build/_sources/API/sdk.client.rst.txt +++ /dev/null @@ -1,27 +0,0 @@ - -sdk.client.Client module -=============================== - -sdk.client.Client.Milvus --------------------------------- - -.. autoclass:: client.Client.Milvus - :members: - :undoc-members: - :show-inheritance: - -sdk.client.Clinet.Prepare --------------------------------- - -.. autoclass:: client.Client.Prepare - :members: - :undoc-members: - :show-inheritance: - -sdk.client.Status module -====================================== - -.. automodule:: client.Status - :members: - :undoc-members: - :show-inheritance: diff --git a/python/sdk/doc/en/build/_sources/api.rst.txt b/python/sdk/doc/en/build/_sources/api.rst.txt deleted file mode 100644 index a3724e08e3..0000000000 --- a/python/sdk/doc/en/build/_sources/api.rst.txt +++ /dev/null @@ -1,11 +0,0 @@ -API -*** - -client package -============================== - - -.. toctree:: - :maxdepth: 2 - - API/sdk.client.rst \ No newline at end of file diff --git a/python/sdk/doc/en/build/_sources/index.rst.txt b/python/sdk/doc/en/build/_sources/index.rst.txt deleted file mode 100644 index 5e3b95eebc..0000000000 --- a/python/sdk/doc/en/build/_sources/index.rst.txt +++ /dev/null @@ -1,24 +0,0 @@ -.. MilvusSDK documentation master file, created by - sphinx-quickstart on Thu Jun 13 11:42:09 2019. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -.. raw:: html - -
- - Milvus -
- -Milvus Python SDK ---------------------------- - -Using Milvus with Python - - -.. toctree:: - :maxdepth: 2 - :hidden: - - QuickStart - api diff --git a/python/sdk/doc/en/build/_static/basic.css b/python/sdk/doc/en/build/_static/basic.css deleted file mode 100644 index c41d718e42..0000000000 --- a/python/sdk/doc/en/build/_static/basic.css +++ /dev/null @@ -1,763 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; - word-wrap: break-word; - overflow-wrap : break-word; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox form.search { - overflow: hidden; -} - -div.sphinxsidebar #searchbox input[type="text"] { - float: left; - width: 80%; - padding: 0.25em; - box-sizing: border-box; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - float: left; - width: 20%; - border-left: none; - padding: 0.25em; - box-sizing: border-box; -} - - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; - margin-left: auto; - margin-right: auto; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable ul { - margin-top: 0; - margin-bottom: 0; - list-style-type: none; -} - -table.indextable > tbody > tr > td > ul { - padding-left: 0em; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- domain module index --------------------------------------------------- */ - -table.modindextable td { - padding: 2px; - border-collapse: collapse; -} - -/* -- general body styles --------------------------------------------------- */ - -div.body { - min-width: 450px; - max-width: 800px; -} - -div.body p, div.body dd, div.body li, div.body blockquote { - -moz-hyphens: auto; - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; -} - -a.headerlink { - visibility: hidden; -} - -a.brackets:before, -span.brackets > a:before{ - content: "["; -} - -a.brackets:after, -span.brackets > a:after { - content: "]"; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink, -caption:hover > a.headerlink, -p.caption:hover > a.headerlink, -div.code-block-caption:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -img.align-default, .figure.align-default { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-default { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px 7px 0 7px; - background-color: #ffe; - width: 40%; - float: right; -} - -p.sidebar-title { - font-weight: bold; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px 7px 0 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -div.admonition dl { - margin-bottom: 0; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - border: 0; - border-collapse: collapse; -} - -table.align-center { - margin-left: auto; - margin-right: auto; -} - -table.align-default { - margin-left: auto; - margin-right: auto; -} - -table caption span.caption-number { - font-style: italic; -} - -table caption span.caption-text { -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -th > p:first-child, -td > p:first-child { - margin-top: 0px; -} - -th > p:last-child, -td > p:last-child { - margin-bottom: 0px; -} - -/* -- figures --------------------------------------------------------------- */ - -div.figure { - margin: 0.5em; - padding: 0.5em; -} - -div.figure p.caption { - padding: 0.3em; -} - -div.figure p.caption span.caption-number { - font-style: italic; -} - -div.figure p.caption span.caption-text { -} - -/* -- field list styles ----------------------------------------------------- */ - -table.field-list td, table.field-list th { - border: 0 !important; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.field-name { - -moz-hyphens: manual; - -ms-hyphens: manual; - -webkit-hyphens: manual; - hyphens: manual; -} - -/* -- hlist styles ---------------------------------------------------------- */ - -table.hlist td { - vertical-align: top; -} - - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -li > p:first-child { - margin-top: 0px; -} - -li > p:last-child { - margin-bottom: 0px; -} - -dl.footnote > dt, -dl.citation > dt { - float: left; -} - -dl.footnote > dd, -dl.citation > dd { - margin-bottom: 0em; -} - -dl.footnote > dd:after, -dl.citation > dd:after { - content: ""; - clear: both; -} - -dl.field-list { - display: flex; - flex-wrap: wrap; -} - -dl.field-list > dt { - flex-basis: 20%; - font-weight: bold; - word-break: break-word; -} - -dl.field-list > dt:after { - content: ":"; -} - -dl.field-list > dd { - flex-basis: 70%; - padding-left: 1em; - margin-left: 0em; - margin-bottom: 0em; -} - -dl { - margin-bottom: 15px; -} - -dd > p:first-child { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dt:target, span.highlighted { - background-color: #fbe54e; -} - -rect.highlighted { - fill: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.optional { - font-size: 1.3em; -} - -.sig-paren { - font-size: larger; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -.classifier:before { - font-style: normal; - margin: 0.5em; - content: ":"; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -span.pre { - -moz-hyphens: none; - -ms-hyphens: none; - -webkit-hyphens: none; - hyphens: none; -} - -td.linenos pre { - padding: 5px 0px; - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - margin-left: 0.5em; -} - -table.highlighttable td { - padding: 0 0.5em 0 0.5em; -} - -div.code-block-caption { - padding: 2px 5px; - font-size: small; -} - -div.code-block-caption code { - background-color: transparent; -} - -div.code-block-caption + div > div.highlight > pre { - margin-top: 0; -} - -div.code-block-caption span.caption-number { - padding: 0.1em 0.3em; - font-style: italic; -} - -div.code-block-caption span.caption-text { -} - -div.literal-block-wrapper { - padding: 1em 1em 0; -} - -div.literal-block-wrapper div.highlight { - margin: 0; -} - -code.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -code.descclassname { - background-color: transparent; -} - -code.xref, a code { - background-color: transparent; - font-weight: bold; -} - -h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -span.eqno a.headerlink { - position: relative; - left: 0px; - z-index: 1; -} - -div.math:hover a.headerlink { - visibility: visible; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/python/sdk/doc/en/build/_static/css/badge_only.css b/python/sdk/doc/en/build/_static/css/badge_only.css deleted file mode 100644 index 3c33cef545..0000000000 --- a/python/sdk/doc/en/build/_static/css/badge_only.css +++ /dev/null @@ -1 +0,0 @@ -.fa:before{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-weight:normal;font-style:normal;src:url("../fonts/fontawesome-webfont.eot");src:url("../fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff") format("woff"),url("../fonts/fontawesome-webfont.ttf") format("truetype"),url("../fonts/fontawesome-webfont.svg#FontAwesome") format("svg")}.fa:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa{display:inline-block;text-decoration:inherit}li .fa{display:inline-block}li .fa-large:before,li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-0.8em}ul.fas li .fa{width:.8em}ul.fas li .fa-large:before,ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before{content:""}.icon-book:before{content:""}.fa-caret-down:before{content:""}.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.icon-caret-up:before{content:""}.fa-caret-left:before{content:""}.icon-caret-left:before{content:""}.fa-caret-right:before{content:""}.icon-caret-right:before{content:""}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}} diff --git a/python/sdk/doc/en/build/_static/css/theme.css b/python/sdk/doc/en/build/_static/css/theme.css deleted file mode 100644 index aed8cef066..0000000000 --- a/python/sdk/doc/en/build/_static/css/theme.css +++ /dev/null @@ -1,6 +0,0 @@ -/* sphinx_rtd_theme version 0.4.3 | MIT license */ -/* Built 20190212 16:02 */ -*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:hover,a:active{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;color:#000;text-decoration:none}mark{background:#ff0;color:#000;font-style:italic;font-weight:bold}pre,code,.rst-content tt,.rst-content code,kbd,samp{font-family:monospace,serif;_font-family:"courier new",monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:before,q:after{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}ul,ol,dl{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:0;margin:0;padding:0}label{cursor:pointer}legend{border:0;*margin-left:-7px;padding:0;white-space:normal}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*width:13px;*height:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top;resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none !important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{html,body,section{background:none !important}*{box-shadow:none !important;text-shadow:none !important;filter:none !important;-ms-filter:none !important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:.5cm}p,h2,.rst-content .toctree-wrapper p.caption,h3{orphans:3;widows:3}h2,.rst-content .toctree-wrapper p.caption,h3{page-break-after:avoid}}.fa:before,.wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content .code-block-caption .headerlink:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo,.rst-content .admonition,.btn,input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"],select,textarea,.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a,.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a,.wy-nav-top a{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url("../fonts/fontawesome-webfont.eot?v=4.7.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa,.wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink,.rst-content .code-block-caption .headerlink,.rst-content tt.download span:first-child,.rst-content code.download span:first-child,.icon{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857em;text-align:center}.fa-ul{padding-left:0;margin-left:2.1428571429em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;top:.1428571429em;text-align:center}.fa-li.fa-lg{left:-1.8571428571em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.wy-menu-vertical li span.fa-pull-left.toctree-expand,.wy-menu-vertical li.on a span.fa-pull-left.toctree-expand,.wy-menu-vertical li.current>a span.fa-pull-left.toctree-expand,.rst-content .fa-pull-left.admonition-title,.rst-content h1 .fa-pull-left.headerlink,.rst-content h2 .fa-pull-left.headerlink,.rst-content h3 .fa-pull-left.headerlink,.rst-content h4 .fa-pull-left.headerlink,.rst-content h5 .fa-pull-left.headerlink,.rst-content h6 .fa-pull-left.headerlink,.rst-content dl dt .fa-pull-left.headerlink,.rst-content p.caption .fa-pull-left.headerlink,.rst-content table>caption .fa-pull-left.headerlink,.rst-content .code-block-caption .fa-pull-left.headerlink,.rst-content tt.download span.fa-pull-left:first-child,.rst-content code.download span.fa-pull-left:first-child,.fa-pull-left.icon{margin-right:.3em}.fa.fa-pull-right,.wy-menu-vertical li span.fa-pull-right.toctree-expand,.wy-menu-vertical li.on a span.fa-pull-right.toctree-expand,.wy-menu-vertical li.current>a span.fa-pull-right.toctree-expand,.rst-content .fa-pull-right.admonition-title,.rst-content h1 .fa-pull-right.headerlink,.rst-content h2 .fa-pull-right.headerlink,.rst-content h3 .fa-pull-right.headerlink,.rst-content h4 .fa-pull-right.headerlink,.rst-content h5 .fa-pull-right.headerlink,.rst-content h6 .fa-pull-right.headerlink,.rst-content dl dt .fa-pull-right.headerlink,.rst-content p.caption .fa-pull-right.headerlink,.rst-content table>caption .fa-pull-right.headerlink,.rst-content .code-block-caption .fa-pull-right.headerlink,.rst-content tt.download span.fa-pull-right:first-child,.rst-content code.download span.fa-pull-right:first-child,.fa-pull-right.icon{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.wy-menu-vertical li span.pull-left.toctree-expand,.wy-menu-vertical li.on a span.pull-left.toctree-expand,.wy-menu-vertical li.current>a span.pull-left.toctree-expand,.rst-content .pull-left.admonition-title,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content dl dt .pull-left.headerlink,.rst-content p.caption .pull-left.headerlink,.rst-content table>caption .pull-left.headerlink,.rst-content .code-block-caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.rst-content code.download span.pull-left:first-child,.pull-left.icon{margin-right:.3em}.fa.pull-right,.wy-menu-vertical li span.pull-right.toctree-expand,.wy-menu-vertical li.on a span.pull-right.toctree-expand,.wy-menu-vertical li.current>a span.pull-right.toctree-expand,.rst-content .pull-right.admonition-title,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content dl dt .pull-right.headerlink,.rst-content p.caption .pull-right.headerlink,.rst-content table>caption .pull-right.headerlink,.rst-content .code-block-caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.rst-content code.download span.pull-right:first-child,.pull-right.icon{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.rst-content .admonition-title:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.wy-dropdown .caret:before,.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li span.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before,.icon-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:""}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-signing:before,.fa-sign-language:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-vcard:before,.fa-address-card:before{content:""}.fa-vcard-o:before,.fa-address-card-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa,.wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink,.rst-content .code-block-caption .headerlink,.rst-content tt.download span:first-child,.rst-content code.download span:first-child,.icon,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context{font-family:inherit}.fa:before,.wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content .code-block-caption .headerlink:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before{font-family:"FontAwesome";display:inline-block;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa,a .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li a span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,a .rst-content .admonition-title,.rst-content a .admonition-title,a .rst-content h1 .headerlink,.rst-content h1 a .headerlink,a .rst-content h2 .headerlink,.rst-content h2 a .headerlink,a .rst-content h3 .headerlink,.rst-content h3 a .headerlink,a .rst-content h4 .headerlink,.rst-content h4 a .headerlink,a .rst-content h5 .headerlink,.rst-content h5 a .headerlink,a .rst-content h6 .headerlink,.rst-content h6 a .headerlink,a .rst-content dl dt .headerlink,.rst-content dl dt a .headerlink,a .rst-content p.caption .headerlink,.rst-content p.caption a .headerlink,a .rst-content table>caption .headerlink,.rst-content table>caption a .headerlink,a .rst-content .code-block-caption .headerlink,.rst-content .code-block-caption a .headerlink,a .rst-content tt.download span:first-child,.rst-content tt.download a span:first-child,a .rst-content code.download span:first-child,.rst-content code.download a span:first-child,a .icon{display:inline-block;text-decoration:inherit}.btn .fa,.btn .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .btn span.toctree-expand,.btn .wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.on a .btn span.toctree-expand,.btn .wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.current>a .btn span.toctree-expand,.btn .rst-content .admonition-title,.rst-content .btn .admonition-title,.btn .rst-content h1 .headerlink,.rst-content h1 .btn .headerlink,.btn .rst-content h2 .headerlink,.rst-content h2 .btn .headerlink,.btn .rst-content h3 .headerlink,.rst-content h3 .btn .headerlink,.btn .rst-content h4 .headerlink,.rst-content h4 .btn .headerlink,.btn .rst-content h5 .headerlink,.rst-content h5 .btn .headerlink,.btn .rst-content h6 .headerlink,.rst-content h6 .btn .headerlink,.btn .rst-content dl dt .headerlink,.rst-content dl dt .btn .headerlink,.btn .rst-content p.caption .headerlink,.rst-content p.caption .btn .headerlink,.btn .rst-content table>caption .headerlink,.rst-content table>caption .btn .headerlink,.btn .rst-content .code-block-caption .headerlink,.rst-content .code-block-caption .btn .headerlink,.btn .rst-content tt.download span:first-child,.rst-content tt.download .btn span:first-child,.btn .rst-content code.download span:first-child,.rst-content code.download .btn span:first-child,.btn .icon,.nav .fa,.nav .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .nav span.toctree-expand,.nav .wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.on a .nav span.toctree-expand,.nav .wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.current>a .nav span.toctree-expand,.nav .rst-content .admonition-title,.rst-content .nav .admonition-title,.nav .rst-content h1 .headerlink,.rst-content h1 .nav .headerlink,.nav .rst-content h2 .headerlink,.rst-content h2 .nav .headerlink,.nav .rst-content h3 .headerlink,.rst-content h3 .nav .headerlink,.nav .rst-content h4 .headerlink,.rst-content h4 .nav .headerlink,.nav .rst-content h5 .headerlink,.rst-content h5 .nav .headerlink,.nav .rst-content h6 .headerlink,.rst-content h6 .nav .headerlink,.nav .rst-content dl dt .headerlink,.rst-content dl dt .nav .headerlink,.nav .rst-content p.caption .headerlink,.rst-content p.caption .nav .headerlink,.nav .rst-content table>caption .headerlink,.rst-content table>caption .nav .headerlink,.nav .rst-content .code-block-caption .headerlink,.rst-content .code-block-caption .nav .headerlink,.nav .rst-content tt.download span:first-child,.rst-content tt.download .nav span:first-child,.nav .rst-content code.download span:first-child,.rst-content code.download .nav span:first-child,.nav .icon{display:inline}.btn .fa.fa-large,.btn .wy-menu-vertical li span.fa-large.toctree-expand,.wy-menu-vertical li .btn span.fa-large.toctree-expand,.btn .rst-content .fa-large.admonition-title,.rst-content .btn .fa-large.admonition-title,.btn .rst-content h1 .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.btn .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .btn .fa-large.headerlink,.btn .rst-content p.caption .fa-large.headerlink,.rst-content p.caption .btn .fa-large.headerlink,.btn .rst-content table>caption .fa-large.headerlink,.rst-content table>caption .btn .fa-large.headerlink,.btn .rst-content .code-block-caption .fa-large.headerlink,.rst-content .code-block-caption .btn .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.rst-content tt.download .btn span.fa-large:first-child,.btn .rst-content code.download span.fa-large:first-child,.rst-content code.download .btn span.fa-large:first-child,.btn .fa-large.icon,.nav .fa.fa-large,.nav .wy-menu-vertical li span.fa-large.toctree-expand,.wy-menu-vertical li .nav span.fa-large.toctree-expand,.nav .rst-content .fa-large.admonition-title,.rst-content .nav .fa-large.admonition-title,.nav .rst-content h1 .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.nav .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.nav .rst-content p.caption .fa-large.headerlink,.rst-content p.caption .nav .fa-large.headerlink,.nav .rst-content table>caption .fa-large.headerlink,.rst-content table>caption .nav .fa-large.headerlink,.nav .rst-content .code-block-caption .fa-large.headerlink,.rst-content .code-block-caption .nav .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.nav .rst-content code.download span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.nav .fa-large.icon{line-height:.9em}.btn .fa.fa-spin,.btn .wy-menu-vertical li span.fa-spin.toctree-expand,.wy-menu-vertical li .btn span.fa-spin.toctree-expand,.btn .rst-content .fa-spin.admonition-title,.rst-content .btn .fa-spin.admonition-title,.btn .rst-content h1 .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.btn .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .btn .fa-spin.headerlink,.btn .rst-content p.caption .fa-spin.headerlink,.rst-content p.caption .btn .fa-spin.headerlink,.btn .rst-content table>caption .fa-spin.headerlink,.rst-content table>caption .btn .fa-spin.headerlink,.btn .rst-content .code-block-caption .fa-spin.headerlink,.rst-content .code-block-caption .btn .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.rst-content tt.download .btn span.fa-spin:first-child,.btn .rst-content code.download span.fa-spin:first-child,.rst-content code.download .btn span.fa-spin:first-child,.btn .fa-spin.icon,.nav .fa.fa-spin,.nav .wy-menu-vertical li span.fa-spin.toctree-expand,.wy-menu-vertical li .nav span.fa-spin.toctree-expand,.nav .rst-content .fa-spin.admonition-title,.rst-content .nav .fa-spin.admonition-title,.nav .rst-content h1 .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.nav .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.nav .rst-content p.caption .fa-spin.headerlink,.rst-content p.caption .nav .fa-spin.headerlink,.nav .rst-content table>caption .fa-spin.headerlink,.rst-content table>caption .nav .fa-spin.headerlink,.nav .rst-content .code-block-caption .fa-spin.headerlink,.rst-content .code-block-caption .nav .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.nav .rst-content code.download span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.nav .fa-spin.icon{display:inline-block}.btn.fa:before,.wy-menu-vertical li span.btn.toctree-expand:before,.rst-content .btn.admonition-title:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content dl dt .btn.headerlink:before,.rst-content p.caption .btn.headerlink:before,.rst-content table>caption .btn.headerlink:before,.rst-content .code-block-caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.rst-content code.download span.btn:first-child:before,.btn.icon:before{opacity:.5;-webkit-transition:opacity .05s ease-in;-moz-transition:opacity .05s ease-in;transition:opacity .05s ease-in}.btn.fa:hover:before,.wy-menu-vertical li span.btn.toctree-expand:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content p.caption .btn.headerlink:hover:before,.rst-content table>caption .btn.headerlink:hover:before,.rst-content .code-block-caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.rst-content code.download span.btn:first-child:hover:before,.btn.icon:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li .btn-mini span.toctree-expand:before,.btn-mini .rst-content .admonition-title:before,.rst-content .btn-mini .admonition-title:before,.btn-mini .rst-content h1 .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.btn-mini .rst-content dl dt .headerlink:before,.rst-content dl dt .btn-mini .headerlink:before,.btn-mini .rst-content p.caption .headerlink:before,.rst-content p.caption .btn-mini .headerlink:before,.btn-mini .rst-content table>caption .headerlink:before,.rst-content table>caption .btn-mini .headerlink:before,.btn-mini .rst-content .code-block-caption .headerlink:before,.rst-content .code-block-caption .btn-mini .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.rst-content tt.download .btn-mini span:first-child:before,.btn-mini .rst-content code.download span:first-child:before,.rst-content code.download .btn-mini span:first-child:before,.btn-mini .icon:before{font-size:14px;vertical-align:-15%}.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo,.rst-content .admonition{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.wy-alert-title,.rst-content .admonition-title{color:#fff;font-weight:bold;display:block;color:#fff;background:#6ab0de;margin:-12px;padding:6px 12px;margin-bottom:12px}.wy-alert.wy-alert-danger,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.admonition{background:#fdf3f2}.wy-alert.wy-alert-danger .wy-alert-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .danger .wy-alert-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .danger .admonition-title,.rst-content .error .admonition-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition .admonition-title{background:#f29f97}.wy-alert.wy-alert-warning,.rst-content .wy-alert-warning.note,.rst-content .attention,.rst-content .caution,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.tip,.rst-content .warning,.rst-content .wy-alert-warning.seealso,.rst-content .admonition-todo,.rst-content .wy-alert-warning.admonition{background:#ffedcc}.wy-alert.wy-alert-warning .wy-alert-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .attention .wy-alert-title,.rst-content .caution .wy-alert-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .attention .admonition-title,.rst-content .caution .admonition-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .warning .admonition-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .admonition-todo .admonition-title,.rst-content .wy-alert-warning.admonition .admonition-title{background:#f0b37e}.wy-alert.wy-alert-info,.rst-content .note,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.rst-content .seealso,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.admonition{background:#e7f2fa}.wy-alert.wy-alert-info .wy-alert-title,.rst-content .note .wy-alert-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.rst-content .wy-alert-info.admonition .wy-alert-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.rst-content .note .admonition-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .seealso .admonition-title,.rst-content .wy-alert-info.admonition-todo .admonition-title,.rst-content .wy-alert-info.admonition .admonition-title{background:#6ab0de}.wy-alert.wy-alert-success,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.warning,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.admonition-todo,.rst-content .wy-alert-success.admonition{background:#dbfaf4}.wy-alert.wy-alert-success .wy-alert-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .hint .wy-alert-title,.rst-content .important .wy-alert-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.rst-content .wy-alert-success.admonition .wy-alert-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .hint .admonition-title,.rst-content .important .admonition-title,.rst-content .tip .admonition-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.admonition-todo .admonition-title,.rst-content .wy-alert-success.admonition .admonition-title{background:#1abc9c}.wy-alert.wy-alert-neutral,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.admonition-todo,.rst-content .wy-alert-neutral.admonition{background:#f3f6f6}.wy-alert.wy-alert-neutral .wy-alert-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.rst-content .wy-alert-neutral.admonition .wy-alert-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .admonition-title,.rst-content .wy-alert-neutral.admonition .admonition-title{color:#404040;background:#e1e4e5}.wy-alert.wy-alert-neutral a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.admonition-todo a,.rst-content .wy-alert-neutral.admonition a{color:#2980B9}.wy-alert p:last-child,.rst-content .note p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.rst-content .seealso p:last-child,.rst-content .admonition-todo p:last-child,.rst-content .admonition p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0px;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,0.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27AE60}.wy-tray-container li.wy-tray-item-info{background:#2980B9}.wy-tray-container li.wy-tray-item-warning{background:#E67E22}.wy-tray-container li.wy-tray-item-danger{background:#E74C3C}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width: 768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px 12px;color:#fff;border:1px solid rgba(0,0,0,0.1);background-color:#27AE60;text-decoration:none;font-weight:normal;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:0px 1px 2px -1px rgba(255,255,255,0.5) inset,0px -2px 0px 0px rgba(0,0,0,0.1) inset;outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;transition:all .1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:0px -1px 0px 0px rgba(0,0,0,0.05) inset,0px 2px 0px 0px rgba(0,0,0,0.1) inset;padding:8px 12px 6px 12px}.btn:visited{color:#fff}.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn-disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn-disabled:hover,.btn-disabled:focus,.btn-disabled:active{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980B9 !important}.btn-info:hover{background-color:#2e8ece !important}.btn-neutral{background-color:#f3f6f6 !important;color:#404040 !important}.btn-neutral:hover{background-color:#e5ebeb !important;color:#404040}.btn-neutral:visited{color:#404040 !important}.btn-success{background-color:#27AE60 !important}.btn-success:hover{background-color:#295 !important}.btn-danger{background-color:#E74C3C !important}.btn-danger:hover{background-color:#ea6153 !important}.btn-warning{background-color:#E67E22 !important}.btn-warning:hover{background-color:#e98b39 !important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f !important}.btn-link{background-color:transparent !important;color:#2980B9;box-shadow:none;border-color:transparent !important}.btn-link:hover{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:active{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:visited{color:#9B59B6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:before,.wy-btn-group:after{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:solid 1px #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,0.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980B9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:solid 1px #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type="search"]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980B9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned input,.wy-form-aligned textarea,.wy-form-aligned select,.wy-form-aligned .wy-help-inline,.wy-form-aligned label{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{border:0;margin:0;padding:0}legend{display:block;width:100%;border:0;padding:0;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label{display:block;margin:0 0 .3125em 0;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;*zoom:1;max-width:68em;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#E74C3C}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full input[type="text"],.wy-control-group .wy-form-full input[type="password"],.wy-control-group .wy-form-full input[type="email"],.wy-control-group .wy-form-full input[type="url"],.wy-control-group .wy-form-full input[type="date"],.wy-control-group .wy-form-full input[type="month"],.wy-control-group .wy-form-full input[type="time"],.wy-control-group .wy-form-full input[type="datetime"],.wy-control-group .wy-form-full input[type="datetime-local"],.wy-control-group .wy-form-full input[type="week"],.wy-control-group .wy-form-full input[type="number"],.wy-control-group .wy-form-full input[type="search"],.wy-control-group .wy-form-full input[type="tel"],.wy-control-group .wy-form-full input[type="color"],.wy-control-group .wy-form-halves input[type="text"],.wy-control-group .wy-form-halves input[type="password"],.wy-control-group .wy-form-halves input[type="email"],.wy-control-group .wy-form-halves input[type="url"],.wy-control-group .wy-form-halves input[type="date"],.wy-control-group .wy-form-halves input[type="month"],.wy-control-group .wy-form-halves input[type="time"],.wy-control-group .wy-form-halves input[type="datetime"],.wy-control-group .wy-form-halves input[type="datetime-local"],.wy-control-group .wy-form-halves input[type="week"],.wy-control-group .wy-form-halves input[type="number"],.wy-control-group .wy-form-halves input[type="search"],.wy-control-group .wy-form-halves input[type="tel"],.wy-control-group .wy-form-halves input[type="color"],.wy-control-group .wy-form-thirds input[type="text"],.wy-control-group .wy-form-thirds input[type="password"],.wy-control-group .wy-form-thirds input[type="email"],.wy-control-group .wy-form-thirds input[type="url"],.wy-control-group .wy-form-thirds input[type="date"],.wy-control-group .wy-form-thirds input[type="month"],.wy-control-group .wy-form-thirds input[type="time"],.wy-control-group .wy-form-thirds input[type="datetime"],.wy-control-group .wy-form-thirds input[type="datetime-local"],.wy-control-group .wy-form-thirds input[type="week"],.wy-control-group .wy-form-thirds input[type="number"],.wy-control-group .wy-form-thirds input[type="search"],.wy-control-group .wy-form-thirds input[type="tel"],.wy-control-group .wy-form-thirds input[type="color"]{width:100%}.wy-control-group .wy-form-full{float:left;display:block;margin-right:2.3576515979%;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.3576515979%;width:48.821174201%}.wy-control-group .wy-form-halves:last-child{margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n+1){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.3576515979%;width:31.7615656014%}.wy-control-group .wy-form-thirds:last-child{margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control{margin:6px 0 0 0;font-size:90%}.wy-control-no-input{display:inline-block;margin:6px 0 0 0;font-size:90%}.wy-control-group.fluid-input input[type="text"],.wy-control-group.fluid-input input[type="password"],.wy-control-group.fluid-input input[type="email"],.wy-control-group.fluid-input input[type="url"],.wy-control-group.fluid-input input[type="date"],.wy-control-group.fluid-input input[type="month"],.wy-control-group.fluid-input input[type="time"],.wy-control-group.fluid-input input[type="datetime"],.wy-control-group.fluid-input input[type="datetime-local"],.wy-control-group.fluid-input input[type="week"],.wy-control-group.fluid-input input[type="number"],.wy-control-group.fluid-input input[type="search"],.wy-control-group.fluid-input input[type="tel"],.wy-control-group.fluid-input input[type="color"]{width:100%}.wy-form-message-inline{display:inline-block;padding-left:.3em;color:#666;vertical-align:middle;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;*overflow:visible}input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}input[type="datetime-local"]{padding:.34375em .625em}input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin-right:.3125em;*height:13px;*width:13px}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus{outline:0;outline:thin dotted \9;border-color:#333}input.no-focus:focus{border-color:#ccc !important}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:1px auto #129FEA}input[type="text"][disabled],input[type="password"][disabled],input[type="email"][disabled],input[type="url"][disabled],input[type="date"][disabled],input[type="month"][disabled],input[type="time"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="week"][disabled],input[type="number"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="color"][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#E74C3C;border:1px solid #E74C3C}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#E74C3C}input[type="file"]:focus:invalid:focus,input[type="radio"]:focus:invalid:focus,input[type="checkbox"]:focus:invalid:focus{outline-color:#E74C3C}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif}select,textarea{padding:.5em .625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type="radio"][disabled],input[type="checkbox"][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:solid 1px #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{position:relative;display:block;height:24px;margin-top:12px;cursor:pointer}.wy-switch:before{position:absolute;content:"";display:block;left:0;top:0;width:36px;height:12px;border-radius:4px;background:#ccc;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch:after{position:absolute;content:"";display:block;width:18px;height:18px;border-radius:4px;background:#999;left:-3px;top:-3px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch span{position:absolute;left:48px;display:block;font-size:12px;color:#ccc;line-height:1}.wy-switch.active:before{background:#1e8449}.wy-switch.active:after{left:24px;background:#27AE60}.wy-switch.disabled{cursor:not-allowed;opacity:.8}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#E74C3C}.wy-control-group.wy-control-group-error input[type="text"],.wy-control-group.wy-control-group-error input[type="password"],.wy-control-group.wy-control-group-error input[type="email"],.wy-control-group.wy-control-group-error input[type="url"],.wy-control-group.wy-control-group-error input[type="date"],.wy-control-group.wy-control-group-error input[type="month"],.wy-control-group.wy-control-group-error input[type="time"],.wy-control-group.wy-control-group-error input[type="datetime"],.wy-control-group.wy-control-group-error input[type="datetime-local"],.wy-control-group.wy-control-group-error input[type="week"],.wy-control-group.wy-control-group-error input[type="number"],.wy-control-group.wy-control-group-error input[type="search"],.wy-control-group.wy-control-group-error input[type="tel"],.wy-control-group.wy-control-group-error input[type="color"]{border:solid 1px #E74C3C}.wy-control-group.wy-control-group-error textarea{border:solid 1px #E74C3C}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:.5em .625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27AE60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#E74C3C}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#E67E22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980B9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width: 480px){.wy-form button[type="submit"]{margin:.7em 0 0}.wy-form input[type="text"],.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:.3em;display:block}.wy-form label{margin-bottom:.3em;display:block}.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0 0}.wy-form .wy-help-inline,.wy-form-message-inline,.wy-form-message{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width: 768px){.tablet-hide{display:none}}@media screen and (max-width: 480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.wy-table,.rst-content table.docutils,.rst-content table.field-list{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.wy-table caption,.rst-content table.docutils caption,.rst-content table.field-list caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td,.wy-table th,.rst-content table.docutils th,.rst-content table.field-list th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.wy-table td:first-child,.rst-content table.docutils td:first-child,.rst-content table.field-list td:first-child,.wy-table th:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list th:first-child{border-left-width:0}.wy-table thead,.rst-content table.docutils thead,.rst-content table.field-list thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.wy-table thead th,.rst-content table.docutils thead th,.rst-content table.field-list thead th{font-weight:bold;border-bottom:solid 2px #e1e4e5}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td{background-color:transparent;vertical-align:middle}.wy-table td p,.rst-content table.docutils td p,.rst-content table.field-list td p{line-height:18px}.wy-table td p:last-child,.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child{margin-bottom:0}.wy-table .wy-table-cell-min,.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min{width:1%;padding-right:0}.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:gray;font-size:90%}.wy-table-tertiary{color:gray;font-size:80%}.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td,.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td{background-color:#f3f6f6}.wy-table-backed{background-color:#f3f6f6}.wy-table-bordered-all,.rst-content table.docutils{border:1px solid #e1e4e5}.wy-table-bordered-all td,.rst-content table.docutils td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.wy-table-bordered-all tbody>tr:last-child td,.rst-content table.docutils tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px 0;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0 !important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980B9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9B59B6}html{height:100%;overflow-x:hidden}body{font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;font-weight:normal;color:#404040;min-height:100%;overflow-x:hidden;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#E67E22 !important}a.wy-text-warning:hover{color:#eb9950 !important}.wy-text-info{color:#2980B9 !important}a.wy-text-info:hover{color:#409ad5 !important}.wy-text-success{color:#27AE60 !important}a.wy-text-success:hover{color:#36d278 !important}.wy-text-danger{color:#E74C3C !important}a.wy-text-danger:hover{color:#ed7669 !important}.wy-text-neutral{color:#404040 !important}a.wy-text-neutral:hover{color:#595959 !important}h1,h2,.rst-content .toctree-wrapper p.caption,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif}p{line-height:24px;margin:0;font-size:16px;margin-bottom:24px}h1{font-size:175%}h2,.rst-content .toctree-wrapper p.caption{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}code,.rst-content tt,.rst-content code{white-space:nowrap;max-width:100%;background:#fff;border:solid 1px #e1e4e5;font-size:75%;padding:0 5px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;color:#E74C3C;overflow-x:auto}code.code-large,.rst-content tt.code-large{font-size:90%}.wy-plain-list-disc,.rst-content .section ul,.rst-content .toctree-wrapper ul,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.wy-plain-list-disc li,.rst-content .section ul li,.rst-content .toctree-wrapper ul li,article ul li{list-style:disc;margin-left:24px}.wy-plain-list-disc li p:last-child,.rst-content .section ul li p:last-child,.rst-content .toctree-wrapper ul li p:last-child,article ul li p:last-child{margin-bottom:0}.wy-plain-list-disc li ul,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li ul,article ul li ul{margin-bottom:0}.wy-plain-list-disc li li,.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,article ul li li{list-style:circle}.wy-plain-list-disc li li li,.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,article ul li li li{list-style:square}.wy-plain-list-disc li ol li,.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,article ul li ol li{list-style:decimal}.wy-plain-list-decimal,.rst-content .section ol,.rst-content ol.arabic,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.wy-plain-list-decimal li,.rst-content .section ol li,.rst-content ol.arabic li,article ol li{list-style:decimal;margin-left:24px}.wy-plain-list-decimal li p:last-child,.rst-content .section ol li p:last-child,.rst-content ol.arabic li p:last-child,article ol li p:last-child{margin-bottom:0}.wy-plain-list-decimal li ul,.rst-content .section ol li ul,.rst-content ol.arabic li ul,article ol li ul{margin-bottom:0}.wy-plain-list-decimal li ul li,.rst-content .section ol li ul li,.rst-content ol.arabic li ul li,article ol li ul li{list-style:disc}.wy-breadcrumbs{*zoom:1}.wy-breadcrumbs:before,.wy-breadcrumbs:after{display:table;content:""}.wy-breadcrumbs:after{clear:both}.wy-breadcrumbs li{display:inline-block}.wy-breadcrumbs li.wy-breadcrumbs-aside{float:right}.wy-breadcrumbs li a{display:inline-block;padding:5px}.wy-breadcrumbs li a:first-child{padding-left:0}.wy-breadcrumbs li code,.wy-breadcrumbs li .rst-content tt,.rst-content .wy-breadcrumbs li tt{padding:5px;border:none;background:none}.wy-breadcrumbs li code.literal,.wy-breadcrumbs li .rst-content tt.literal,.rst-content .wy-breadcrumbs li tt.literal{color:#404040}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width: 480px){.wy-breadcrumbs-extra{display:none}.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}html{font-size:16px}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:before,.wy-menu-horiz:after{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz ul,.wy-menu-horiz li{display:inline-block}.wy-menu-horiz li:hover{background:rgba(255,255,255,0.1)}.wy-menu-horiz li.divide-left{border-left:solid 1px #404040}.wy-menu-horiz li.divide-right{border-right:solid 1px #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{color:#3a7ca8;height:32px;display:inline-block;line-height:32px;padding:0 1.618em;margin:12px 0 0 0;display:block;font-weight:bold;text-transform:uppercase;font-size:85%;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:solid 1px #404040}.wy-menu-vertical li.divide-bottom{border-bottom:solid 1px #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:gray;border-right:solid 1px #c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.wy-menu-vertical li code,.wy-menu-vertical li .rst-content tt,.rst-content .wy-menu-vertical li tt{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li span.toctree-expand{display:block;float:left;margin-left:-1.2em;font-size:.8em;line-height:1.6em;color:#4d4d4d}.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a{color:#404040;padding:.4045em 1.618em;font-weight:bold;position:relative;background:#fcfcfc;border:none;padding-left:1.618em -4px}.wy-menu-vertical li.on a:hover,.wy-menu-vertical li.current>a:hover{background:#fcfcfc}.wy-menu-vertical li.on a:hover span.toctree-expand,.wy-menu-vertical li.current>a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand{display:block;font-size:.8em;line-height:1.6em;color:#333}.wy-menu-vertical li.toctree-l1.current>a{border-bottom:solid 1px #c9c9c9;border-top:solid 1px #c9c9c9}.wy-menu-vertical li.toctree-l2 a,.wy-menu-vertical li.toctree-l3 a,.wy-menu-vertical li.toctree-l4 a{color:#404040}.wy-menu-vertical li.toctree-l1.current li.toctree-l2>ul,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>ul{display:none}.wy-menu-vertical li.toctree-l1.current li.toctree-l2.current>ul,.wy-menu-vertical li.toctree-l2.current li.toctree-l3.current>ul{display:block}.wy-menu-vertical li.toctree-l2.current>a{background:#c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{display:block;background:#c9c9c9;padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l2 a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.toctree-l2 span.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3{font-size:.9em}.wy-menu-vertical li.toctree-l3.current>a{background:#bdbdbd;padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{display:block;background:#bdbdbd;padding:.4045em 5.663em}.wy-menu-vertical li.toctree-l3 a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.toctree-l3 span.toctree-expand{color:#969696}.wy-menu-vertical li.toctree-l4{font-size:.9em}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical li ul li a{margin-bottom:0;color:#d9d9d9;font-weight:normal}.wy-menu-vertical a{display:inline-block;line-height:18px;padding:.4045em 1.618em;display:block;position:relative;font-size:90%;color:#d9d9d9}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover span.toctree-expand{color:#d9d9d9}.wy-menu-vertical a:active{background-color:#2980B9;cursor:pointer;color:#fff}.wy-menu-vertical a:active span.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:.809em;margin-bottom:.809em;z-index:200;background-color:#2980B9;text-align:center;padding:.809em;display:block;color:#fcfcfc;margin-bottom:.809em}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto .809em auto;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a{color:#fcfcfc;font-size:100%;font-weight:bold;display:inline-block;padding:4px 6px;margin-bottom:.809em}.wy-side-nav-search>a:hover,.wy-side-nav-search .wy-dropdown>a:hover{background:rgba(255,255,255,0.1)}.wy-side-nav-search>a img.logo,.wy-side-nav-search .wy-dropdown>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search>a.icon img.logo,.wy-side-nav-search .wy-dropdown>a.icon img.logo{margin-top:.85em}.wy-side-nav-search>div.version{margin-top:-.4045em;margin-bottom:.809em;font-weight:normal;color:rgba(255,255,255,0.3)}.wy-nav .wy-menu-vertical header{color:#2980B9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980B9;color:#fff}[data-menu-wrap]{-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;transition:all .2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:#fcfcfc}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;color:#9b9b9b;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980B9;color:#fff;padding:.4045em .809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:before,.wy-nav-top:after{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:bold}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer;padding-top:inherit}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:gray}footer p{margin-bottom:12px}footer span.commit code,footer span.commit .rst-content tt,.rst-content footer span.commit tt{padding:0px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;font-size:1em;background:none;border:none;color:gray}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:before,.rst-footer-buttons:after{width:100%}.rst-footer-buttons:before,.rst-footer-buttons:after{display:table;content:""}.rst-footer-buttons:after{clear:both}.rst-breadcrumbs-buttons{margin-top:12px;*zoom:1}.rst-breadcrumbs-buttons:before,.rst-breadcrumbs-buttons:after{display:table;content:""}.rst-breadcrumbs-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:solid 1px #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:solid 1px #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:gray;font-size:90%}.genindextable li>ul{margin-left:24px}@media screen and (max-width: 768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-side-scroll{width:auto}.wy-side-nav-search{width:auto}.wy-menu.wy-menu-vertical{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width: 1100px){.wy-nav-content-wrap{background:rgba(0,0,0,0.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,footer,.wy-nav-side{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version span.toctree-expand,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content p.caption .headerlink,.rst-content p.caption .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content table>caption .headerlink,.rst-content table>caption .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content .code-block-caption .headerlink,.rst-content .code-block-caption .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .icon{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}.rst-content img{max-width:100%;height:auto}.rst-content div.figure{margin-bottom:24px}.rst-content div.figure p.caption{font-style:italic}.rst-content div.figure p:last-child.caption{margin-bottom:0px}.rst-content div.figure.align-center{text-align:center}.rst-content .section>img,.rst-content .section>a>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content.style-external-links a.reference.external:after{font-family:FontAwesome;content:"";color:#b3b3b3;vertical-align:super;font-size:60%;margin:0 .2em}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre.literal-block{white-space:pre;margin:0;padding:12px 12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;display:block;overflow:auto}.rst-content pre.literal-block,.rst-content div[class^='highlight']{border:1px solid #e1e4e5;overflow-x:auto;margin:1px 0 24px 0}.rst-content pre.literal-block div[class^='highlight'],.rst-content div[class^='highlight'] div[class^='highlight']{padding:0px;border:none;margin:0}.rst-content div[class^='highlight'] td.code{width:100%}.rst-content .linenodiv pre{border-right:solid 1px #e6e9ea;margin:0;padding:12px 12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;user-select:none;pointer-events:none}.rst-content div[class^='highlight'] pre{white-space:pre;margin:0;padding:12px 12px;display:block;overflow:auto}.rst-content div[class^='highlight'] pre .hll{display:block;margin:0 -12px;padding:0 12px}.rst-content pre.literal-block,.rst-content div[class^='highlight'] pre,.rst-content .linenodiv pre{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;font-size:12px;line-height:1.4}.rst-content .code-block-caption{font-style:italic;font-size:85%;line-height:1;padding:1em 0;text-align:center}@media print{.rst-content .codeblock,.rst-content div[class^='highlight'],.rst-content div[class^='highlight'] pre{white-space:pre-wrap}}.rst-content .note .last,.rst-content .attention .last,.rst-content .caution .last,.rst-content .danger .last,.rst-content .error .last,.rst-content .hint .last,.rst-content .important .last,.rst-content .tip .last,.rst-content .warning .last,.rst-content .seealso .last,.rst-content .admonition-todo .last,.rst-content .admonition .last{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,0.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent !important;border-color:rgba(0,0,0,0.1) !important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha li{list-style:upper-alpha}.rst-content .section ol p,.rst-content .section ul p{margin-bottom:12px}.rst-content .section ol p:last-child,.rst-content .section ul p:last-child{margin-bottom:24px}.rst-content .line-block{margin-left:0px;margin-bottom:24px;line-height:24px}.rst-content .line-block .line-block{margin-left:24px;margin-bottom:0px}.rst-content .topic-title{font-weight:bold;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0px 0px 24px 24px}.rst-content .align-left{float:left;margin:0px 24px 24px 0px}.rst-content .align-center{margin:auto}.rst-content .align-center:not(table){display:block}.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content .toctree-wrapper p.caption .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink,.rst-content .code-block-caption .headerlink{visibility:hidden;font-size:14px}.rst-content h1 .headerlink:after,.rst-content h2 .headerlink:after,.rst-content .toctree-wrapper p.caption .headerlink:after,.rst-content h3 .headerlink:after,.rst-content h4 .headerlink:after,.rst-content h5 .headerlink:after,.rst-content h6 .headerlink:after,.rst-content dl dt .headerlink:after,.rst-content p.caption .headerlink:after,.rst-content table>caption .headerlink:after,.rst-content .code-block-caption .headerlink:after{content:"";font-family:FontAwesome}.rst-content h1:hover .headerlink:after,.rst-content h2:hover .headerlink:after,.rst-content .toctree-wrapper p.caption:hover .headerlink:after,.rst-content h3:hover .headerlink:after,.rst-content h4:hover .headerlink:after,.rst-content h5:hover .headerlink:after,.rst-content h6:hover .headerlink:after,.rst-content dl dt:hover .headerlink:after,.rst-content p.caption:hover .headerlink:after,.rst-content table>caption:hover .headerlink:after,.rst-content .code-block-caption:hover .headerlink:after{visibility:visible}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .centered{text-align:center}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:solid 1px #e1e4e5}.rst-content .sidebar p,.rst-content .sidebar ul,.rst-content .sidebar dl{font-size:90%}.rst-content .sidebar .last{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;font-weight:bold;background:#e1e4e5;padding:6px 12px;margin:-24px;margin-bottom:24px;font-size:100%}.rst-content .highlighted{background:#F1C40F;display:inline-block;font-weight:bold;padding:0 6px}.rst-content .footnote-reference,.rst-content .citation-reference{vertical-align:baseline;position:relative;top:-0.4em;line-height:0;font-size:90%}.rst-content table.docutils.citation,.rst-content table.docutils.footnote{background:none;border:none;color:gray}.rst-content table.docutils.citation td,.rst-content table.docutils.citation tr,.rst-content table.docutils.footnote td,.rst-content table.docutils.footnote tr{border:none;background-color:transparent !important;white-space:normal}.rst-content table.docutils.citation td.label,.rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}.rst-content table.docutils.citation tt,.rst-content table.docutils.citation code,.rst-content table.docutils.footnote tt,.rst-content table.docutils.footnote code{color:#555}.rst-content .wy-table-responsive.citation,.rst-content .wy-table-responsive.footnote{margin-bottom:0}.rst-content .wy-table-responsive.citation+:not(.citation),.rst-content .wy-table-responsive.footnote+:not(.footnote){margin-top:24px}.rst-content .wy-table-responsive.citation:last-child,.rst-content .wy-table-responsive.footnote:last-child{margin-bottom:24px}.rst-content table.docutils th{border-color:#e1e4e5}.rst-content table.docutils td .last,.rst-content table.docutils td .last :last-child{margin-bottom:0}.rst-content table.field-list{border:none}.rst-content table.field-list td{border:none}.rst-content table.field-list td p{font-size:inherit;line-height:inherit}.rst-content table.field-list td>strong{display:inline-block}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left}.rst-content tt,.rst-content tt,.rst-content code{color:#000;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;padding:2px 5px}.rst-content tt big,.rst-content tt em,.rst-content tt big,.rst-content code big,.rst-content tt em,.rst-content code em{font-size:100% !important;line-height:normal}.rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal{color:#E74C3C}.rst-content tt.xref,a .rst-content tt,.rst-content tt.xref,.rst-content code.xref,a .rst-content tt,a .rst-content code{font-weight:bold;color:#404040}.rst-content pre,.rst-content kbd,.rst-content samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace}.rst-content a tt,.rst-content a tt,.rst-content a code{color:#2980B9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:bold;margin-bottom:12px}.rst-content dl p,.rst-content dl table,.rst-content dl ul,.rst-content dl ol{margin-bottom:12px !important}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}.rst-content dl:not(.docutils){margin-bottom:24px}.rst-content dl:not(.docutils) dt{display:table;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980B9;border-top:solid 3px #6ab0de;padding:6px;position:relative}.rst-content dl:not(.docutils) dt:before{color:#6ab0de}.rst-content dl:not(.docutils) dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dl dt{margin-bottom:6px;border:none;border-left:solid 3px #ccc;background:#f0f0f0;color:#555}.rst-content dl:not(.docutils) dl dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dt:first-child{margin-top:0}.rst-content dl:not(.docutils) tt,.rst-content dl:not(.docutils) tt,.rst-content dl:not(.docutils) code{font-weight:bold}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descclassname,.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) code.descname,.rst-content dl:not(.docutils) tt.descclassname,.rst-content dl:not(.docutils) code.descclassname{background-color:transparent;border:none;padding:0;font-size:100% !important}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) code.descname{font-weight:bold}.rst-content dl:not(.docutils) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:bold}.rst-content dl:not(.docutils) .property{display:inline-block;padding-right:8px}.rst-content .viewcode-link,.rst-content .viewcode-back{display:inline-block;color:#27AE60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:bold}.rst-content tt.download,.rst-content code.download{background:inherit;padding:inherit;font-weight:normal;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content tt.download span:first-child,.rst-content code.download span:first-child{-webkit-font-smoothing:subpixel-antialiased}.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before{margin-right:4px}.rst-content .guilabel{border:1px solid #7fbbe3;background:#e7f2fa;font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}.rst-content .versionmodified{font-style:italic}@media screen and (max-width: 480px){.rst-content .sidebar{width:100%}}span[id*='MathJax-Span']{color:#404040}.math{text-align:center}@font-face{font-family:"Lato";src:url("../fonts/Lato/lato-regular.eot");src:url("../fonts/Lato/lato-regular.eot?#iefix") format("embedded-opentype"),url("../fonts/Lato/lato-regular.woff2") format("woff2"),url("../fonts/Lato/lato-regular.woff") format("woff"),url("../fonts/Lato/lato-regular.ttf") format("truetype");font-weight:400;font-style:normal}@font-face{font-family:"Lato";src:url("../fonts/Lato/lato-bold.eot");src:url("../fonts/Lato/lato-bold.eot?#iefix") format("embedded-opentype"),url("../fonts/Lato/lato-bold.woff2") format("woff2"),url("../fonts/Lato/lato-bold.woff") format("woff"),url("../fonts/Lato/lato-bold.ttf") format("truetype");font-weight:700;font-style:normal}@font-face{font-family:"Lato";src:url("../fonts/Lato/lato-bolditalic.eot");src:url("../fonts/Lato/lato-bolditalic.eot?#iefix") format("embedded-opentype"),url("../fonts/Lato/lato-bolditalic.woff2") format("woff2"),url("../fonts/Lato/lato-bolditalic.woff") format("woff"),url("../fonts/Lato/lato-bolditalic.ttf") format("truetype");font-weight:700;font-style:italic}@font-face{font-family:"Lato";src:url("../fonts/Lato/lato-italic.eot");src:url("../fonts/Lato/lato-italic.eot?#iefix") format("embedded-opentype"),url("../fonts/Lato/lato-italic.woff2") format("woff2"),url("../fonts/Lato/lato-italic.woff") format("woff"),url("../fonts/Lato/lato-italic.ttf") format("truetype");font-weight:400;font-style:italic}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:400;src:url("../fonts/RobotoSlab/roboto-slab.eot");src:url("../fonts/RobotoSlab/roboto-slab-v7-regular.eot?#iefix") format("embedded-opentype"),url("../fonts/RobotoSlab/roboto-slab-v7-regular.woff2") format("woff2"),url("../fonts/RobotoSlab/roboto-slab-v7-regular.woff") format("woff"),url("../fonts/RobotoSlab/roboto-slab-v7-regular.ttf") format("truetype")}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:700;src:url("../fonts/RobotoSlab/roboto-slab-v7-bold.eot");src:url("../fonts/RobotoSlab/roboto-slab-v7-bold.eot?#iefix") format("embedded-opentype"),url("../fonts/RobotoSlab/roboto-slab-v7-bold.woff2") format("woff2"),url("../fonts/RobotoSlab/roboto-slab-v7-bold.woff") format("woff"),url("../fonts/RobotoSlab/roboto-slab-v7-bold.ttf") format("truetype")} diff --git a/python/sdk/doc/en/build/_static/doctools.js b/python/sdk/doc/en/build/_static/doctools.js deleted file mode 100644 index b33f87fcb2..0000000000 --- a/python/sdk/doc/en/build/_static/doctools.js +++ /dev/null @@ -1,314 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - */ -jQuery.urldecode = function(x) { - return decodeURIComponent(x).replace(/\+/g, ' '); -}; - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s === 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node, addItems) { - if (node.nodeType === 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && - !jQuery(node.parentNode).hasClass(className) && - !jQuery(node.parentNode).hasClass("nohighlight")) { - var span; - var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); - if (isInSVG) { - span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); - } else { - span = document.createElement("span"); - span.className = className; - } - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - if (isInSVG) { - var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); - var bbox = node.parentElement.getBBox(); - rect.x.baseVal.value = bbox.x; - rect.y.baseVal.value = bbox.y; - rect.width.baseVal.value = bbox.width; - rect.height.baseVal.value = bbox.height; - rect.setAttribute('class', className); - addItems.push({ - "parent": node.parentNode, - "target": rect}); - } - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this, addItems); - }); - } - } - var addItems = []; - var result = this.each(function() { - highlight(this, addItems); - }); - for (var i = 0; i < addItems.length; ++i) { - jQuery(addItems[i].parent).before(addItems[i].target); - } - return result; -}; - -/* - * backward compatibility for jQuery.browser - * This will be supported until firefox bug is fixed. - */ -if (!jQuery.browser) { - jQuery.uaMatch = function(ua) { - ua = ua.toLowerCase(); - - var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || - /(webkit)[ \/]([\w.]+)/.exec(ua) || - /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || - /(msie) ([\w.]+)/.exec(ua) || - ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || - []; - - return { - browser: match[ 1 ] || "", - version: match[ 2 ] || "0" - }; - }; - jQuery.browser = {}; - jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; -} - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { - this.initOnKeyListeners(); - } - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated === 'undefined') - return string; - return (typeof translated === 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated === 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) === 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this === '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - }, - - initOnKeyListeners: function() { - $(document).keyup(function(event) { - var activeElementType = document.activeElement.tagName; - // don't navigate when in search box or textarea - if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT') { - switch (event.keyCode) { - case 37: // left - var prevHref = $('link[rel="prev"]').prop('href'); - if (prevHref) { - window.location.href = prevHref; - return false; - } - case 39: // right - var nextHref = $('link[rel="next"]').prop('href'); - if (nextHref) { - window.location.href = nextHref; - return false; - } - } - } - }); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/python/sdk/doc/en/build/_static/documentation_options.js b/python/sdk/doc/en/build/_static/documentation_options.js deleted file mode 100644 index 4f9bc45140..0000000000 --- a/python/sdk/doc/en/build/_static/documentation_options.js +++ /dev/null @@ -1,10 +0,0 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '0.0.1', - LANGUAGE: 'None', - COLLAPSE_INDEX: false, - FILE_SUFFIX: '.html', - HAS_SOURCE: true, - SOURCELINK_SUFFIX: '.txt', - NAVIGATION_WITH_KEYS: false -}; \ No newline at end of file diff --git a/python/sdk/doc/en/build/_static/file.png b/python/sdk/doc/en/build/_static/file.png deleted file mode 100644 index a858a410e4..0000000000 Binary files a/python/sdk/doc/en/build/_static/file.png and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Inconsolata-Bold.ttf b/python/sdk/doc/en/build/_static/fonts/Inconsolata-Bold.ttf deleted file mode 100644 index 809c1f5828..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Inconsolata-Bold.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Inconsolata-Regular.ttf b/python/sdk/doc/en/build/_static/fonts/Inconsolata-Regular.ttf deleted file mode 100644 index fc981ce7ad..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Inconsolata-Regular.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Inconsolata.ttf b/python/sdk/doc/en/build/_static/fonts/Inconsolata.ttf deleted file mode 100644 index 4b8a36d249..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Inconsolata.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato-Bold.ttf b/python/sdk/doc/en/build/_static/fonts/Lato-Bold.ttf deleted file mode 100644 index 1d23c7066e..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato-Bold.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato-Regular.ttf b/python/sdk/doc/en/build/_static/fonts/Lato-Regular.ttf deleted file mode 100644 index 0f3d0f837d..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato-Regular.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.eot b/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.eot deleted file mode 100644 index 3361183a41..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.eot and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.ttf b/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.ttf deleted file mode 100644 index 29f691d5ed..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.woff b/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.woff deleted file mode 100644 index c6dff51f06..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.woff and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.woff2 b/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.woff2 deleted file mode 100644 index bb195043cf..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bold.woff2 and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.eot b/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.eot deleted file mode 100644 index 3d4154936b..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.eot and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.ttf b/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.ttf deleted file mode 100644 index f402040b3e..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.woff b/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.woff deleted file mode 100644 index 88ad05b9ff..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.woff and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.woff2 b/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.woff2 deleted file mode 100644 index c4e3d804b5..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-bolditalic.woff2 and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.eot b/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.eot deleted file mode 100644 index 3f826421a1..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.eot and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.ttf b/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.ttf deleted file mode 100644 index b4bfc9b24a..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.woff b/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.woff deleted file mode 100644 index 76114bc033..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.woff and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.woff2 b/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.woff2 deleted file mode 100644 index 3404f37e2e..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-italic.woff2 and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.eot b/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.eot deleted file mode 100644 index 11e3f2a5f0..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.eot and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.ttf b/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.ttf deleted file mode 100644 index 74decd9ebb..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.woff b/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.woff deleted file mode 100644 index ae1307ff5f..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.woff and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.woff2 b/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.woff2 deleted file mode 100644 index 3bf9843328..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/Lato/lato-regular.woff2 and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab-Bold.ttf b/python/sdk/doc/en/build/_static/fonts/RobotoSlab-Bold.ttf deleted file mode 100644 index df5d1df273..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab-Bold.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab-Regular.ttf b/python/sdk/doc/en/build/_static/fonts/RobotoSlab-Regular.ttf deleted file mode 100644 index eb52a79073..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab-Regular.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot b/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot deleted file mode 100644 index 79dc8efed3..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf b/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf deleted file mode 100644 index df5d1df273..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff b/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff deleted file mode 100644 index 6cb6000018..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 b/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 deleted file mode 100644 index 7059e23142..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot b/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot deleted file mode 100644 index 2f7ca78a1e..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf b/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf deleted file mode 100644 index eb52a79073..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff b/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff deleted file mode 100644 index f815f63f99..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 b/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 deleted file mode 100644 index f2c76e5bda..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.eot b/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca953..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.svg b/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.svg deleted file mode 100644 index 855c845e53..0000000000 --- a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ - - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.ttf b/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2fa1..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.woff b/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.woff deleted file mode 100644 index 400014a4b0..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.woff2 b/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc6040..0000000000 Binary files a/python/sdk/doc/en/build/_static/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/python/sdk/doc/en/build/_static/jquery-3.2.1.js b/python/sdk/doc/en/build/_static/jquery-3.2.1.js deleted file mode 100644 index d2d8ca4790..0000000000 --- a/python/sdk/doc/en/build/_static/jquery-3.2.1.js +++ /dev/null @@ -1,10253 +0,0 @@ -/*! - * jQuery JavaScript Library v3.2.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2017-03-20T18:59Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var document = window.document; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var concat = arr.concat; - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - - - - function DOMEval( code, doc ) { - doc = doc || document; - - var script = doc.createElement( "script" ); - - script.text = code; - doc.head.appendChild( script ).parentNode.removeChild( script ); - } -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.2.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }, - - // Support: Android <=4.0 only - // Make sure we trim BOM and NBSP - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, - - // Matches dashed string for camelizing - rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g, - - // Used by jQuery.camelCase as callback to replace() - fcamelCase = function( all, letter ) { - return letter.toUpperCase(); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - - if ( copyIsArray ) { - copyIsArray = false; - clone = src && Array.isArray( src ) ? src : []; - - } else { - clone = src && jQuery.isPlainObject( src ) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isFunction: function( obj ) { - return jQuery.type( obj ) === "function"; - }, - - isWindow: function( obj ) { - return obj != null && obj === obj.window; - }, - - isNumeric: function( obj ) { - - // As of jQuery 3.0, isNumeric is limited to - // strings and numbers (primitives or objects) - // that can be coerced to finite numbers (gh-2662) - var type = jQuery.type( obj ); - return ( type === "number" || type === "string" ) && - - // parseFloat NaNs numeric-cast false positives ("") - // ...but misinterprets leading-number strings, particularly hex literals ("0x...") - // subtraction forces infinities to NaN - !isNaN( obj - parseFloat( obj ) ); - }, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - - /* eslint-disable no-unused-vars */ - // See https://github.com/eslint/eslint/issues/6125 - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - type: function( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; - }, - - // Evaluates a script in a global context - globalEval: function( code ) { - DOMEval( code ); - }, - - // Convert dashed to camelCase; used by the css and data modules - // Support: IE <=9 - 11, Edge 12 - 13 - // Microsoft forgot to hump their vendor prefix (#9572) - camelCase: function( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // Support: Android <=4.0 only - trim: function( text ) { - return text == null ? - "" : - ( text + "" ).replace( rtrim, "" ); - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // Bind a function to a context, optionally partially applying any - // arguments. - proxy: function( fn, context ) { - var tmp, args, proxy; - - if ( typeof context === "string" ) { - tmp = fn[ context ]; - context = fn; - fn = tmp; - } - - // Quick check to determine if target is callable, in the spec - // this throws a TypeError, but we will just return undefined. - if ( !jQuery.isFunction( fn ) ) { - return undefined; - } - - // Simulated bind - args = slice.call( arguments, 2 ); - proxy = function() { - return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); - }; - - // Set the guid of unique handler to the same of original handler, so it can be removed - proxy.guid = fn.guid = fn.guid || jQuery.guid++; - - return proxy; - }, - - now: Date.now, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = jQuery.type( obj ); - - if ( type === "function" || jQuery.isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.3 - * https://sizzlejs.com/ - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license - * http://jquery.org/license - * - * Date: 2016-08-08 - */ -(function( window ) { - -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ({}).hasOwnProperty, - arr = [], - pop = arr.pop, - push_native = arr.push, - push = arr.push, - slice = arr.slice, - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[i] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier - identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + - "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), - - rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + - "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + - "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + - whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), - funescape = function( _, escaped, escapedWhitespace ) { - var high = "0x" + escaped - 0x10000; - // NaN means non-codepoint - // Support: Firefox<24 - // Workaround erroneous numeric interpretation of +"0x" - return high !== high || escapedWhitespace ? - escaped : - high < 0 ? - // BMP codepoint - String.fromCharCode( high + 0x10000 ) : - // Supplemental Plane codepoint (surrogate pair) - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - disabledAncestor = addCombinator( - function( elem ) { - return elem.disabled === true && ("form" in elem || "label" in elem); - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - (arr = slice.call( preferredDoc.childNodes )), - preferredDoc.childNodes - ); - // Support: Android<4.0 - // Detect silently failing push.apply - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - push_native.apply( target, slice.call(els) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - // Can't trust NodeList.length - while ( (target[j++] = els[i++]) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - - if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { - setDocument( context ); - } - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { - - // ID selector - if ( (m = match[1]) ) { - - // Document context - if ( nodeType === 9 ) { - if ( (elem = context.getElementById( m )) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && (elem = newContext.getElementById( m )) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[2] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( (m = match[3]) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !compilerCache[ selector + " " ] && - (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { - - if ( nodeType !== 1 ) { - newContext = context; - newSelector = selector; - - // qSA looks outside Element context, which is not what we want - // Thanks to Andrew Dupont for this workaround technique - // Support: IE <=8 - // Exclude object elements - } else if ( context.nodeName.toLowerCase() !== "object" ) { - - // Capture the context ID, setting it first if necessary - if ( (nid = context.getAttribute( "id" )) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", (nid = expando) ); - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[i] = "#" + nid + " " + toSelector( groups[i] ); - } - newSelector = groups.join( "," ); - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - } - - if ( newSelector ) { - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return (cache[ key + " " ] = value); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement("fieldset"); - - try { - return !!fn( el ); - } catch (e) { - return false; - } finally { - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split("|"), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[i] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( (cur = cur.nextSibling) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - disabledAncestor( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction(function( argument ) { - argument = +argument; - return markFunction(function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ (j = matchIndexes[i]) ] ) { - seed[j] = !(matches[j] = seed[j]); - } - } - }); - }); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = elem && (elem.ownerDocument || elem).documentElement; - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9-11, Edge - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - if ( preferredDoc !== document && - (subWindow = document.defaultView) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert(function( el ) { - el.className = "i"; - return !el.getAttribute("className"); - }); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert(function( el ) { - el.appendChild( document.createComment("") ); - return !el.getElementsByTagName("*").length; - }); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert(function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - }); - - // ID filter and find - if ( support.getById ) { - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute("id") === attrId; - }; - }; - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode("id"); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode("id"); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( (elem = elems[i++]) ) { - node = elem.getAttributeNode("id"); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find["TAG"] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( (elem = results[i++]) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert(function( el ) { - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll("[msallowcapture^='']").length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll("[selected]").length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push("~="); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll(":checked").length ) { - rbuggyQSA.push(":checked"); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push(".#.+[+~]"); - } - }); - - assert(function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement("input"); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll("[name=d]").length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll(":enabled").length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll(":disabled").length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll("*,:x"); - rbuggyQSA.push(",.*:"); - }); - } - - if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector) )) ) { - - assert(function( el ) { - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - }); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - )); - } : - function( a, b ) { - if ( b ) { - while ( (b = b.parentNode) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { - - // Choose the first element that is related to our preferred document - if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { - return -1; - } - if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - return a === document ? -1 : - b === document ? 1 : - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( (cur = cur.parentNode) ) { - ap.unshift( cur ); - } - cur = b; - while ( (cur = cur.parentNode) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[i] === bp[i] ) { - i++; - } - - return i ? - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[i], bp[i] ) : - - // Otherwise nodes in our document sort first - ap[i] === preferredDoc ? -1 : - bp[i] === preferredDoc ? 1 : - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - // Make sure that attribute selectors are quoted - expr = expr.replace( rattributeQuotes, "='$1']" ); - - if ( support.matchesSelector && documentIsHTML && - !compilerCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch (e) {} - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - // Set document vars if needed - if ( ( context.ownerDocument || context ) !== document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - (val = elem.getAttributeNode(name)) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return (sel + "").replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( (elem = results[i++]) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - // If no nodeType, this is expected to be an array - while ( (node = elem[i++]) ) { - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[1] = match[1].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); - - if ( match[2] === "~=" ) { - match[3] = " " + match[3] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[1] = match[1].toLowerCase(); - - if ( match[1].slice( 0, 3 ) === "nth" ) { - // nth-* requires argument - if ( !match[3] ) { - Sizzle.error( match[0] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); - match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); - - // other types prohibit arguments - } else if ( match[3] ) { - Sizzle.error( match[0] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[6] && match[2]; - - if ( matchExpr["CHILD"].test( match[0] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[3] ) { - match[2] = match[4] || match[5] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - // Get excess from tokenize (recursively) - (excess = tokenize( unquoted, true )) && - // advance to the next closing parenthesis - (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { - - // excess is a negative index - match[0] = match[0].slice( 0, excess ); - match[2] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { return true; } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && - classCache( className, function( elem ) { - return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); - }); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - }; - }, - - "CHILD": function( type, what, argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( (node = node[ dir ]) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( (node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - (diff = nodeIndex = 0) || start.pop()) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - // Use previously-cached element index if available - if ( useCache ) { - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - // Use the same loop as above to seek `elem` from the start - while ( (node = ++nodeIndex && node && node[ dir ] || - (diff = nodeIndex = 0) || start.pop()) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction(function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[i] ); - seed[ idx ] = !( matches[ idx ] = matched[i] ); - } - }) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - // Potentially complex pseudos - "not": markFunction(function( selector ) { - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction(function( seed, matches, context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( (elem = unmatched[i]) ) { - seed[i] = !(matches[i] = elem); - } - } - }) : - function( elem, context, xml ) { - input[0] = elem; - matcher( input, null, xml, results ); - // Don't keep the element (issue #299) - input[0] = null; - return !results.pop(); - }; - }), - - "has": markFunction(function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - }), - - "contains": markFunction(function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; - }; - }), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - // lang value must be a valid identifier - if ( !ridentifier.test(lang || "") ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( (elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); - return false; - }; - }), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); - }, - - "selected": function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos["empty"]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo(function() { - return [ 0 ]; - }), - - "last": createPositionalPseudo(function( matchIndexes, length ) { - return [ length - 1 ]; - }), - - "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - }), - - "even": createPositionalPseudo(function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "odd": createPositionalPseudo(function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }) - } -}; - -Expr.pseudos["nth"] = Expr.pseudos["eq"]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || (match = rcomma.exec( soFar )) ) { - if ( match ) { - // Don't consume trailing commas as valid - soFar = soFar.slice( match[0].length ) || soFar; - } - groups.push( (tokens = []) ); - } - - matched = false; - - // Combinators - if ( (match = rcombinators.exec( soFar )) ) { - matched = match.shift(); - tokens.push({ - value: matched, - // Cast descendant combinators to space - type: match[0].replace( rtrim, " " ) - }); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || - (match = preFilters[ type ]( match ))) ) { - matched = match.shift(); - tokens.push({ - value: matched, - type: type, - matches: match - }); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[i].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || (elem[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( (oldCache = uniqueCache[ key ]) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return (newCache[ 2 ] = oldCache[ 2 ]); - } else { - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[i]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[0]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[i], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( (elem = unmatched[i]) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction(function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( (elem = temp[i]) ) { - matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) ) { - // Restore matcherIn since elem is not yet a final match - temp.push( (matcherIn[i] = elem) ); - } - } - postFinder( null, (matcherOut = []), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) && - (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { - - seed[temp] = !(results[temp] = elem); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - }); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[0].type ], - implicitRelative = leadingRelative || Expr.relative[" "], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - (checkContext = context).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( (matcher = Expr.relative[ tokens[i].type ]) ) { - matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; - } else { - matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[j].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), - len = elems.length; - - if ( outermost ) { - outermostContext = context === document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && (elem = elems[i]) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - if ( !context && elem.ownerDocument !== document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( (matcher = elementMatchers[j++]) ) { - if ( matcher( elem, context || document, xml) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - // They will have gone through all possible matchers - if ( (elem = !matcher && elem) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( (matcher = setMatchers[j++]) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !(unmatched[i] || setMatched[i]) ) { - setMatched[i] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[i] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( (selector = compiled.selector || selector) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[0] = match[0].slice( 0 ); - if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { - - context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[i]; - - // Abort if we hit a combinator - if ( Expr.relative[ (type = token.type) ] ) { - break; - } - if ( (find = Expr.find[ type ]) ) { - // Search, expanding context for leading sibling combinators - if ( (seed = find( - token.matches[0].replace( runescape, funescape ), - rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context - )) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert(function( el ) { - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement("fieldset") ) & 1; -}); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert(function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute("href") === "#" ; -}) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - }); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert(function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -}) ) { - addHandle( "value", function( elem, name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - }); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert(function( el ) { - return el.getAttribute("disabled") == null; -}) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - (val = elem.getAttributeNode( name )) && val.specified ? - val.value : - null; - } - }); -} - -return Sizzle; - -})( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -var risSimple = /^.[^:#\[\.,]*$/; - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Simple selector that can be filtered directly, removing non-Elements - if ( risSimple.test( qualifier ) ) { - return jQuery.filter( qualifier, elements, not ); - } - - // Complex selector, compare the two sets, removing non-Elements - qualifier = jQuery.filter( qualifier, elements ); - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not && elem.nodeType === 1; - } ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( jQuery.isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( nodeName( elem, "iframe" ) ) { - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( jQuery.isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && jQuery.isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && jQuery.isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = jQuery.isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && jQuery.isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( jQuery.isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - jQuery.isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - jQuery.isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - jQuery.isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - jQuery.isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( jQuery.type( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !jQuery.isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ jQuery.camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ jQuery.camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ jQuery.camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( jQuery.camelCase ); - } else { - key = jQuery.camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = jQuery.camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - jQuery.contains( elem.ownerDocument, elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - -var swap = function( elem, options, callback, args ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.apply( elem, args || [] ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, - scale = 1, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - do { - - // If previous iteration zeroed out, double until we get *something*. - // Use string for doubling so we don't accidentally see scale as unchanged below - scale = scale || ".5"; - - // Adjust and apply - initialInUnit = initialInUnit / scale; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Update scale, tolerating zero or NaN from tween.cur() - // Break the loop if scale is unchanged or perfect, or if we've just had enough. - } while ( - scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations - ); - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i ); - -var rscriptType = ( /^$|\/(?:java|ecma)script/i ); - - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // Support: IE <=9 only - option: [ 1, "" ], - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -// Support: IE <=9 only -wrapMap.optgroup = wrapMap.option; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, contains, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( jQuery.type( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - contains = jQuery.contains( elem.ownerDocument, elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( contains ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; -} )(); -var documentElement = document.documentElement; - - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 only -// See #13393 for more info -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Don't attach events to noData or text/comment nodes (but allow plain objects) - if ( !elemData ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = {}; - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - // Make a writable jQuery.Event from the native event object - var event = jQuery.event.fix( nativeEvent ); - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // Triggered event must either 1) have no namespace, or 2) have namespace(s) - // a subset or equal to those in the bound event (both can have no namespace). - if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: jQuery.isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - focus: { - - // Fire native event if possible so blur/focus sequence is correct - trigger: function() { - if ( this !== safeActiveElement() && this.focus ) { - this.focus(); - return false; - } - }, - delegateType: "focusin" - }, - blur: { - trigger: function() { - if ( this === safeActiveElement() && this.blur ) { - this.blur(); - return false; - } - }, - delegateType: "focusout" - }, - click: { - - // For checkbox, fire native event so checked state will be right - trigger: function() { - if ( this.type === "checkbox" && this.click && nodeName( this, "input" ) ) { - this.click(); - return false; - } - }, - - // For cross-browser consistency, don't fire native .click() on links - _default: function( event ) { - return nodeName( event.target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - /* eslint-disable max-len */ - - // See https://github.com/eslint/eslint/issues/3229 - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, - - /* eslint-enable */ - - // Support: IE <=10 - 11, Edge 12 - 13 - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( ">tbody", elem )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - var match = rscriptTypeMasked.exec( elem.type ); - - if ( match ) { - elem.type = match[ 1 ]; - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.access( src ); - pdataCur = dataPriv.set( dest, pdataOld ); - events = pdataOld.events; - - if ( events ) { - delete pdataCur.handle; - pdataCur.events = {}; - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = concat.apply( [], args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - isFunction = jQuery.isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( isFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( isFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl ) { - jQuery._evalUrl( node.src ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && jQuery.contains( node.ownerDocument, node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html.replace( rxhtmlTag, "<$1>" ); - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = jQuery.contains( elem.ownerDocument, elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rmargin = ( /^margin/ ); - -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - div.style.cssText = - "box-sizing:border-box;" + - "position:relative;display:block;" + - "margin:auto;border:1px;padding:1px;" + - "top:1%;width:50%"; - div.innerHTML = ""; - documentElement.appendChild( container ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = divStyle.marginLeft === "2px"; - boxSizingReliableVal = divStyle.width === "4px"; - - // Support: Android 4.0 - 4.3 only - // Some styles come back with percentage values, even though they shouldn't - div.style.marginRight = "50%"; - pixelMarginRightVal = divStyle.marginRight === "4px"; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - var pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - container.style.cssText = "border:0;width:8px;height:0;top:0;left:-9999px;" + - "padding:0;margin-top:1px;position:absolute"; - container.appendChild( div ); - - jQuery.extend( support, { - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelMarginRight: function() { - computeStyleTests(); - return pixelMarginRightVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }, - - cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style; - -// Return a css property mapped to a potentially vendor prefixed property -function vendorPropName( name ) { - - // Shortcut for names that are not vendor prefixed - if ( name in emptyStyle ) { - return name; - } - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a property mapped along what jQuery.cssProps suggests or to -// a vendor prefixed property. -function finalPropName( name ) { - var ret = jQuery.cssProps[ name ]; - if ( !ret ) { - ret = jQuery.cssProps[ name ] = vendorPropName( name ) || name; - } - return ret; -} - -function setPositiveNumber( elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { - var i, - val = 0; - - // If we already have the right measurement, avoid augmentation - if ( extra === ( isBorderBox ? "border" : "content" ) ) { - i = 4; - - // Otherwise initialize for horizontal or vertical properties - } else { - i = name === "width" ? 1 : 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin, so add it if we want it - if ( extra === "margin" ) { - val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); - } - - if ( isBorderBox ) { - - // border-box includes padding, so remove it if we want content - if ( extra === "content" ) { - val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // At this point, extra isn't border nor margin, so remove border - if ( extra !== "margin" ) { - val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } else { - - // At this point, extra isn't content, so add padding - val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // At this point, extra isn't content nor padding, so add border - if ( extra !== "padding" ) { - val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - return val; -} - -function getWidthOrHeight( elem, name, extra ) { - - // Start with computed style - var valueIsBorderBox, - styles = getStyles( elem ), - val = curCSS( elem, name, styles ), - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Computed unit is not pixels. Stop here and return. - if ( rnumnonpx.test( val ) ) { - return val; - } - - // Check for style in case a browser which returns unreliable values - // for getComputedStyle silently falls back to the reliable elem.style - valueIsBorderBox = isBorderBox && - ( support.boxSizingReliable() || val === elem.style[ name ] ); - - // Fall back to offsetWidth/Height when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - if ( val === "auto" ) { - val = elem[ "offset" + name[ 0 ].toUpperCase() + name.slice( 1 ) ]; - } - - // Normalize "", auto, and prepare for extra - val = parseFloat( val ) || 0; - - // Use the active box-sizing model to add/subtract irrelevant styles - return ( val + - augmentWidthOrHeight( - elem, - name, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: { - "float": "cssFloat" - }, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = jQuery.camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - if ( type === "number" ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = jQuery.camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( i, name ) { - jQuery.cssHooks[ name ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, name, extra ); - } ) : - getWidthOrHeight( elem, name, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = extra && getStyles( elem ), - subtract = extra && augmentWidthOrHeight( - elem, - name, - extra, - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - styles - ); - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ name ] = value; - value = jQuery.css( elem, name ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( !rmargin.test( prefix ) ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && - ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || - jQuery.cssHooks[ tween.prop ] ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = jQuery.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 13 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = jQuery.camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( jQuery.isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - jQuery.proxy( result.stop, result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( jQuery.isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( jQuery.isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - jQuery.isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( jQuery.isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue && type !== false ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = jQuery.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://html.spec.whatwg.org/multipage/infrastructure.html#strip-and-collapse-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( jQuery.isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( typeof value === "string" && value ) { - classes = value.match( rnothtmlwhite ) || []; - - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( jQuery.isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - if ( typeof value === "string" && value ) { - classes = value.match( rnothtmlwhite ) || []; - - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value; - - if ( typeof stateVal === "boolean" && type === "string" ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( jQuery.isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( type === "string" ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = value.match( rnothtmlwhite ) || []; - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, isFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - isFunction = jQuery.isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - elem[ type ](); - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " + - "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup contextmenu" ).split( " " ), - function( i, name ) { - - // Handle event binding - jQuery.fn[ name ] = function( data, fn ) { - return arguments.length > 0 ? - this.on( name, null, data, fn ) : - this.trigger( name ); - }; -} ); - -jQuery.fn.extend( { - hover: function( fnOver, fnOut ) { - return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); - } -} ); - - - - -support.focusin = "onfocusin" in window; - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - var doc = this.ownerDocument || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = jQuery.now(); - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && jQuery.type( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = jQuery.isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( jQuery.isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ]; - } - } - match = responseHeaders[ key.toLowerCase() ]; - } - return match == null ? null : match; - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 13 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available, append data to url - if ( s.data ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( jQuery.isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - - -jQuery._evalUrl = function( url ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - "throws": true - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( jQuery.isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var isFunction = jQuery.isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain requests - if ( s.crossDomain ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - -
- - - - -
-
- - - -
-
- -
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/python/sdk/doc/en/build/genindex.html b/python/sdk/doc/en/build/genindex.html deleted file mode 100644 index cf6845f055..0000000000 --- a/python/sdk/doc/en/build/genindex.html +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - - - - - - - Index — MilvusPythonSDK 0.0.1 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - -
- -
    - -
  • Docs »
  • - -
  • Index
  • - - -
  • - - - -
  • - -
- - -
-
-
-
- - -

Index

- -
- A - | C - | D - | G - | I - | M - | P - | R - | S - | T - -
-

A

- - -
- -

C

- - - -
- -

D

- - - -
- -

G

- - -
- -

I

- - - -
- -

M

- - -
- -

P

- - - -
- -

R

- - - -
- -

S

- - - -
- -

T

- - - -
- - - -
- -
- - -
-
- -
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/python/sdk/doc/en/build/index.html b/python/sdk/doc/en/build/index.html deleted file mode 100644 index e0f242b872..0000000000 --- a/python/sdk/doc/en/build/index.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - - - - Milvus Python SDK — MilvusPythonSDK 0.0.1 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
- - Milvus -
-

Milvus Python SDK

-

Using Milvus with Python

-
-
-
- - -
- -
- - -
-
- -
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/python/sdk/doc/en/build/objects.inv b/python/sdk/doc/en/build/objects.inv deleted file mode 100644 index 72bd2cbc01..0000000000 Binary files a/python/sdk/doc/en/build/objects.inv and /dev/null differ diff --git a/python/sdk/doc/en/build/py-modindex.html b/python/sdk/doc/en/build/py-modindex.html deleted file mode 100644 index e67e59ffe9..0000000000 --- a/python/sdk/doc/en/build/py-modindex.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - Python Module Index — MilvusPythonSDK 0.0.1 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - -
- -
    - -
  • Docs »
  • - -
  • Python Module Index
  • - - -
  • - -
  • - -
- - -
-
-
-
- - -

Python Module Index

- -
- c -
- - - - - - - - - - -
 
- c
- client -
    - client.Status -
- - -
- -
- - -
-
- -
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/python/sdk/doc/en/build/search.html b/python/sdk/doc/en/build/search.html deleted file mode 100644 index 83630fec1f..0000000000 --- a/python/sdk/doc/en/build/search.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - Search — MilvusPythonSDK 0.0.1 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - -
- -
    - -
  • Docs »
  • - -
  • Search
  • - - -
  • - - - -
  • - -
- - -
-
-
-
- - - - -
- -
- -
- -
- - -
-
- -
- -
- - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/python/sdk/doc/en/build/searchindex.js b/python/sdk/doc/en/build/searchindex.js deleted file mode 100644 index a45973701f..0000000000 --- a/python/sdk/doc/en/build/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -Search.setIndex({docnames:["API/sdk.client","api","index"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["API/sdk.client.rst","api.rst","index.rst"],objects:{"client.Client":{Milvus:[0,0,1,""],Prepare:[0,0,1,""]},"client.Client.Milvus":{add_vectors:[0,1,1,""],client_version:[0,1,1,""],connect:[0,1,1,""],connected:[0,1,1,""],create_table:[0,1,1,""],delete_table:[0,1,1,""],describe_table:[0,1,1,""],disconnect:[0,1,1,""],get_table_row_count:[0,1,1,""],search_vectors:[0,1,1,""],server_status:[0,1,1,""],server_version:[0,1,1,""],show_tables:[0,1,1,""]},"client.Client.Prepare":{range:[0,1,1,""],row_record:[0,1,1,""],table_schema:[0,1,1,""]},"client.Status":{Status:[0,0,1,""]},"client.Status.Status":{CONNECT_FAILED:[0,3,1,""],ILLEGAL_ARGUMENT:[0,3,1,""],ILLEGAL_DIMENSION:[0,3,1,""],ILLEGAL_RANGE:[0,3,1,""],PERMISSION_DENIED:[0,3,1,""],SUCCESS:[0,3,1,""],TABLE_NOT_EXISTS:[0,3,1,""]},client:{Status:[0,2,0,"-"]}},objnames:{"0":["py","class","Python class"],"1":["py","method","Python method"],"2":["py","module","Python module"],"3":["py","attribute","Python attribute"]},objtypes:{"0":"py:class","1":"py:method","2":"py:module","3":"py:attribute"},terms:{"abstract":0,"byte":0,"class":0,"default":0,"float":0,"int":0,"return":0,The:0,Using:2,add:0,add_vector:0,after:0,all:0,ani:0,attribut:0,base:0,been:0,befor:0,being:0,binari:0,bool:0,bytearrai:0,call:0,check:0,classmethod:0,client_vers:0,clinet:1,cmd:0,code:0,commun:0,condit:0,connect:0,connect_fail:0,connectintf:0,content:[],count:0,creat:0,create_t:0,current:0,databas:0,delet:0,delete_t:0,describe_t:0,dimens:0,disconnect:0,end:0,everi:0,fals:0,gener:0,get:0,get_table_row_count:0,given:0,going:0,host:0,how:0,ids:0,illegal_argu:0,illegal_dimens:0,illegal_rang:0,implement:[],index:0,index_typ:0,indextyp:0,indic:0,inform:0,insert:0,int64:[],invalid:0,list:0,localhost:0,mani:0,messag:0,method:0,milvu:1,modul:1,name:0,none:0,object:0,oper:0,option:0,param:0,paramet:0,permission_deni:0,pleas:0,port:0,prepar:1,properti:0,provid:0,queri:0,query_rang:0,query_record:0,queryrecord:0,rang:0,record:0,requir:0,res:0,row:0,row_record:0,rowrecord:0,rtype:0,sdk:1,search:0,search_vector:0,server:0,server_statu:0,server_vers:0,should:0,show:0,show_tabl:0,shown:0,similar:0,specifi:0,start:0,statu:1,store:0,store_raw_vector:0,str:0,submodul:[],success:0,successfulli:0,tabl:0,table_nam:0,table_not_exist:0,table_schema:0,tableschema:0,target:0,thi:0,top_k:0,topkqueryresult:0,transfer:0,type:0,uri:0,use:0,used:0,vector:0,vector_data:0,version:0,when:0,which:0,whole:0},titles:["sdk.client.Client module","API","Milvus Python SDK"],titleterms:{api:1,client:[0,1],clinet:0,content:[],milvu:[0,2],modul:0,packag:1,prepar:0,python:2,sdk:[0,2],statu:0,submodul:[]}}) \ No newline at end of file diff --git a/python/sdk/doc/en/conf.py b/python/sdk/doc/en/conf.py deleted file mode 100644 index 8a22479bf2..0000000000 --- a/python/sdk/doc/en/conf.py +++ /dev/null @@ -1,61 +0,0 @@ -# Configuration file for the Sphinx documentation builder. -# -# This file only contains a selection of the most common options. For a full -# list see the documentation: -# http://www.sphinx-doc.org/en/master/config - -# -- Path setup -------------------------------------------------------------- - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# -import os -import sys -sys.path.insert(0, os.path.join( - os.path.dirname(os.path.abspath(__file__)), - os.path.join('..', '..') -)) - - -# -- Project information ----------------------------------------------------- - -project = 'MilvusPythonSDK' -copyright = '2019, Zilliz' -author = 'YangXuan' - -# The full version, including alpha/beta/rc tags -release = '0.0.1' - - -# -- General configuration --------------------------------------------------- - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. -extensions = [ - 'sphinx.ext.autodoc', - # 'sphinx.ext.viewcode' -] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -# This pattern also affects html_static_path and html_extra_path. - -master_doc = 'index' - - -# -- Options for HTML output ------------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -# -html_theme = 'sphinx_rtd_theme' - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] diff --git a/python/sdk/doc/en/index.rst b/python/sdk/doc/en/index.rst deleted file mode 100644 index 5e3b95eebc..0000000000 --- a/python/sdk/doc/en/index.rst +++ /dev/null @@ -1,24 +0,0 @@ -.. MilvusSDK documentation master file, created by - sphinx-quickstart on Thu Jun 13 11:42:09 2019. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -.. raw:: html - -
- - Milvus -
- -Milvus Python SDK ---------------------------- - -Using Milvus with Python - - -.. toctree:: - :maxdepth: 2 - :hidden: - - QuickStart - api diff --git a/python/sdk/examples/__init__.py b/python/sdk/examples/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/python/sdk/examples/example.py b/python/sdk/examples/example.py deleted file mode 100644 index 99502fc8a4..0000000000 --- a/python/sdk/examples/example.py +++ /dev/null @@ -1,106 +0,0 @@ -from client.Client import Milvus, Prepare, IndexType -import random -import struct -from pprint import pprint - - -def main(): - # Get client version - milvus = Milvus() - print('# Client version: {}'.format(milvus.client_version())) - - # Connect - # Please change HOST and PORT to correct one - param = {'host': 'HOST', 'port': 'PORT'} - cnn_status = milvus.connect(**param) - print('# Connect Status: {}'.format(cnn_status)) - - # Check if connected - is_connected = milvus.connected - print('# Is connected: {}'.format(is_connected)) - - # Get server version - print('# Server version: {}'.format(milvus.server_version())) - - # Describe table - # Check if `test01` exists, if not, create a table test01 - table_name = 'test01' - res_status, table = milvus.describe_table(table_name) - print('# Describe table status: {}'.format(res_status)) - print('# Describe table:{}'.format(table)) - - # Create table - # 01.Prepare data - if not table: - param = { - 'table_name': 'test01', - 'dimension': 256, - 'index_type': IndexType.IDMAP, - 'store_raw_vector': False - } - - # 02.Create table - res_status = milvus.create_table(Prepare.table_schema(**param)) - print('# Create table status: {}'.format(res_status)) - - # # Create table Optional - # # 01.Prepare data - # param = { - # 'table_name': 'test'+ str(random.randint(22,999)), - # 'dimension': 256, - # 'index_type': IndexType.IDMAP, - # 'store_raw_vector': False - # } - # - # # 02.Create table - # res_status = milvus.create_table(Prepare.table_schema(**param)) - # print('# Create table status: {}'.format(res_status)) - - # Show tables and their description - status, tables = milvus.show_tables() - print('# Show tables: {}'.format(tables)) - - # Add vectors to table 'test01' - # 01. Prepare data - dim = 256 - # list of binary vectors - vectors = [Prepare.row_record(struct.pack(str(dim)+'d', - *[random.random()for _ in range(dim)])) - for _ in range(20)] - # 02. Add vectors - status, ids = milvus.add_vectors(table_name=table_name, records=vectors) - print('# Add vector status: {}'.format(status)) - pprint(ids) - - # Search vectors - # When adding vectors for the first time, server will take at least 5s to - # persist vector data, so we have wait for 6s to search correctly - import time - print('Waiting for 6s...') - time.sleep(6) # Wait for server persist vector data - - q_records = [Prepare.row_record(struct.pack(str(dim) + 'd', - *[random.random() for _ in range(dim)])) - for _ in range(5)] - param = { - 'table_name': 'test01', - 'query_records': q_records, - 'top_k': 10, - # 'query_ranges': # Optional - } - sta, results = milvus.search_vectors(**param) - print('# Search vectors status: {}'.format(sta)) - pprint(results) - - # Get table row count - sta, result = milvus.get_table_row_count(table_name) - print('# Status: {}'.format(sta)) - print('# Count: {}'.format(result)) - - # Disconnect - discnn_status = milvus.disconnect() - print('# Disconnect Status: {}'.format(discnn_status)) - - -if __name__ == '__main__': - main() diff --git a/python/sdk/milvus/__init__.py b/python/sdk/milvus/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/python/sdk/milvus/thrift/MilvusService-remote b/python/sdk/milvus/thrift/MilvusService-remote deleted file mode 100755 index d111f13730..0000000000 --- a/python/sdk/milvus/thrift/MilvusService-remote +++ /dev/null @@ -1,166 +0,0 @@ -#!/usr/bin/env python -# -# Autogenerated by Thrift Compiler (0.12.0) -# -# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING -# -# options string: py -# - -import sys -import pprint -if sys.version_info[0] > 2: - from urllib.parse import urlparse -else: - from urlparse import urlparse -from thrift.transport import TTransport, TSocket, TSSLSocket, THttpClient -from thrift.protocol.TBinaryProtocol import TBinaryProtocol - -from milvus.thrift import MilvusService -from milvus.thrift.ttypes import * - -if len(sys.argv) <= 1 or sys.argv[1] == '--help': - print('') - print('Usage: ' + sys.argv[0] + ' [-h host[:port]] [-u url] [-f[ramed]] [-s[sl]] [-novalidate] [-ca_certs certs] [-keyfile keyfile] [-certfile certfile] function [arg1 [arg2...]]') - print('') - print('Functions:') - print(' void CreateTable(TableSchema param)') - print(' void DeleteTable(string table_name)') - print(' AddVector(string table_name, record_array)') - print(' SearchVector(string table_name, query_record_array, query_range_array, i64 topk)') - print(' TableSchema DescribeTable(string table_name)') - print(' i64 GetTableRowCount(string table_name)') - print(' ShowTables()') - print(' string Ping(string cmd)') - print('') - sys.exit(0) - -pp = pprint.PrettyPrinter(indent=2) -host = 'localhost' -port = 9090 -uri = '' -framed = False -ssl = False -validate = True -ca_certs = None -keyfile = None -certfile = None -http = False -argi = 1 - -if sys.argv[argi] == '-h': - parts = sys.argv[argi + 1].split(':') - host = parts[0] - if len(parts) > 1: - port = int(parts[1]) - argi += 2 - -if sys.argv[argi] == '-u': - url = urlparse(sys.argv[argi + 1]) - parts = url[1].split(':') - host = parts[0] - if len(parts) > 1: - port = int(parts[1]) - else: - port = 80 - uri = url[2] - if url[4]: - uri += '?%s' % url[4] - http = True - argi += 2 - -if sys.argv[argi] == '-f' or sys.argv[argi] == '-framed': - framed = True - argi += 1 - -if sys.argv[argi] == '-s' or sys.argv[argi] == '-ssl': - ssl = True - argi += 1 - -if sys.argv[argi] == '-novalidate': - validate = False - argi += 1 - -if sys.argv[argi] == '-ca_certs': - ca_certs = sys.argv[argi+1] - argi += 2 - -if sys.argv[argi] == '-keyfile': - keyfile = sys.argv[argi+1] - argi += 2 - -if sys.argv[argi] == '-certfile': - certfile = sys.argv[argi+1] - argi += 2 - -cmd = sys.argv[argi] -args = sys.argv[argi + 1:] - -if http: - transport = THttpClient.THttpClient(host, port, uri) -else: - if ssl: - socket = TSSLSocket.TSSLSocket(host, port, validate=validate, ca_certs=ca_certs, keyfile=keyfile, certfile=certfile) - else: - socket = TSocket.TSocket(host, port) - if framed: - transport = TTransport.TFramedTransport(socket) - else: - transport = TTransport.TBufferedTransport(socket) -protocol = TBinaryProtocol(transport) -client = MilvusService.Client(protocol) -transport.open() - -if cmd == 'CreateTable': - if len(args) != 1: - print('CreateTable requires 1 args') - sys.exit(1) - pp.pprint(client.CreateTable(eval(args[0]),)) - -elif cmd == 'DeleteTable': - if len(args) != 1: - print('DeleteTable requires 1 args') - sys.exit(1) - pp.pprint(client.DeleteTable(args[0],)) - -elif cmd == 'AddVector': - if len(args) != 2: - print('AddVector requires 2 args') - sys.exit(1) - pp.pprint(client.AddVector(args[0], eval(args[1]),)) - -elif cmd == 'SearchVector': - if len(args) != 4: - print('SearchVector requires 4 args') - sys.exit(1) - pp.pprint(client.SearchVector(args[0], eval(args[1]), eval(args[2]), eval(args[3]),)) - -elif cmd == 'DescribeTable': - if len(args) != 1: - print('DescribeTable requires 1 args') - sys.exit(1) - pp.pprint(client.DescribeTable(args[0],)) - -elif cmd == 'GetTableRowCount': - if len(args) != 1: - print('GetTableRowCount requires 1 args') - sys.exit(1) - pp.pprint(client.GetTableRowCount(args[0],)) - -elif cmd == 'ShowTables': - if len(args) != 0: - print('ShowTables requires 0 args') - sys.exit(1) - pp.pprint(client.ShowTables()) - -elif cmd == 'Ping': - if len(args) != 1: - print('Ping requires 1 args') - sys.exit(1) - pp.pprint(client.Ping(args[0],)) - -else: - print('Unrecognized method %s' % cmd) - sys.exit(1) - -transport.close() diff --git a/python/sdk/milvus/thrift/MilvusService.py b/python/sdk/milvus/thrift/MilvusService.py deleted file mode 100644 index 23b0120bed..0000000000 --- a/python/sdk/milvus/thrift/MilvusService.py +++ /dev/null @@ -1,1889 +0,0 @@ -# -# Autogenerated by Thrift Compiler (0.12.0) -# -# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING -# -# options string: py -# - -from thrift.Thrift import TType, TMessageType, TFrozenDict, TException, TApplicationException -from thrift.protocol.TProtocol import TProtocolException -from thrift.TRecursive import fix_spec - -import sys -import logging -from .ttypes import * -from thrift.Thrift import TProcessor -from thrift.transport import TTransport -all_structs = [] - - -class Iface(object): - def CreateTable(self, param): - """ - @brief Create table method - - This method is used to create table - - @param param, use to provide table information to be created. - - - Parameters: - - param - - """ - pass - - def DeleteTable(self, table_name): - """ - @brief Delete table method - - This method is used to delete table. - - @param table_name, table name is going to be deleted. - - - Parameters: - - table_name - - """ - pass - - def AddVector(self, table_name, record_array): - """ - @brief Add vector array to table - - This method is used to add vector array to table. - - @param table_name, table_name is inserted. - @param record_array, vector array is inserted. - - @return vector id array - - Parameters: - - table_name - - record_array - - """ - pass - - def SearchVector(self, table_name, query_record_array, query_range_array, topk): - """ - @brief Query vector - - This method is used to query vector in table. - - @param table_name, table_name is queried. - @param query_record_array, all vector are going to be queried. - @param query_range_array, optional ranges for conditional search. If not specified, search whole table - @param topk, how many similarity vectors will be searched. - - @return query result array. - - Parameters: - - table_name - - query_record_array - - query_range_array - - topk - - """ - pass - - def DescribeTable(self, table_name): - """ - @brief Get table schema - - This method is used to get table schema. - - @param table_name, target table name. - - @return table schema - - Parameters: - - table_name - - """ - pass - - def GetTableRowCount(self, table_name): - """ - @brief Get table row count - - This method is used to get table row count. - - @param table_name, target table name. - - @return table row count - - Parameters: - - table_name - - """ - pass - - def ShowTables(self): - """ - @brief List all tables in database - - This method is used to list all tables. - - - @return table names. - - """ - pass - - def Ping(self, cmd): - """ - @brief Give the server status - - This method is used to give the server status. - - @return Server status. - - Parameters: - - cmd - - """ - pass - - -class Client(Iface): - def __init__(self, iprot, oprot=None): - self._iprot = self._oprot = iprot - if oprot is not None: - self._oprot = oprot - self._seqid = 0 - - def CreateTable(self, param): - """ - @brief Create table method - - This method is used to create table - - @param param, use to provide table information to be created. - - - Parameters: - - param - - """ - self.send_CreateTable(param) - self.recv_CreateTable() - - def send_CreateTable(self, param): - self._oprot.writeMessageBegin('CreateTable', TMessageType.CALL, self._seqid) - args = CreateTable_args() - args.param = param - args.write(self._oprot) - self._oprot.writeMessageEnd() - self._oprot.trans.flush() - - def recv_CreateTable(self): - iprot = self._iprot - (fname, mtype, rseqid) = iprot.readMessageBegin() - if mtype == TMessageType.EXCEPTION: - x = TApplicationException() - x.read(iprot) - iprot.readMessageEnd() - raise x - result = CreateTable_result() - result.read(iprot) - iprot.readMessageEnd() - if result.e is not None: - raise result.e - return - - def DeleteTable(self, table_name): - """ - @brief Delete table method - - This method is used to delete table. - - @param table_name, table name is going to be deleted. - - - Parameters: - - table_name - - """ - self.send_DeleteTable(table_name) - self.recv_DeleteTable() - - def send_DeleteTable(self, table_name): - self._oprot.writeMessageBegin('DeleteTable', TMessageType.CALL, self._seqid) - args = DeleteTable_args() - args.table_name = table_name - args.write(self._oprot) - self._oprot.writeMessageEnd() - self._oprot.trans.flush() - - def recv_DeleteTable(self): - iprot = self._iprot - (fname, mtype, rseqid) = iprot.readMessageBegin() - if mtype == TMessageType.EXCEPTION: - x = TApplicationException() - x.read(iprot) - iprot.readMessageEnd() - raise x - result = DeleteTable_result() - result.read(iprot) - iprot.readMessageEnd() - if result.e is not None: - raise result.e - return - - def AddVector(self, table_name, record_array): - """ - @brief Add vector array to table - - This method is used to add vector array to table. - - @param table_name, table_name is inserted. - @param record_array, vector array is inserted. - - @return vector id array - - Parameters: - - table_name - - record_array - - """ - self.send_AddVector(table_name, record_array) - return self.recv_AddVector() - - def send_AddVector(self, table_name, record_array): - self._oprot.writeMessageBegin('AddVector', TMessageType.CALL, self._seqid) - args = AddVector_args() - args.table_name = table_name - args.record_array = record_array - args.write(self._oprot) - self._oprot.writeMessageEnd() - self._oprot.trans.flush() - - def recv_AddVector(self): - iprot = self._iprot - (fname, mtype, rseqid) = iprot.readMessageBegin() - if mtype == TMessageType.EXCEPTION: - x = TApplicationException() - x.read(iprot) - iprot.readMessageEnd() - raise x - result = AddVector_result() - result.read(iprot) - iprot.readMessageEnd() - if result.success is not None: - return result.success - if result.e is not None: - raise result.e - raise TApplicationException(TApplicationException.MISSING_RESULT, "AddVector failed: unknown result") - - def SearchVector(self, table_name, query_record_array, query_range_array, topk): - """ - @brief Query vector - - This method is used to query vector in table. - - @param table_name, table_name is queried. - @param query_record_array, all vector are going to be queried. - @param query_range_array, optional ranges for conditional search. If not specified, search whole table - @param topk, how many similarity vectors will be searched. - - @return query result array. - - Parameters: - - table_name - - query_record_array - - query_range_array - - topk - - """ - self.send_SearchVector(table_name, query_record_array, query_range_array, topk) - return self.recv_SearchVector() - - def send_SearchVector(self, table_name, query_record_array, query_range_array, topk): - self._oprot.writeMessageBegin('SearchVector', TMessageType.CALL, self._seqid) - args = SearchVector_args() - args.table_name = table_name - args.query_record_array = query_record_array - args.query_range_array = query_range_array - args.topk = topk - args.write(self._oprot) - self._oprot.writeMessageEnd() - self._oprot.trans.flush() - - def recv_SearchVector(self): - iprot = self._iprot - (fname, mtype, rseqid) = iprot.readMessageBegin() - if mtype == TMessageType.EXCEPTION: - x = TApplicationException() - x.read(iprot) - iprot.readMessageEnd() - raise x - result = SearchVector_result() - result.read(iprot) - iprot.readMessageEnd() - if result.success is not None: - return result.success - if result.e is not None: - raise result.e - raise TApplicationException(TApplicationException.MISSING_RESULT, "SearchVector failed: unknown result") - - def DescribeTable(self, table_name): - """ - @brief Get table schema - - This method is used to get table schema. - - @param table_name, target table name. - - @return table schema - - Parameters: - - table_name - - """ - self.send_DescribeTable(table_name) - return self.recv_DescribeTable() - - def send_DescribeTable(self, table_name): - self._oprot.writeMessageBegin('DescribeTable', TMessageType.CALL, self._seqid) - args = DescribeTable_args() - args.table_name = table_name - args.write(self._oprot) - self._oprot.writeMessageEnd() - self._oprot.trans.flush() - - def recv_DescribeTable(self): - iprot = self._iprot - (fname, mtype, rseqid) = iprot.readMessageBegin() - if mtype == TMessageType.EXCEPTION: - x = TApplicationException() - x.read(iprot) - iprot.readMessageEnd() - raise x - result = DescribeTable_result() - result.read(iprot) - iprot.readMessageEnd() - if result.success is not None: - return result.success - if result.e is not None: - raise result.e - raise TApplicationException(TApplicationException.MISSING_RESULT, "DescribeTable failed: unknown result") - - def GetTableRowCount(self, table_name): - """ - @brief Get table row count - - This method is used to get table row count. - - @param table_name, target table name. - - @return table row count - - Parameters: - - table_name - - """ - self.send_GetTableRowCount(table_name) - return self.recv_GetTableRowCount() - - def send_GetTableRowCount(self, table_name): - self._oprot.writeMessageBegin('GetTableRowCount', TMessageType.CALL, self._seqid) - args = GetTableRowCount_args() - args.table_name = table_name - args.write(self._oprot) - self._oprot.writeMessageEnd() - self._oprot.trans.flush() - - def recv_GetTableRowCount(self): - iprot = self._iprot - (fname, mtype, rseqid) = iprot.readMessageBegin() - if mtype == TMessageType.EXCEPTION: - x = TApplicationException() - x.read(iprot) - iprot.readMessageEnd() - raise x - result = GetTableRowCount_result() - result.read(iprot) - iprot.readMessageEnd() - if result.success is not None: - return result.success - if result.e is not None: - raise result.e - raise TApplicationException(TApplicationException.MISSING_RESULT, "GetTableRowCount failed: unknown result") - - def ShowTables(self): - """ - @brief List all tables in database - - This method is used to list all tables. - - - @return table names. - - """ - self.send_ShowTables() - return self.recv_ShowTables() - - def send_ShowTables(self): - self._oprot.writeMessageBegin('ShowTables', TMessageType.CALL, self._seqid) - args = ShowTables_args() - args.write(self._oprot) - self._oprot.writeMessageEnd() - self._oprot.trans.flush() - - def recv_ShowTables(self): - iprot = self._iprot - (fname, mtype, rseqid) = iprot.readMessageBegin() - if mtype == TMessageType.EXCEPTION: - x = TApplicationException() - x.read(iprot) - iprot.readMessageEnd() - raise x - result = ShowTables_result() - result.read(iprot) - iprot.readMessageEnd() - if result.success is not None: - return result.success - if result.e is not None: - raise result.e - raise TApplicationException(TApplicationException.MISSING_RESULT, "ShowTables failed: unknown result") - - def Ping(self, cmd): - """ - @brief Give the server status - - This method is used to give the server status. - - @return Server status. - - Parameters: - - cmd - - """ - self.send_Ping(cmd) - return self.recv_Ping() - - def send_Ping(self, cmd): - self._oprot.writeMessageBegin('Ping', TMessageType.CALL, self._seqid) - args = Ping_args() - args.cmd = cmd - args.write(self._oprot) - self._oprot.writeMessageEnd() - self._oprot.trans.flush() - - def recv_Ping(self): - iprot = self._iprot - (fname, mtype, rseqid) = iprot.readMessageBegin() - if mtype == TMessageType.EXCEPTION: - x = TApplicationException() - x.read(iprot) - iprot.readMessageEnd() - raise x - result = Ping_result() - result.read(iprot) - iprot.readMessageEnd() - if result.success is not None: - return result.success - if result.e is not None: - raise result.e - raise TApplicationException(TApplicationException.MISSING_RESULT, "Ping failed: unknown result") - - -class Processor(Iface, TProcessor): - def __init__(self, handler): - self._handler = handler - self._processMap = {} - self._processMap["CreateTable"] = Processor.process_CreateTable - self._processMap["DeleteTable"] = Processor.process_DeleteTable - self._processMap["AddVector"] = Processor.process_AddVector - self._processMap["SearchVector"] = Processor.process_SearchVector - self._processMap["DescribeTable"] = Processor.process_DescribeTable - self._processMap["GetTableRowCount"] = Processor.process_GetTableRowCount - self._processMap["ShowTables"] = Processor.process_ShowTables - self._processMap["Ping"] = Processor.process_Ping - - def process(self, iprot, oprot): - (name, type, seqid) = iprot.readMessageBegin() - if name not in self._processMap: - iprot.skip(TType.STRUCT) - iprot.readMessageEnd() - x = TApplicationException(TApplicationException.UNKNOWN_METHOD, 'Unknown function %s' % (name)) - oprot.writeMessageBegin(name, TMessageType.EXCEPTION, seqid) - x.write(oprot) - oprot.writeMessageEnd() - oprot.trans.flush() - return - else: - self._processMap[name](self, seqid, iprot, oprot) - return True - - def process_CreateTable(self, seqid, iprot, oprot): - args = CreateTable_args() - args.read(iprot) - iprot.readMessageEnd() - result = CreateTable_result() - try: - self._handler.CreateTable(args.param) - msg_type = TMessageType.REPLY - except TTransport.TTransportException: - raise - except Exception as e: - msg_type = TMessageType.REPLY - result.e = e - except TApplicationException as ex: - logging.exception('TApplication exception in handler') - msg_type = TMessageType.EXCEPTION - result = ex - except Exception: - logging.exception('Unexpected exception in handler') - msg_type = TMessageType.EXCEPTION - result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') - oprot.writeMessageBegin("CreateTable", msg_type, seqid) - result.write(oprot) - oprot.writeMessageEnd() - oprot.trans.flush() - - def process_DeleteTable(self, seqid, iprot, oprot): - args = DeleteTable_args() - args.read(iprot) - iprot.readMessageEnd() - result = DeleteTable_result() - try: - self._handler.DeleteTable(args.table_name) - msg_type = TMessageType.REPLY - except TTransport.TTransportException: - raise - except Exception as e: - msg_type = TMessageType.REPLY - result.e = e - except TApplicationException as ex: - logging.exception('TApplication exception in handler') - msg_type = TMessageType.EXCEPTION - result = ex - except Exception: - logging.exception('Unexpected exception in handler') - msg_type = TMessageType.EXCEPTION - result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') - oprot.writeMessageBegin("DeleteTable", msg_type, seqid) - result.write(oprot) - oprot.writeMessageEnd() - oprot.trans.flush() - - def process_AddVector(self, seqid, iprot, oprot): - args = AddVector_args() - args.read(iprot) - iprot.readMessageEnd() - result = AddVector_result() - try: - result.success = self._handler.AddVector(args.table_name, args.record_array) - msg_type = TMessageType.REPLY - except TTransport.TTransportException: - raise - except Exception as e: - msg_type = TMessageType.REPLY - result.e = e - except TApplicationException as ex: - logging.exception('TApplication exception in handler') - msg_type = TMessageType.EXCEPTION - result = ex - except Exception: - logging.exception('Unexpected exception in handler') - msg_type = TMessageType.EXCEPTION - result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') - oprot.writeMessageBegin("AddVector", msg_type, seqid) - result.write(oprot) - oprot.writeMessageEnd() - oprot.trans.flush() - - def process_SearchVector(self, seqid, iprot, oprot): - args = SearchVector_args() - args.read(iprot) - iprot.readMessageEnd() - result = SearchVector_result() - try: - result.success = self._handler.SearchVector(args.table_name, args.query_record_array, args.query_range_array, args.topk) - msg_type = TMessageType.REPLY - except TTransport.TTransportException: - raise - except Exception as e: - msg_type = TMessageType.REPLY - result.e = e - except TApplicationException as ex: - logging.exception('TApplication exception in handler') - msg_type = TMessageType.EXCEPTION - result = ex - except Exception: - logging.exception('Unexpected exception in handler') - msg_type = TMessageType.EXCEPTION - result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') - oprot.writeMessageBegin("SearchVector", msg_type, seqid) - result.write(oprot) - oprot.writeMessageEnd() - oprot.trans.flush() - - def process_DescribeTable(self, seqid, iprot, oprot): - args = DescribeTable_args() - args.read(iprot) - iprot.readMessageEnd() - result = DescribeTable_result() - try: - result.success = self._handler.DescribeTable(args.table_name) - msg_type = TMessageType.REPLY - except TTransport.TTransportException: - raise - except Exception as e: - msg_type = TMessageType.REPLY - result.e = e - except TApplicationException as ex: - logging.exception('TApplication exception in handler') - msg_type = TMessageType.EXCEPTION - result = ex - except Exception: - logging.exception('Unexpected exception in handler') - msg_type = TMessageType.EXCEPTION - result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') - oprot.writeMessageBegin("DescribeTable", msg_type, seqid) - result.write(oprot) - oprot.writeMessageEnd() - oprot.trans.flush() - - def process_GetTableRowCount(self, seqid, iprot, oprot): - args = GetTableRowCount_args() - args.read(iprot) - iprot.readMessageEnd() - result = GetTableRowCount_result() - try: - result.success = self._handler.GetTableRowCount(args.table_name) - msg_type = TMessageType.REPLY - except TTransport.TTransportException: - raise - except Exception as e: - msg_type = TMessageType.REPLY - result.e = e - except TApplicationException as ex: - logging.exception('TApplication exception in handler') - msg_type = TMessageType.EXCEPTION - result = ex - except Exception: - logging.exception('Unexpected exception in handler') - msg_type = TMessageType.EXCEPTION - result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') - oprot.writeMessageBegin("GetTableRowCount", msg_type, seqid) - result.write(oprot) - oprot.writeMessageEnd() - oprot.trans.flush() - - def process_ShowTables(self, seqid, iprot, oprot): - args = ShowTables_args() - args.read(iprot) - iprot.readMessageEnd() - result = ShowTables_result() - try: - result.success = self._handler.ShowTables() - msg_type = TMessageType.REPLY - except TTransport.TTransportException: - raise - except Exception as e: - msg_type = TMessageType.REPLY - result.e = e - except TApplicationException as ex: - logging.exception('TApplication exception in handler') - msg_type = TMessageType.EXCEPTION - result = ex - except Exception: - logging.exception('Unexpected exception in handler') - msg_type = TMessageType.EXCEPTION - result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') - oprot.writeMessageBegin("ShowTables", msg_type, seqid) - result.write(oprot) - oprot.writeMessageEnd() - oprot.trans.flush() - - def process_Ping(self, seqid, iprot, oprot): - args = Ping_args() - args.read(iprot) - iprot.readMessageEnd() - result = Ping_result() - try: - result.success = self._handler.Ping(args.cmd) - msg_type = TMessageType.REPLY - except TTransport.TTransportException: - raise - except Exception as e: - msg_type = TMessageType.REPLY - result.e = e - except TApplicationException as ex: - logging.exception('TApplication exception in handler') - msg_type = TMessageType.EXCEPTION - result = ex - except Exception: - logging.exception('Unexpected exception in handler') - msg_type = TMessageType.EXCEPTION - result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') - oprot.writeMessageBegin("Ping", msg_type, seqid) - result.write(oprot) - oprot.writeMessageEnd() - oprot.trans.flush() - -# HELPER FUNCTIONS AND STRUCTURES - - -class CreateTable_args(object): - """ - Attributes: - - param - - """ - - - def __init__(self, param=None,): - self.param = param - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 2: - if ftype == TType.STRUCT: - self.param = TableSchema() - self.param.read(iprot) - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('CreateTable_args') - if self.param is not None: - oprot.writeFieldBegin('param', TType.STRUCT, 2) - self.param.write(oprot) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(CreateTable_args) -CreateTable_args.thrift_spec = ( - None, # 0 - None, # 1 - (2, TType.STRUCT, 'param', [TableSchema, None], None, ), # 2 -) - - -class CreateTable_result(object): - """ - Attributes: - - e - - """ - - - def __init__(self, e=None,): - self.e = e - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 1: - if ftype == TType.STRUCT: - self.e = Exception() - self.e.read(iprot) - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('CreateTable_result') - if self.e is not None: - oprot.writeFieldBegin('e', TType.STRUCT, 1) - self.e.write(oprot) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(CreateTable_result) -CreateTable_result.thrift_spec = ( - None, # 0 - (1, TType.STRUCT, 'e', [Exception, None], None, ), # 1 -) - - -class DeleteTable_args(object): - """ - Attributes: - - table_name - - """ - - - def __init__(self, table_name=None,): - self.table_name = table_name - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 2: - if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('DeleteTable_args') - if self.table_name is not None: - oprot.writeFieldBegin('table_name', TType.STRING, 2) - oprot.writeString(self.table_name.encode('utf-8') if sys.version_info[0] == 2 else self.table_name) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(DeleteTable_args) -DeleteTable_args.thrift_spec = ( - None, # 0 - None, # 1 - (2, TType.STRING, 'table_name', 'UTF8', None, ), # 2 -) - - -class DeleteTable_result(object): - """ - Attributes: - - e - - """ - - - def __init__(self, e=None,): - self.e = e - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 1: - if ftype == TType.STRUCT: - self.e = Exception() - self.e.read(iprot) - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('DeleteTable_result') - if self.e is not None: - oprot.writeFieldBegin('e', TType.STRUCT, 1) - self.e.write(oprot) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(DeleteTable_result) -DeleteTable_result.thrift_spec = ( - None, # 0 - (1, TType.STRUCT, 'e', [Exception, None], None, ), # 1 -) - - -class AddVector_args(object): - """ - Attributes: - - table_name - - record_array - - """ - - - def __init__(self, table_name=None, record_array=None,): - self.table_name = table_name - self.record_array = record_array - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 2: - if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - elif fid == 3: - if ftype == TType.LIST: - self.record_array = [] - (_etype10, _size7) = iprot.readListBegin() - for _i11 in range(_size7): - _elem12 = RowRecord() - _elem12.read(iprot) - self.record_array.append(_elem12) - iprot.readListEnd() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('AddVector_args') - if self.table_name is not None: - oprot.writeFieldBegin('table_name', TType.STRING, 2) - oprot.writeString(self.table_name.encode('utf-8') if sys.version_info[0] == 2 else self.table_name) - oprot.writeFieldEnd() - if self.record_array is not None: - oprot.writeFieldBegin('record_array', TType.LIST, 3) - oprot.writeListBegin(TType.STRUCT, len(self.record_array)) - for iter13 in self.record_array: - iter13.write(oprot) - oprot.writeListEnd() - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(AddVector_args) -AddVector_args.thrift_spec = ( - None, # 0 - None, # 1 - (2, TType.STRING, 'table_name', 'UTF8', None, ), # 2 - (3, TType.LIST, 'record_array', (TType.STRUCT, [RowRecord, None], False), None, ), # 3 -) - - -class AddVector_result(object): - """ - Attributes: - - success - - e - - """ - - - def __init__(self, success=None, e=None,): - self.success = success - self.e = e - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 0: - if ftype == TType.LIST: - self.success = [] - (_etype17, _size14) = iprot.readListBegin() - for _i18 in range(_size14): - _elem19 = iprot.readI64() - self.success.append(_elem19) - iprot.readListEnd() - else: - iprot.skip(ftype) - elif fid == 1: - if ftype == TType.STRUCT: - self.e = Exception() - self.e.read(iprot) - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('AddVector_result') - if self.success is not None: - oprot.writeFieldBegin('success', TType.LIST, 0) - oprot.writeListBegin(TType.I64, len(self.success)) - for iter20 in self.success: - oprot.writeI64(iter20) - oprot.writeListEnd() - oprot.writeFieldEnd() - if self.e is not None: - oprot.writeFieldBegin('e', TType.STRUCT, 1) - self.e.write(oprot) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(AddVector_result) -AddVector_result.thrift_spec = ( - (0, TType.LIST, 'success', (TType.I64, None, False), None, ), # 0 - (1, TType.STRUCT, 'e', [Exception, None], None, ), # 1 -) - - -class SearchVector_args(object): - """ - Attributes: - - table_name - - query_record_array - - query_range_array - - topk - - """ - - - def __init__(self, table_name=None, query_record_array=None, query_range_array=None, topk=None,): - self.table_name = table_name - self.query_record_array = query_record_array - self.query_range_array = query_range_array - self.topk = topk - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 2: - if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - elif fid == 3: - if ftype == TType.LIST: - self.query_record_array = [] - (_etype24, _size21) = iprot.readListBegin() - for _i25 in range(_size21): - _elem26 = RowRecord() - _elem26.read(iprot) - self.query_record_array.append(_elem26) - iprot.readListEnd() - else: - iprot.skip(ftype) - elif fid == 4: - if ftype == TType.LIST: - self.query_range_array = [] - (_etype30, _size27) = iprot.readListBegin() - for _i31 in range(_size27): - _elem32 = Range() - _elem32.read(iprot) - self.query_range_array.append(_elem32) - iprot.readListEnd() - else: - iprot.skip(ftype) - elif fid == 5: - if ftype == TType.I64: - self.topk = iprot.readI64() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('SearchVector_args') - if self.table_name is not None: - oprot.writeFieldBegin('table_name', TType.STRING, 2) - oprot.writeString(self.table_name.encode('utf-8') if sys.version_info[0] == 2 else self.table_name) - oprot.writeFieldEnd() - if self.query_record_array is not None: - oprot.writeFieldBegin('query_record_array', TType.LIST, 3) - oprot.writeListBegin(TType.STRUCT, len(self.query_record_array)) - for iter33 in self.query_record_array: - iter33.write(oprot) - oprot.writeListEnd() - oprot.writeFieldEnd() - if self.query_range_array is not None: - oprot.writeFieldBegin('query_range_array', TType.LIST, 4) - oprot.writeListBegin(TType.STRUCT, len(self.query_range_array)) - for iter34 in self.query_range_array: - iter34.write(oprot) - oprot.writeListEnd() - oprot.writeFieldEnd() - if self.topk is not None: - oprot.writeFieldBegin('topk', TType.I64, 5) - oprot.writeI64(self.topk) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(SearchVector_args) -SearchVector_args.thrift_spec = ( - None, # 0 - None, # 1 - (2, TType.STRING, 'table_name', 'UTF8', None, ), # 2 - (3, TType.LIST, 'query_record_array', (TType.STRUCT, [RowRecord, None], False), None, ), # 3 - (4, TType.LIST, 'query_range_array', (TType.STRUCT, [Range, None], False), None, ), # 4 - (5, TType.I64, 'topk', None, None, ), # 5 -) - - -class SearchVector_result(object): - """ - Attributes: - - success - - e - - """ - - - def __init__(self, success=None, e=None,): - self.success = success - self.e = e - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 0: - if ftype == TType.LIST: - self.success = [] - (_etype38, _size35) = iprot.readListBegin() - for _i39 in range(_size35): - _elem40 = TopKQueryResult() - _elem40.read(iprot) - self.success.append(_elem40) - iprot.readListEnd() - else: - iprot.skip(ftype) - elif fid == 1: - if ftype == TType.STRUCT: - self.e = Exception() - self.e.read(iprot) - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('SearchVector_result') - if self.success is not None: - oprot.writeFieldBegin('success', TType.LIST, 0) - oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter41 in self.success: - iter41.write(oprot) - oprot.writeListEnd() - oprot.writeFieldEnd() - if self.e is not None: - oprot.writeFieldBegin('e', TType.STRUCT, 1) - self.e.write(oprot) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(SearchVector_result) -SearchVector_result.thrift_spec = ( - (0, TType.LIST, 'success', (TType.STRUCT, [TopKQueryResult, None], False), None, ), # 0 - (1, TType.STRUCT, 'e', [Exception, None], None, ), # 1 -) - - -class DescribeTable_args(object): - """ - Attributes: - - table_name - - """ - - - def __init__(self, table_name=None,): - self.table_name = table_name - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 2: - if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('DescribeTable_args') - if self.table_name is not None: - oprot.writeFieldBegin('table_name', TType.STRING, 2) - oprot.writeString(self.table_name.encode('utf-8') if sys.version_info[0] == 2 else self.table_name) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(DescribeTable_args) -DescribeTable_args.thrift_spec = ( - None, # 0 - None, # 1 - (2, TType.STRING, 'table_name', 'UTF8', None, ), # 2 -) - - -class DescribeTable_result(object): - """ - Attributes: - - success - - e - - """ - - - def __init__(self, success=None, e=None,): - self.success = success - self.e = e - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 0: - if ftype == TType.STRUCT: - self.success = TableSchema() - self.success.read(iprot) - else: - iprot.skip(ftype) - elif fid == 1: - if ftype == TType.STRUCT: - self.e = Exception() - self.e.read(iprot) - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('DescribeTable_result') - if self.success is not None: - oprot.writeFieldBegin('success', TType.STRUCT, 0) - self.success.write(oprot) - oprot.writeFieldEnd() - if self.e is not None: - oprot.writeFieldBegin('e', TType.STRUCT, 1) - self.e.write(oprot) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(DescribeTable_result) -DescribeTable_result.thrift_spec = ( - (0, TType.STRUCT, 'success', [TableSchema, None], None, ), # 0 - (1, TType.STRUCT, 'e', [Exception, None], None, ), # 1 -) - - -class GetTableRowCount_args(object): - """ - Attributes: - - table_name - - """ - - - def __init__(self, table_name=None,): - self.table_name = table_name - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 2: - if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('GetTableRowCount_args') - if self.table_name is not None: - oprot.writeFieldBegin('table_name', TType.STRING, 2) - oprot.writeString(self.table_name.encode('utf-8') if sys.version_info[0] == 2 else self.table_name) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(GetTableRowCount_args) -GetTableRowCount_args.thrift_spec = ( - None, # 0 - None, # 1 - (2, TType.STRING, 'table_name', 'UTF8', None, ), # 2 -) - - -class GetTableRowCount_result(object): - """ - Attributes: - - success - - e - - """ - - - def __init__(self, success=None, e=None,): - self.success = success - self.e = e - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 0: - if ftype == TType.I64: - self.success = iprot.readI64() - else: - iprot.skip(ftype) - elif fid == 1: - if ftype == TType.STRUCT: - self.e = Exception() - self.e.read(iprot) - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('GetTableRowCount_result') - if self.success is not None: - oprot.writeFieldBegin('success', TType.I64, 0) - oprot.writeI64(self.success) - oprot.writeFieldEnd() - if self.e is not None: - oprot.writeFieldBegin('e', TType.STRUCT, 1) - self.e.write(oprot) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(GetTableRowCount_result) -GetTableRowCount_result.thrift_spec = ( - (0, TType.I64, 'success', None, None, ), # 0 - (1, TType.STRUCT, 'e', [Exception, None], None, ), # 1 -) - - -class ShowTables_args(object): - - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('ShowTables_args') - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(ShowTables_args) -ShowTables_args.thrift_spec = ( -) - - -class ShowTables_result(object): - """ - Attributes: - - success - - e - - """ - - - def __init__(self, success=None, e=None,): - self.success = success - self.e = e - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 0: - if ftype == TType.LIST: - self.success = [] - (_etype45, _size42) = iprot.readListBegin() - for _i46 in range(_size42): - _elem47 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - self.success.append(_elem47) - iprot.readListEnd() - else: - iprot.skip(ftype) - elif fid == 1: - if ftype == TType.STRUCT: - self.e = Exception() - self.e.read(iprot) - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('ShowTables_result') - if self.success is not None: - oprot.writeFieldBegin('success', TType.LIST, 0) - oprot.writeListBegin(TType.STRING, len(self.success)) - for iter48 in self.success: - oprot.writeString(iter48.encode('utf-8') if sys.version_info[0] == 2 else iter48) - oprot.writeListEnd() - oprot.writeFieldEnd() - if self.e is not None: - oprot.writeFieldBegin('e', TType.STRUCT, 1) - self.e.write(oprot) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(ShowTables_result) -ShowTables_result.thrift_spec = ( - (0, TType.LIST, 'success', (TType.STRING, 'UTF8', False), None, ), # 0 - (1, TType.STRUCT, 'e', [Exception, None], None, ), # 1 -) - - -class Ping_args(object): - """ - Attributes: - - cmd - - """ - - - def __init__(self, cmd=None,): - self.cmd = cmd - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 2: - if ftype == TType.STRING: - self.cmd = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('Ping_args') - if self.cmd is not None: - oprot.writeFieldBegin('cmd', TType.STRING, 2) - oprot.writeString(self.cmd.encode('utf-8') if sys.version_info[0] == 2 else self.cmd) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(Ping_args) -Ping_args.thrift_spec = ( - None, # 0 - None, # 1 - (2, TType.STRING, 'cmd', 'UTF8', None, ), # 2 -) - - -class Ping_result(object): - """ - Attributes: - - success - - e - - """ - - - def __init__(self, success=None, e=None,): - self.success = success - self.e = e - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 0: - if ftype == TType.STRING: - self.success = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - elif fid == 1: - if ftype == TType.STRUCT: - self.e = Exception() - self.e.read(iprot) - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('Ping_result') - if self.success is not None: - oprot.writeFieldBegin('success', TType.STRING, 0) - oprot.writeString(self.success.encode('utf-8') if sys.version_info[0] == 2 else self.success) - oprot.writeFieldEnd() - if self.e is not None: - oprot.writeFieldBegin('e', TType.STRUCT, 1) - self.e.write(oprot) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(Ping_result) -Ping_result.thrift_spec = ( - (0, TType.STRING, 'success', 'UTF8', None, ), # 0 - (1, TType.STRUCT, 'e', [Exception, None], None, ), # 1 -) -fix_spec(all_structs) -del all_structs - diff --git a/python/sdk/milvus/thrift/__init__.py b/python/sdk/milvus/thrift/__init__.py deleted file mode 100644 index 47629e6c88..0000000000 --- a/python/sdk/milvus/thrift/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__all__ = ['ttypes', 'constants', 'MilvusService.py'] diff --git a/python/sdk/milvus/thrift/constants.py b/python/sdk/milvus/thrift/constants.py deleted file mode 100644 index c59352d09f..0000000000 --- a/python/sdk/milvus/thrift/constants.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Autogenerated by Thrift Compiler (0.12.0) -# -# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING -# -# options string: py -# - -from thrift.Thrift import TType, TMessageType, TFrozenDict, TException, TApplicationException -from thrift.protocol.TProtocol import TProtocolException -from thrift.TRecursive import fix_spec - -import sys -from .ttypes import * diff --git a/python/sdk/milvus/thrift/ttypes.py b/python/sdk/milvus/thrift/ttypes.py deleted file mode 100644 index 2e49e8f27f..0000000000 --- a/python/sdk/milvus/thrift/ttypes.py +++ /dev/null @@ -1,518 +0,0 @@ -# -# Autogenerated by Thrift Compiler (0.12.0) -# -# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING -# -# options string: py -# - -from thrift.Thrift import TType, TMessageType, TFrozenDict, TException, TApplicationException -from thrift.protocol.TProtocol import TProtocolException -from thrift.TRecursive import fix_spec - -import sys - -from thrift.transport import TTransport -all_structs = [] - - -class ErrorCode(object): - SUCCESS = 0 - CONNECT_FAILED = 1 - PERMISSION_DENIED = 2 - TABLE_NOT_EXISTS = 3 - ILLEGAL_ARGUMENT = 4 - ILLEGAL_RANGE = 5 - ILLEGAL_DIMENSION = 6 - - _VALUES_TO_NAMES = { - 0: "SUCCESS", - 1: "CONNECT_FAILED", - 2: "PERMISSION_DENIED", - 3: "TABLE_NOT_EXISTS", - 4: "ILLEGAL_ARGUMENT", - 5: "ILLEGAL_RANGE", - 6: "ILLEGAL_DIMENSION", - } - - _NAMES_TO_VALUES = { - "SUCCESS": 0, - "CONNECT_FAILED": 1, - "PERMISSION_DENIED": 2, - "TABLE_NOT_EXISTS": 3, - "ILLEGAL_ARGUMENT": 4, - "ILLEGAL_RANGE": 5, - "ILLEGAL_DIMENSION": 6, - } - - -class Exception(TException): - """ - Attributes: - - code - - reason - - """ - - - def __init__(self, code=None, reason=None,): - self.code = code - self.reason = reason - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 1: - if ftype == TType.I32: - self.code = iprot.readI32() - else: - iprot.skip(ftype) - elif fid == 2: - if ftype == TType.STRING: - self.reason = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('Exception') - if self.code is not None: - oprot.writeFieldBegin('code', TType.I32, 1) - oprot.writeI32(self.code) - oprot.writeFieldEnd() - if self.reason is not None: - oprot.writeFieldBegin('reason', TType.STRING, 2) - oprot.writeString(self.reason.encode('utf-8') if sys.version_info[0] == 2 else self.reason) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __str__(self): - return repr(self) - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) - - -class TableSchema(object): - """ - @brief Table Schema - - Attributes: - - table_name - - index_type - - dimension - - store_raw_vector - - """ - - - def __init__(self, table_name=None, index_type=0, dimension=0, store_raw_vector=False,): - self.table_name = table_name - self.index_type = index_type - self.dimension = dimension - self.store_raw_vector = store_raw_vector - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 1: - if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - elif fid == 2: - if ftype == TType.I32: - self.index_type = iprot.readI32() - else: - iprot.skip(ftype) - elif fid == 3: - if ftype == TType.I64: - self.dimension = iprot.readI64() - else: - iprot.skip(ftype) - elif fid == 4: - if ftype == TType.BOOL: - self.store_raw_vector = iprot.readBool() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('TableSchema') - if self.table_name is not None: - oprot.writeFieldBegin('table_name', TType.STRING, 1) - oprot.writeString(self.table_name.encode('utf-8') if sys.version_info[0] == 2 else self.table_name) - oprot.writeFieldEnd() - if self.index_type is not None: - oprot.writeFieldBegin('index_type', TType.I32, 2) - oprot.writeI32(self.index_type) - oprot.writeFieldEnd() - if self.dimension is not None: - oprot.writeFieldBegin('dimension', TType.I64, 3) - oprot.writeI64(self.dimension) - oprot.writeFieldEnd() - if self.store_raw_vector is not None: - oprot.writeFieldBegin('store_raw_vector', TType.BOOL, 4) - oprot.writeBool(self.store_raw_vector) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - if self.table_name is None: - raise TProtocolException(message='Required field table_name is unset!') - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) - - -class Range(object): - """ - @brief Range Schema - - Attributes: - - start_value - - end_value - - """ - - - def __init__(self, start_value=None, end_value=None,): - self.start_value = start_value - self.end_value = end_value - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 1: - if ftype == TType.STRING: - self.start_value = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - elif fid == 2: - if ftype == TType.STRING: - self.end_value = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('Range') - if self.start_value is not None: - oprot.writeFieldBegin('start_value', TType.STRING, 1) - oprot.writeString(self.start_value.encode('utf-8') if sys.version_info[0] == 2 else self.start_value) - oprot.writeFieldEnd() - if self.end_value is not None: - oprot.writeFieldBegin('end_value', TType.STRING, 2) - oprot.writeString(self.end_value.encode('utf-8') if sys.version_info[0] == 2 else self.end_value) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) - - -class RowRecord(object): - """ - @brief Record inserted - - Attributes: - - vector_data - - """ - - - def __init__(self, vector_data=None,): - self.vector_data = vector_data - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 1: - if ftype == TType.STRING: - self.vector_data = iprot.readBinary() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('RowRecord') - if self.vector_data is not None: - oprot.writeFieldBegin('vector_data', TType.STRING, 1) - oprot.writeBinary(self.vector_data) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - if self.vector_data is None: - raise TProtocolException(message='Required field vector_data is unset!') - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) - - -class QueryResult(object): - """ - @brief Query result - - Attributes: - - id - - score - - """ - - - def __init__(self, id=None, score=None,): - self.id = id - self.score = score - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 1: - if ftype == TType.I64: - self.id = iprot.readI64() - else: - iprot.skip(ftype) - elif fid == 2: - if ftype == TType.DOUBLE: - self.score = iprot.readDouble() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('QueryResult') - if self.id is not None: - oprot.writeFieldBegin('id', TType.I64, 1) - oprot.writeI64(self.id) - oprot.writeFieldEnd() - if self.score is not None: - oprot.writeFieldBegin('score', TType.DOUBLE, 2) - oprot.writeDouble(self.score) - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) - - -class TopKQueryResult(object): - """ - @brief TopK query result - - Attributes: - - query_result_arrays - - """ - - - def __init__(self, query_result_arrays=None,): - self.query_result_arrays = query_result_arrays - - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return - iprot.readStructBegin() - while True: - (fname, ftype, fid) = iprot.readFieldBegin() - if ftype == TType.STOP: - break - if fid == 1: - if ftype == TType.LIST: - self.query_result_arrays = [] - (_etype3, _size0) = iprot.readListBegin() - for _i4 in range(_size0): - _elem5 = QueryResult() - _elem5.read(iprot) - self.query_result_arrays.append(_elem5) - iprot.readListEnd() - else: - iprot.skip(ftype) - else: - iprot.skip(ftype) - iprot.readFieldEnd() - iprot.readStructEnd() - - def write(self, oprot): - if oprot._fast_encode is not None and self.thrift_spec is not None: - oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) - return - oprot.writeStructBegin('TopKQueryResult') - if self.query_result_arrays is not None: - oprot.writeFieldBegin('query_result_arrays', TType.LIST, 1) - oprot.writeListBegin(TType.STRUCT, len(self.query_result_arrays)) - for iter6 in self.query_result_arrays: - iter6.write(oprot) - oprot.writeListEnd() - oprot.writeFieldEnd() - oprot.writeFieldStop() - oprot.writeStructEnd() - - def validate(self): - return - - def __repr__(self): - L = ['%s=%r' % (key, value) - for key, value in self.__dict__.items()] - return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) - - def __eq__(self, other): - return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ - - def __ne__(self, other): - return not (self == other) -all_structs.append(Exception) -Exception.thrift_spec = ( - None, # 0 - (1, TType.I32, 'code', None, None, ), # 1 - (2, TType.STRING, 'reason', 'UTF8', None, ), # 2 -) -all_structs.append(TableSchema) -TableSchema.thrift_spec = ( - None, # 0 - (1, TType.STRING, 'table_name', 'UTF8', None, ), # 1 - (2, TType.I32, 'index_type', None, 0, ), # 2 - (3, TType.I64, 'dimension', None, 0, ), # 3 - (4, TType.BOOL, 'store_raw_vector', None, False, ), # 4 -) -all_structs.append(Range) -Range.thrift_spec = ( - None, # 0 - (1, TType.STRING, 'start_value', 'UTF8', None, ), # 1 - (2, TType.STRING, 'end_value', 'UTF8', None, ), # 2 -) -all_structs.append(RowRecord) -RowRecord.thrift_spec = ( - None, # 0 - (1, TType.STRING, 'vector_data', 'BINARY', None, ), # 1 -) -all_structs.append(QueryResult) -QueryResult.thrift_spec = ( - None, # 0 - (1, TType.I64, 'id', None, None, ), # 1 - (2, TType.DOUBLE, 'score', None, None, ), # 2 -) -all_structs.append(TopKQueryResult) -TopKQueryResult.thrift_spec = ( - None, # 0 - (1, TType.LIST, 'query_result_arrays', (TType.STRUCT, [QueryResult, None], False), None, ), # 1 -) -fix_spec(all_structs) -del all_structs diff --git a/python/sdk/pytest.ini b/python/sdk/pytest.ini deleted file mode 100644 index 3aebf0921b..0000000000 --- a/python/sdk/pytest.ini +++ /dev/null @@ -1,5 +0,0 @@ -[pytest] -log_format = [%(asctime)s-%(levelname)s-%(name)s]: %(message)s (%(filename)s:%(lineno)s) - -log_cli = true -log_level = 20 \ No newline at end of file diff --git a/python/sdk/requirements.txt b/python/sdk/requirements.txt deleted file mode 100644 index ebe4797579..0000000000 --- a/python/sdk/requirements.txt +++ /dev/null @@ -1,18 +0,0 @@ -atomicwrites==1.3.0 -attrs==19.1.0 -Faker==1.0.7 -importlib-metadata==0.17 -mock==3.0.5 -more-itertools==7.0.0 -packaging==19.0 -pathlib2==2.3.3 -pluggy==0.12.0 -py==1.8.0 -pyparsing==2.4.0 -pytest==4.6.0 -python-dateutil==2.8.0 -six==1.12.0 -text-unidecode==1.2 -thrift==0.11.0 -wcwidth==0.1.7 -zipp==0.5.1 diff --git a/python/sdk/setup.py b/python/sdk/setup.py deleted file mode 100644 index 46676284ca..0000000000 --- a/python/sdk/setup.py +++ /dev/null @@ -1,21 +0,0 @@ -import setuptools - -long_description = '' - -setuptools.setup( - name="Milvus", - version="0.1.0", - author="XuanYang", - author_email="xuan.yang@zilliz.com", - description="Python Sdk for Milvus", - packages=setuptools.find_packages(), - classifiers=[ - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Operating System :: OS Independent", - ], - - - python_requires='>=3.4' -) \ No newline at end of file diff --git a/python/sdk/tests/TestClient.py b/python/sdk/tests/TestClient.py deleted file mode 100644 index e803d5a5ab..0000000000 --- a/python/sdk/tests/TestClient.py +++ /dev/null @@ -1,281 +0,0 @@ -import logging -import pytest -import mock -import faker -import random -import struct -from faker.providers import BaseProvider - -from client.Client import Milvus, Prepare -from client.Abstract import IndexType, TableSchema -from client.Status import Status -from client.Exceptions import ( - RepeatingConnectError, - DisconnectNotConnectedClientError -) -from milvus.thrift import ttypes, MilvusService - -from thrift.transport.TSocket import TSocket -from thrift.transport import TTransport -from thrift.transport.TTransport import TTransportException - -LOGGER = logging.getLogger(__name__) - - -class FakerProvider(BaseProvider): - - def table_name(self): - return 'table_name' + str(random.randint(1000, 9999)) - - def name(self): - return 'name' + str(random.randint(1000, 9999)) - - def dim(self): - return random.randint(0, 999) - - -fake = faker.Faker() -fake.add_provider(FakerProvider) - - -def range_factory(): - param = { - 'start': str(random.randint(1, 10)), - 'end': str(random.randint(11, 20)), - } - return Prepare.range(**param) - - -def ranges_factory(): - return [range_factory() for _ in range(5)] - - -def table_schema_factory(): - param = { - 'table_name': fake.table_name(), - 'dimension': random.randint(0, 999), - 'index_type': IndexType.IDMAP, - 'store_raw_vector': False - } - return Prepare.table_schema(**param) - - -def row_record_factory(dimension): - vec = [random.random() + random.randint(0,9) for _ in range(dimension)] - bin_vec = struct.pack(str(dimension) + "d", *vec) - - return Prepare.row_record(vector_data=bin_vec) - - -def row_records_factory(dimension): - return [row_record_factory(dimension) for _ in range(20)] - - -class TestConnection: - param = {'host':'localhost', 'port': '5000'} - - @mock.patch.object(TSocket, 'open') - def test_true_connect(self, open): - open.return_value = None - cnn = Milvus() - - cnn.connect(**self.param) - assert cnn.status == Status.SUCCESS - assert cnn.connected - - with pytest.raises(RepeatingConnectError): - cnn.connect(**self.param) - cnn.connect() - - def test_false_connect(self): - cnn = Milvus() - - cnn.connect(**self.param) - assert cnn.status != Status.SUCCESS - - @mock.patch.object(TTransport.TBufferedTransport, 'close') - @mock.patch.object(TSocket, 'open') - def test_disconnected(self, close, open): - close.return_value = None - open.return_value = None - - cnn = Milvus() - cnn.connect(**self.param) - - assert cnn.disconnect() == Status.SUCCESS - - def test_disconnected_error(self): - cnn = Milvus() - cnn.connect_status = Status(Status.PERMISSION_DENIED) - with pytest.raises(DisconnectNotConnectedClientError): - cnn.disconnect() - - -class TestTable: - - @pytest.fixture - @mock.patch.object(TSocket, 'open') - def client(self, open): - param = {'host': 'localhost', 'port': '5000'} - open.return_value = None - - cnn = Milvus() - cnn.connect(**param) - return cnn - - @mock.patch.object(MilvusService.Client, 'CreateTable') - def test_create_table(self, CreateTable, client): - CreateTable.return_value = None - - param = table_schema_factory() - res = client.create_table(param) - assert res == Status.SUCCESS - - def test_false_create_table(self, client): - param = table_schema_factory() - with pytest.raises(TTransportException): - res = client.create_table(param) - LOGGER.error('{}'.format(res)) - assert res != Status.SUCCESS - - @mock.patch.object(MilvusService.Client, 'DeleteTable') - def test_delete_table(self, DeleteTable, client): - DeleteTable.return_value = None - table_name = 'fake_table_name' - res = client.delete_table(table_name) - assert res == Status.SUCCESS - - def test_false_delete_table(self, client): - table_name = 'fake_table_name' - res = client.delete_table(table_name) - assert res != Status.SUCCESS - - -class TestVector: - - @pytest.fixture - @mock.patch.object(TSocket, 'open') - def client(self, open): - param = {'host': 'localhost', 'port': '5000'} - open.return_value = None - - cnn = Milvus() - cnn.connect(**param) - return cnn - - @mock.patch.object(MilvusService.Client, 'AddVector') - def test_add_vector(self, AddVector, client): - AddVector.return_value = None - - param ={ - 'table_name': fake.table_name(), - 'records': row_records_factory(256) - } - res, ids = client.add_vectors(**param) - assert res == Status.SUCCESS - - def test_false_add_vector(self, client): - param ={ - 'table_name': fake.table_name(), - 'records': row_records_factory(256) - } - res, ids = client.add_vectors(**param) - assert res != Status.SUCCESS - - @mock.patch.object(MilvusService.Client, 'SearchVector') - def test_search_vector(self, SearchVector, client): - SearchVector.return_value = None, None - param = { - 'table_name': fake.table_name(), - 'query_records': row_records_factory(256), - 'query_ranges': ranges_factory(), - 'top_k': random.randint(0, 10) - } - res, results = client.search_vectors(**param) - assert res == Status.SUCCESS - - def test_false_vector(self, client): - param = { - 'table_name': fake.table_name(), - 'query_records': row_records_factory(256), - 'query_ranges': ranges_factory(), - 'top_k': random.randint(0, 10) - } - res, results = client.search_vectors(**param) - assert res != Status.SUCCESS - - @mock.patch.object(MilvusService.Client, 'DescribeTable') - def test_describe_table(self, DescribeTable, client): - DescribeTable.return_value = table_schema_factory() - - table_name = fake.table_name() - res, table_schema = client.describe_table(table_name) - assert res == Status.SUCCESS - assert isinstance(table_schema, ttypes.TableSchema) - - def test_false_decribe_table(self, client): - table_name = fake.table_name() - res, table_schema = client.describe_table(table_name) - assert res != Status.SUCCESS - assert not table_schema - - @mock.patch.object(MilvusService.Client, 'ShowTables') - def test_show_tables(self, ShowTables, client): - ShowTables.return_value = [fake.table_name() for _ in range(10)], None - res, tables = client.show_tables() - assert res == Status.SUCCESS - assert isinstance(tables, list) - - def test_false_show_tables(self, client): - res, tables = client.show_tables() - assert res != Status.SUCCESS - assert not tables - - @mock.patch.object(MilvusService.Client, 'GetTableRowCount') - def test_get_table_row_count(self, GetTableRowCount, client): - GetTableRowCount.return_value = 22, None - res, count = client.get_table_row_count('fake_table') - assert res == Status.SUCCESS - - def test_false_get_table_row_count(self, client): - res,count = client.get_table_row_count('fake_table') - assert res != Status.SUCCESS - assert not count - - def test_client_version(self, client): - res = client.client_version() - assert res == '0.0.1' - - -class TestPrepare: - - def test_table_schema(self): - - param = { - 'table_name': fake.table_name(), - 'dimension': random.randint(0, 999), - 'index_type': IndexType.IDMAP, - 'store_raw_vector': False - } - res = Prepare.table_schema(**param) - assert isinstance(res, ttypes.TableSchema) - - def test_range(self): - param = { - 'start': '200', - 'end': '1000' - } - - res = Prepare.range(**param) - LOGGER.error('{}'.format(res)) - assert isinstance(res, ttypes.Range) - assert res.start_value == '200' - assert res.end_value == '1000' - - def test_row_record(self): - vec = [random.random() + random.randint(0, 9) for _ in range(256)] - bin_vec = struct.pack(str(256) + "d", *vec) - res = Prepare.row_record(bin_vec) - assert isinstance(res, ttypes.RowRecord) - assert isinstance(bin_vec, bytes) - diff --git a/python/sdk/tests/__init__.py b/python/sdk/tests/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 485e852bd5..0000000000 --- a/requirements.txt +++ /dev/null @@ -1,67 +0,0 @@ -# This file may be used to create an environment using: -# $ conda create --name --file -# platform: linux-64 -aniso8601=6.0.0=py_0 -asn1crypto=0.24.0=py36_0 -atomicwrites=1.3.0=py36_1 -attrs=19.1.0=py36_1 -blas=1.0=mkl -ca-certificates=2019.1.23=0 -certifi=2019.3.9=py36_0 -cffi=1.12.2=py36h2e261b9_1 -chardet=3.0.4=py36_1 -click=7.0=py36_0 -conda=4.6.8=py36_0 -conda-env=2.6.0=1 -cryptography=2.6.1=py36h1ba5d50_0 -cuda92=1.0=0 -faiss-cpu=1.5.0=py36_1 -faiss-gpu=1.5.0=py36_cuda9.2_1 -flask=1.0.2=py36_1 -flask-restful=0.3.6=py_1 -flask-sqlalchemy=2.3.2=py36_0 -idna=2.8=py36_0 -intel-openmp=2019.1=144 -itsdangerous=1.1.0=py36_0 -jinja2=2.10=py36_0 -libedit=3.1.20170329=h6b74fdf_2 -libffi=3.2.1=hd88cf55_4 -libgcc-ng=8.2.0=hdf63c60_1 -libgfortran-ng=7.3.0=hdf63c60_0 -libstdcxx-ng=8.2.0=hdf63c60_1 -markupsafe=1.1.1=py36h7b6447c_0 -mkl=2019.1=144 -mkl_fft=1.0.10=py36ha843d7b_0 -mkl_random=1.0.2=py36hd81dba3_0 -more-itertools=6.0.0=py36_0 -ncurses=6.1=he6710b0_1 -numpy=1.16.2=py36h7e9f1db_0 -numpy-base=1.16.2=py36hde5b4d6_0 -openssl=1.1.1b=h7b6447c_1 -pip=19.0.3=py36_0 -pluggy=0.9.0=py36_0 -py=1.8.0=py36_0 -pycosat=0.6.3=py36h14c3975_0 -pycparser=2.19=py36_0 -pycrypto=2.6.1=py36h14c3975_9 -pymysql=0.9.3=py36_0 -pyopenssl=19.0.0=py36_0 -pysocks=1.6.8=py36_0 -pytest=4.3.1=py36_0 -python=3.6.8=h0371630_0 -python-dateutil=2.8.0=py_0 -pytz=2018.9=py_0 -readline=7.0=h7b6447c_5 -requests=2.21.0=py36_0 -ruamel_yaml=0.15.46=py36h14c3975_0 -setuptools=40.8.0=py36_0 -six=1.12.0=py36_0 -sqlalchemy=1.3.1=py36h7b6447c_0 -sqlite=3.26.0=h7b6447c_0 -tk=8.6.8=hbc83047_0 -urllib3=1.24.1=py36_0 -werkzeug=0.14.1=py36_0 -wheel=0.33.1=py36_0 -xz=5.2.4=h14c3975_4 -yaml=0.1.7=had09818_2 -zlib=1.2.11=h7b6447c_3 diff --git a/run-cmake-format.py b/run-cmake-format.py deleted file mode 100755 index b09100757a..0000000000 --- a/run-cmake-format.py +++ /dev/null @@ -1,98 +0,0 @@ -#!/usr/bin/env python3 - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -import hashlib -import pathlib -import subprocess -import sys - - -patterns = [ - 'cpp/CMakeLists.txt', - # Keep an explicit list of files to format as we don't want to reformat - # files we imported from other location. - 'cpp/cmake/BuildUtils.cmake', - 'cpp/cmake/DefineOptions.cmake', - 'cpp/cmake/FindClangTools.cmake', - 'cpp/cmake/ThirdPartyPackages.cmake', - 'cpp/src/core/cmake/BuildUtilsCore.cmake', - 'cpp/src/core/cmake/DefineOptionsCore.cmake', - 'cpp/src/core/cmake/ThirdPartyPackagesCore.cmake', - 'cpp/src/**/CMakeLists.txt', - 'cpp/unittest/**/CMakeLists.txt' -] - -here = pathlib.Path(__file__).parent - - -def find_cmake_files(): - for pat in patterns: - yield from here.glob(pat) - - -def run_cmake_format(paths): - # cmake-format is fast enough that running in parallel doesn't seem - # necessary - # autosort is off because it breaks in cmake_format 5.1 - # See: https://github.com/cheshirekow/cmake_format/issues/111 - _paths = [str(path) for path in paths] - - cmd = ['cmake-format', '--in-place', '--autosort=false'] + _paths - try: - subprocess.run(cmd, check=True) - except FileNotFoundError: - try: - import cmake_format - except ImportError: - raise ImportError( - "Please install cmake-format: `pip install cmake_format`") - else: - # Other error, re-raise - raise - - -def check_cmake_format(paths): - hashes = {} - for p in paths: - contents = p.read_bytes() - hashes[p] = hashlib.sha256(contents).digest() - - run_cmake_format(paths) - - # Check contents didn't change - changed = [] - for p in paths: - contents = p.read_bytes() - if hashes[p] != hashlib.sha256(contents).digest(): - changed.append(p) - - if changed: - items = "\n".join("- %s" % p for p in sorted(changed)) - print("The following cmake files need re-formatting:\n%s" % (items,)) - print() - print("Consider running `run-cmake-format.py`") - sys.exit(1) - - -if __name__ == "__main__": - paths = list(find_cmake_files()) - if "--check" in sys.argv: - check_cmake_format(paths) - else: - run_cmake_format(paths)