-
Notifications
You must be signed in to change notification settings - Fork 501
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into opendal_compat
- Loading branch information
Showing
24 changed files
with
208 additions
and
211 deletions.
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
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,90 @@ | ||
# 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_minimum_required(VERSION 3.22) | ||
project(opendal-c) | ||
|
||
if (NOT CMAKE_BUILD_TYPE) | ||
set(CMAKE_BUILD_TYPE "Debug") | ||
endif() | ||
|
||
option(TEST_ENABLE_ASAN "Enable AddressSanitizer for tests" OFF) | ||
set(GOOGLETEST_VERSION 1.15.2) | ||
|
||
# force the compiler to support these standards | ||
set(CMAKE_C_STANDARD 11) | ||
set(CMAKE_C_STANDARD_REQUIRED ON) | ||
|
||
# for GoogleTest, it should be no less than C++14 | ||
set(CMAKE_CXX_STANDARD 14) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
# fetch google test via GitHub | ||
include(FetchContent) | ||
FetchContent_Declare( | ||
googletest | ||
URL https://github.com/google/googletest/archive/refs/tags/v${GOOGLETEST_VERSION}.zip | ||
) | ||
# For Windows: Prevent overriding the parent project's compiler/linker settings | ||
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) | ||
FetchContent_MakeAvailable(googletest) | ||
|
||
set(CARGO_DIST_DIR "${PROJECT_SOURCE_DIR}/target/debug") | ||
if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug") | ||
set(CARGO_BUILD_TYPE "--release") | ||
set(CARGO_DIST_DIR "${PROJECT_SOURCE_DIR}/target/release") | ||
endif() | ||
|
||
set(OPENDAL_STATIC_LIB "${CARGO_DIST_DIR}/libopendal_c.a") | ||
set(OPENDAL_SHARED_LIB "${CARGO_DIST_DIR}/libopendal_c.so") | ||
message(NOTICE "-- OpenDAL C static lib: ${OPENDAL_STATIC_LIB}") | ||
message(NOTICE "-- OpenDAL C shared lib: ${OPENDAL_SHARED_LIB}") | ||
|
||
# custom target for cargo build | ||
add_custom_target(cargo_build | ||
COMMAND sh -c "cargo build ${CARGO_BUILD_TYPE}" | ||
BYPRODUCTS ${OPENDAL_STATIC_LIB} ${OPENDAL_SHARED_LIB} | ||
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} | ||
) | ||
|
||
# cmake target for static lib | ||
add_library(opendal_c_static INTERFACE) | ||
target_link_libraries(opendal_c_static INTERFACE ${OPENDAL_STATIC_LIB}) | ||
target_include_directories(opendal_c_static INTERFACE include) | ||
add_dependencies(opendal_c_static cargo_build) | ||
|
||
# cmake target for shared lib | ||
add_library(opendal_c_shared INTERFACE) | ||
target_link_libraries(opendal_c_shared INTERFACE ${OPENDAL_SHARED_LIB}) | ||
target_include_directories(opendal_c_shared INTERFACE include) | ||
add_dependencies(opendal_c_shared cargo_build) | ||
|
||
# example targets | ||
add_executable(basic examples/basic.c) | ||
target_link_libraries(basic opendal_c_shared) | ||
|
||
add_executable(error_handle examples/error_handle.c) | ||
target_link_libraries(error_handle opendal_c_shared) | ||
|
||
# test targets | ||
file(GLOB TEST_SRCS tests/*.cpp) | ||
add_executable(tests ${TEST_SRCS}) | ||
target_link_libraries(tests opendal_c_shared gtest_main) | ||
if (TEST_ENABLE_ASAN) | ||
target_compile_options(tests PRIVATE -fsanitize=address) | ||
target_link_options(tests PRIVATE -fsanitize=address) | ||
endif() |
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 |
---|---|---|
|
@@ -15,75 +15,17 @@ | |
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
RPATH=$(PWD)/target/debug | ||
OBJ_DIR=./build | ||
DOC_DIR=./docs | ||
|
||
CCFLAGS=-I./include | ||
CXXFLAGS=-I./include -std=c++14 | ||
LDFLAGS=-L$(RPATH) -Wl,-rpath,$(RPATH) | ||
|
||
LIBS=-lopendal_c -lgtest -lpthread | ||
|
||
VALGRIND=valgrind --error-exitcode=1 --leak-check=full -- | ||
|
||
.PHONY: all | ||
all: build test examples | ||
|
||
.PHONY: format | ||
format: | ||
cargo fmt | ||
find . -name '*.cpp' -exec clang-format -i --style=WebKit --verbose {} \; | ||
find . -name '*.c' -exec clang-format -i --style=WebKit --verbose {} \; | ||
|
||
.PHONY: build | ||
build: | ||
mkdir -p $(OBJ_DIR) | ||
cargo build | ||
|
||
.PHONY: test | ||
test: | ||
$(CXX) tests/bdd.cpp -o $(OBJ_DIR)/bdd $(CXXFLAGS) $(LDFLAGS) $(LIBS) | ||
$(CXX) tests/list.cpp -o $(OBJ_DIR)/list $(CXXFLAGS) $(LDFLAGS) $(LIBS) | ||
$(CXX) tests/error_msg.cpp -o $(OBJ_DIR)/error_msg $(CXXFLAGS) $(LDFLAGS) $(LIBS) | ||
$(CXX) tests/opinfo.cpp -o $(OBJ_DIR)/opinfo $(CXXFLAGS) $(LDFLAGS) $(LIBS) | ||
$(OBJ_DIR)/bdd | ||
$(OBJ_DIR)/list | ||
$(OBJ_DIR)/error_msg | ||
$(OBJ_DIR)/opinfo | ||
|
||
.PHONY: test_memory_leak | ||
memory_leak: | ||
$(VALGRIND) $(OBJ_DIR)/bdd | ||
$(VALGRIND) $(OBJ_DIR)/list | ||
$(VALGRIND) $(OBJ_DIR)/error_msg | ||
|
||
.PHONY: doc | ||
doc: | ||
mkdir -p $(DOC_DIR) | ||
curl --proto '=https' --tlsv1.2 -sSf https://cdn.jsdelivr.net/gh/jothepro/[email protected]/doxygen-awesome.min.css \ | ||
-o $(DOC_DIR)/doxygen-awesome.css | ||
doxygen Doxyfile | ||
|
||
# build examples begin | ||
EXAMPLES=$(wildcard ./examples/*.c) | ||
EXAMPLE_OBJECTS=$(EXAMPLES:.c=.o) | ||
EXAMPLE_TARGETS=$(EXAMPLES:.c=) | ||
.PHONY: examples | ||
examples: $(EXAMPLE_TARGETS) | ||
|
||
$(EXAMPLE_TARGETS): % : %.o | ||
$(CC) $(CCFLAGS) -o $@ $< $(LDFLAGS) $(LIBS) | ||
|
||
%.o: %.c | ||
$(CC) $(CCFLAGS) -c $< -o $@ | ||
# build examples end | ||
|
||
.PHONY: clean | ||
clean: | ||
cargo clean | ||
rm -rf $(EXAMPLE_OBJECTS) | ||
rm -rf $(EXAMPLE_TARGETS) | ||
rm -rf $(OBJ_DIR) | ||
rm -rf $(DOC_DIR) | ||
|
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
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
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
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
Oops, something went wrong.