-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat:import braft #130
Merged
dingxiaoshuai123
merged 29 commits into
OpenAtomFoundation:import-braft
from
panlei-coder:import-braft
Mar 6, 2024
Merged
feat:import braft #130
Changes from 25 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
6e45317
feat:Import braft (#133)
panlei-coder cfe3482
fix:fixed a bug where the compiler could not find glog (#134)
panlei-coder aea6aca
fix:fixed a bug that included braft (#163)
panlei-coder ea22b29
change rm command format
AlexStocks 2090c8c
fix:Synchronize the latest changes to the import-braft branch (#180)
panlei-coder 2a49a98
feat: import braft
panlei-coder 0f1eada
fix: fix braft.cmake
panlei-coder 036bb94
fix:fix import braft cmake
panlei-coder 8ec20df
fix: fix fetchcontent_populate
panlei-coder 9cc9f53
fix: fix find gflags brpc braft cmake
panlei-coder 37b7744
add independent code and fix brpc
Centurybbx 9c366a5
fix: delete unnecessary comments
panlei-coder 7dfb91d
fix: fix fetch content to ExternalProject_Add
panlei-coder 921fe14
fix: add counter.pb.h and counter.pb.cc
panlei-coder 1ca6b3b
fix: fixed a bug where the compiler could not find glog
panlei-coder 7262dd0
fix:fixed a bug that included braft
panlei-coder bf54c66
fix:fix bug in debug mode
panlei-coder 3a5d540
fix:fixed a bug where the compiler could not find glog (#134)
panlei-coder cabc2c0
fix:resolve code conflicts
panlei-coder 311458a
fix:disable glog
panlei-coder bfd087f
fix:fix compilation issues on mac
panlei-coder 3b50bf6
Merge branch 'import-braft' into import-braft
panlei-coder cef1beb
mac & linux
dingxiaoshuai123 2e048e4
fix:resolve fail of not found leveldb
panlei-coder a5cfb78
fix:uniformly capitalize the cmake keyword
panlei-coder 7c78fce
fix:fix comment
panlei-coder e2c8b98
fix:Change the number of threads at compile time for braft and brpc
panlei-coder 905ea44
fix:delete test/counter files
panlei-coder 9e5ab28
fix:Change the branch of the third-party library braft to master
panlei-coder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,48 @@ | ||
# Copyright (c) 2023-present, Qihoo, Inc. All rights reserved. | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. An additional grant | ||
# of patent rights can be found in the PATENTS file in the same directory. | ||
|
||
INCLUDE(ExternalProject) | ||
|
||
SET(BRAFT_SOURCES_DIR ${THIRD_PARTY_PATH}/braft) | ||
SET(BRAFT_INSTALL_DIR ${THIRD_PARTY_PATH}/install/braft) | ||
SET(BRAFT_INCLUDE_DIR "${BRAFT_INSTALL_DIR}/include" CACHE PATH "braft include directory." FORCE) | ||
SET(BRAFT_LIBRARIES "${BRAFT_INSTALL_DIR}/lib/libbraft.a" CACHE FILEPATH "braft library." FORCE) | ||
|
||
SET(NUM_OF_PROCESSOR 1) | ||
|
||
SET(prefix_path "${THIRD_PARTY_PATH}/install/brpc|${CMAKE_CURRENT_BINARY_DIR}/_deps/gflags-build|${THIRD_PARTY_PATH}/install/protobuf|${THIRD_PARTY_PATH}/install/zlib|${CMAKE_CURRENT_BINARY_DIR}/_deps/leveldb-build|${CMAKE_CURRENT_BINARY_DIR}/_deps/leveldb-src") | ||
|
||
ExternalProject_Add( | ||
AlexStocks marked this conversation as resolved.
Show resolved
Hide resolved
|
||
extern_braft | ||
${EXTERNAL_PROJECT_LOG_ARGS} | ||
DEPENDS brpc | ||
URL "https://github.com/baidu/braft/archive/v1.1.2.tar.gz" | ||
PREFIX ${BRAFT_SOURCES_DIR} | ||
UPDATE_COMMAND "" | ||
CMAKE_ARGS -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} | ||
-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} | ||
-DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} | ||
-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS} | ||
-DCMAKE_INSTALL_PREFIX=${BRAFT_INSTALL_DIR} | ||
-DCMAKE_INSTALL_LIBDIR=${BRAFT_INSTALL_DIR}/lib | ||
-DCMAKE_POSITION_INDEPENDENT_CODE=ON | ||
-DCMAKE_BUILD_TYPE=${THIRD_PARTY_BUILD_TYPE} | ||
-DCMAKE_PREFIX_PATH=${prefix_path} | ||
-DBRPC_WITH_GLOG=OFF | ||
-DWITH_DEBUG_SYMBOLS=OFF | ||
${EXTERNAL_OPTIONAL_ARGS} | ||
LIST_SEPARATOR | | ||
CMAKE_CACHE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=${BRAFT_INSTALL_DIR} | ||
-DCMAKE_INSTALL_LIBDIR:PATH=${BRAFT_INSTALL_DIR}/lib | ||
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON | ||
-DCMAKE_BUILD_TYPE:STRING=${THIRD_PARTY_BUILD_TYPE} | ||
BUILD_IN_SOURCE 1 | ||
BUILD_COMMAND $(MAKE) -j ${NUM_OF_PROCESSOR} braft-static | ||
INSTALL_COMMAND mkdir -p ${BRAFT_INSTALL_DIR}/lib/ COMMAND cp ${BRAFT_SOURCES_DIR}/src/extern_braft/output/lib/libbraft.a ${BRAFT_LIBRARIES} COMMAND cp -r ${BRAFT_SOURCES_DIR}/src/extern_braft/output/include ${BRAFT_INCLUDE_DIR}/ | ||
) | ||
ADD_DEPENDENCIES(extern_braft brpc) | ||
ADD_LIBRARY(braft STATIC IMPORTED GLOBAL) | ||
SET_PROPERTY(TARGET braft PROPERTY IMPORTED_LOCATION ${BRAFT_LIBRARIES}) | ||
ADD_DEPENDENCIES(braft extern_braft) |
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,50 @@ | ||
# Copyright (c) 2023-present, Qihoo, Inc. All rights reserved. | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. An additional grant | ||
# of patent rights can be found in the PATENTS file in the same directory. | ||
|
||
INCLUDE(ExternalProject) | ||
|
||
SET(BRPC_SOURCES_DIR ${THIRD_PARTY_PATH}/brpc) | ||
SET(BRPC_INSTALL_DIR ${THIRD_PARTY_PATH}/install/brpc) | ||
SET(BRPC_INCLUDE_DIR "${BRPC_INSTALL_DIR}/include" CACHE PATH "brpc include directory." FORCE) | ||
SET(BRPC_LIBRARIES "${BRPC_INSTALL_DIR}/lib/libbrpc.a" CACHE FILEPATH "brpc library." FORCE) | ||
|
||
SET(NUM_OF_PROCESSOR 1) | ||
|
||
# Reference https://stackoverflow.com/questions/45414507/pass-a-list-of-prefix-paths-to-externalproject-add-in-cmake-args | ||
SET(prefix_path "${CMAKE_CURRENT_BINARY_DIR}/_deps/gflags-build|${THIRD_PARTY_PATH}/install/protobuf|${THIRD_PARTY_PATH}/install/zlib|${CMAKE_CURRENT_BINARY_DIR}/_deps/leveldb-build|${CMAKE_CURRENT_BINARY_DIR}/_deps/leveldb-src") | ||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations") | ||
# If minimal .a is need, you can set WITH_DEBUG_SYMBOLS=OFF | ||
EXTERNALPROJECT_ADD( | ||
extern_brpc | ||
${EXTERNAL_PROJECT_LOG_ARGS} | ||
DEPENDS ssl crypto zlib protobuf leveldb gflags | ||
URL "https://github.com/apache/brpc/archive/1.3.0.tar.gz" | ||
PREFIX ${BRPC_SOURCES_DIR} | ||
UPDATE_COMMAND "" | ||
CMAKE_ARGS -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} | ||
-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} | ||
-DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} | ||
-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS} | ||
-DCMAKE_INSTALL_PREFIX=${BRPC_INSTALL_DIR} | ||
-DCMAKE_INSTALL_LIBDIR=${BRPC_INSTALL_DIR}/lib | ||
-DCMAKE_POSITION_INDEPENDENT_CODE=ON | ||
-DCMAKE_BUILD_TYPE=${THIRD_PARTY_BUILD_TYPE} | ||
-DCMAKE_PREFIX_PATH=${prefix_path} | ||
-DWITH_GLOG=OFF | ||
-DDOWNLOAD_GTEST=OFF | ||
${EXTERNAL_OPTIONAL_ARGS} | ||
LIST_SEPARATOR | | ||
CMAKE_CACHE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=${BRPC_INSTALL_DIR} | ||
-DCMAKE_INSTALL_LIBDIR:PATH=${BRPC_INSTALL_DIR}/lib | ||
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON | ||
-DCMAKE_BUILD_TYPE:STRING=${THIRD_PARTY_BUILD_TYPE} | ||
BUILD_IN_SOURCE 1 | ||
BUILD_COMMAND $(MAKE) -j ${NUM_OF_PROCESSOR} brpc-static | ||
INSTALL_COMMAND mkdir -p ${BRPC_INSTALL_DIR}/lib/ COMMAND cp ${BRPC_SOURCES_DIR}/src/extern_brpc/output/lib/libbrpc.a ${BRPC_LIBRARIES} COMMAND cp -r ${BRPC_SOURCES_DIR}/src/extern_brpc/output/include ${BRPC_INCLUDE_DIR}/ | ||
) | ||
ADD_DEPENDENCIES(extern_brpc ssl crypto zlib protobuf leveldb gflags) | ||
ADD_LIBRARY(brpc STATIC IMPORTED GLOBAL) | ||
SET_PROPERTY(TARGET brpc PROPERTY IMPORTED_LOCATION ${BRPC_LIBRARIES}) | ||
ADD_DEPENDENCIES(brpc extern_brpc) |
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 |
---|---|---|
@@ -1,59 +1,64 @@ | ||
# Copyright (c) 2023-present, Qihoo, Inc. All rights reserved. | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. An additional grant | ||
# of patent rights can be found in the PATENTS file in the same directory. | ||
|
||
FIND_PROGRAM(AUTOCONF autoconf PATHS /usr/bin /usr/local/bin) | ||
|
||
IF(${AUTOCONF} MATCHES AUTOCONF-NOTFOUND) | ||
IF (${AUTOCONF} MATCHES AUTOCONF-NOTFOUND) | ||
MESSAGE(FATAL_ERROR "not find autoconf on localhost") | ||
ENDIF() | ||
ENDIF () | ||
|
||
#set(CLANG_SEARCH_PATH "/usr/local/bin" "/usr/bin" "/usr/local/opt/llvm/bin" | ||
# "/usr/local/opt/llvm@12/bin") | ||
FIND_PROGRAM(CLANG_FORMAT_BIN | ||
NAMES clang-format | ||
HINTS ${CLANG_SEARCH_PATH}) | ||
IF("${CLANG_FORMAT_BIN}" STREQUAL "CLANG_FORMAT_BIN-NOTFOUND") | ||
IF ("${CLANG_FORMAT_BIN}" STREQUAL "CLANG_FORMAT_BIN-NOTFOUND") | ||
MESSAGE(WARNING "couldn't find clang-format.") | ||
ELSE() | ||
ELSE () | ||
MESSAGE(STATUS "found clang-format at ${CLANG_FORMAT_BIN}") | ||
ENDIF() | ||
ENDIF () | ||
|
||
FIND_PROGRAM(CLANG_TIDY_BIN | ||
NAMES clang-tidy clang-tidy-12 | ||
HINTS ${CLANG_SEARCH_PATH}) | ||
IF("${CLANG_TIDY_BIN}" STREQUAL "CLANG_TIDY_BIN-NOTFOUND") | ||
IF ("${CLANG_TIDY_BIN}" STREQUAL "CLANG_TIDY_BIN-NOTFOUND") | ||
MESSAGE(WARNING "couldn't find clang-tidy.") | ||
ELSE() | ||
ELSE () | ||
MESSAGE(STATUS "found clang-tidy at ${CLANG_TIDY_BIN}") | ||
ENDIF() | ||
ENDIF () | ||
|
||
FIND_PROGRAM(CPPLINT_BIN | ||
NAMES cpplint cpplint.py | ||
HINTS "${BUILD_SUPPORT_DIR}") | ||
IF("${CPPLINT_BIN}" STREQUAL "CPPLINT_BIN-NOTFOUND") | ||
IF ("${CPPLINT_BIN}" STREQUAL "CPPLINT_BIN-NOTFOUND") | ||
MESSAGE(WARNING "couldn't find cpplint.py") | ||
ELSE() | ||
ELSE () | ||
MESSAGE(STATUS "found cpplint at ${CPPLINT_BIN}") | ||
ENDIF() | ||
ENDIF () | ||
|
||
FIND_PROGRAM(CLANG_APPLY_REPLACEMENTS_BIN | ||
NAMES clang-apply-replacements clang-apply-replacements-12 | ||
HINTS ${CLANG_SEARCH_PATH}) | ||
|
||
IF("${CLANG_APPLY_REPLACEMENTS_BIN}" STREQUAL "CLANG_APPLY_REPLACEMENTS_BIN-NOTFOUND") | ||
IF ("${CLANG_APPLY_REPLACEMENTS_BIN}" STREQUAL "CLANG_APPLY_REPLACEMENTS_BIN-NOTFOUND") | ||
MESSAGE(WARNING "couldn't find clang-apply-replacements.") | ||
ELSE() | ||
ELSE () | ||
MESSAGE(STATUS "found clang-apply-replacements at ${CLANG_APPLY_REPLACEMENTS_BIN}") | ||
ENDIF() | ||
ENDIF () | ||
|
||
OPTION(WITH_COMMAND_DOCS "build with command docs support" OFF) | ||
IF(WITH_COMMAND_DOCS) | ||
IF (WITH_COMMAND_DOCS) | ||
ADD_DEFINITIONS(-DWITH_COMMAND_DOCS) | ||
ENDIF() | ||
ENDIF () | ||
|
||
IF(${CMAKE_BUILD_TYPE} MATCHES "RELEASE") | ||
IF (${CMAKE_BUILD_TYPE} MATCHES "RELEASE") | ||
MESSAGE(STATUS "make RELEASE version") | ||
ADD_DEFINITIONS(-DBUILD_RELEASE) | ||
SET(BuildType "Release") | ||
ELSE() | ||
ELSE () | ||
MESSAGE(STATUS "make DEBUG version") | ||
ADD_DEFINITIONS(-DBUILD_DEBUG) | ||
SET(BuildType "Debug") | ||
ENDIF() | ||
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
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pikiwidb里的cmake有一个代码是获取cpu核数的,可以复用那个代码。只用一个cpu编译会比较慢。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
好的