-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jinzhi Chen
committed
Oct 23, 2024
0 parents
commit 63b8489
Showing
8,023 changed files
with
3,812,392 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.vscode | ||
.workspace | ||
.clangd | ||
.idea | ||
bin | ||
cmake-build-debug | ||
build | ||
.cache | ||
__pycache__ | ||
*.pyc | ||
compile_commands.json | ||
.history |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[submodule "mysql/contrib/mariadb-connector-c"] | ||
path = mysql/contrib/mariadb-connector-c | ||
url = https://github.com/MariaDB/mariadb-connector-c.git | ||
[submodule "kafka/cppkafka"] | ||
path = kafka/cppkafka | ||
url = https://github.com/mfontanini/cppkafka.git | ||
[submodule "RTSeis/rtseis"] | ||
path = RTSeis/rtseis | ||
url = https://github.com/uofuseismo/rtseis.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
cmake_minimum_required(VERSION 3.0) | ||
set(CMAKE_SKIP_RPATH TRUE) | ||
project(PluginAWSS3) | ||
add_definitions(-DLOCKFREE_SYMBASE) | ||
|
||
set(CMAKE_CXX_STANDARD 11) | ||
|
||
include_directories(${PROJECT_SOURCE_DIR}/../include) | ||
include_directories(${PROJECT_SOURCE_DIR}/thirdParty/aws/windows/include) | ||
include_directories(src) | ||
link_directories(${PROJECT_SOURCE_DIR}/thirdParty/aws/windows/lib) | ||
link_directories(${PROJECT_BINARY_DIR}) | ||
aux_source_directory(src PLUGINAWS_SRC) | ||
|
||
|
||
if(WIN32) | ||
set(platform_macro "-DWINDOWS") | ||
elseif(UNIX) | ||
set(platform_macro "-DLINUX") | ||
endif() | ||
|
||
add_compile_options(${platform_macro} -O0 -Wall -g -ggdb) | ||
|
||
# if(${CMAKE_BUILD_TYPE} MATCHES "Debug") | ||
# add_compile_options(${platform_macro} -O0 -Wall -g -ggdb) | ||
# message(STATUS "Build: Debug with -O0 -Wall -g -ggdb") | ||
# else() | ||
# set(CMAKE_BUILD_TYPE Release) | ||
# add_compile_options(${platform_macro} -O3 -std=c++11) | ||
# message(STATUS "Build: Release with -O3") | ||
# endif() | ||
|
||
add_library( | ||
${PROJECT_NAME} SHARED | ||
${PLUGINAWS_SRC}) | ||
|
||
target_link_libraries( | ||
${PROJECT_NAME} | ||
DolphinDB | ||
aws-cpp-sdk-s3 | ||
aws-cpp-sdk-core | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
aws,libPluginAWSS3.so,2.00.14 | ||
getS3Object,getS3Object,system,3,4,0 | ||
listS3Object,listS3Object,system,3,7,0 | ||
readS3Object,readS3Object,system,5,5,0 | ||
deleteS3Object,deleteS3Object,command,3,3,0 | ||
uploadS3Object,uploadS3Object,command,4,4,0 | ||
listS3Bucket,listS3Bucket,system,1,1,0 | ||
deleteS3Bucket,deleteS3Bucket,command,2,2,0 | ||
createS3Bucket,createS3Bucket,command,2,2,0 | ||
headS3Object,headS3Object,system,3,3,0 | ||
copyS3Object,copyS3Object,command,4,4,0 | ||
loadS3Object,loadS3Object,system,7,14,0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
aws,libPluginAWSS3.dll,2.00.14 | ||
getS3Object,getS3Object,system,3,4,0 | ||
listS3Object,listS3Object,system,3,7,0 | ||
readS3Object,readS3Object,system,5,5,0 | ||
deleteS3Object,deleteS3Object,command,3,3,0 | ||
uploadS3Object,uploadS3Object,command,4,4,0 | ||
listS3Bucket,listS3Bucket,system,1,1,0 | ||
deleteS3Bucket,deleteS3Bucket,command,2,2,0 | ||
createS3Bucket,createS3Bucket,command,2,2,0 | ||
headS3Object,headS3Object,system,3,3,0 | ||
copyS3Object,copyS3Object,command,4,4,0 | ||
loadS3Object,loadS3Object,system,7,14,0 |
Oops, something went wrong.