forked from facebook/mvfst
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 50d4939
Showing
287 changed files
with
71,535 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_build/ |
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,99 @@ | ||
# Copyright (c) Facebook, Inc. and its affiliates. | ||
# | ||
# This source code is licensed under the MIT license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
cmake_minimum_required(VERSION 3.10) | ||
|
||
project( | ||
mvfst | ||
) | ||
|
||
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) | ||
|
||
# QUIC_FBCODE_ROOT is where the top level quic/ directory resides, so | ||
# an #include <quic/path/to/file> will resolve to | ||
# $QUIC_FBCODE_ROOT/quic/path/to/file on disk | ||
set(QUIC_FBCODE_ROOT ${CMAKE_CURRENT_SOURCE_DIR}) | ||
|
||
# Dependencies | ||
find_package(Boost 1.58 | ||
REQUIRED COMPONENTS | ||
iostreams | ||
system | ||
thread | ||
filesystem | ||
regex | ||
context | ||
) | ||
find_package(folly REQUIRED) | ||
find_package(Fizz REQUIRED) | ||
find_package(Glog REQUIRED) | ||
find_package(Threads) | ||
|
||
SET(GFLAG_DEPENDENCIES "") | ||
SET(QUIC_EXTRA_LINK_LIBRARIES "") | ||
SET(QUIC_EXTRA_INCLUDE_DIRECTORIES "") | ||
|
||
# find_package(gflags COMPONENTS static) | ||
find_package(gflags CONFIG QUIET) | ||
if (gflags_FOUND) | ||
message("module path: ${CMAKE_MODULE_PATH}") | ||
message(STATUS "Found gflags from package config") | ||
if (TARGET gflags-shared) | ||
list(APPEND GFLAG_DEPENDENCIES gflags-shared) | ||
elseif (TARGET gflags) | ||
list(APPEND GFLAG_DEPENDENCIES gflags) | ||
else() | ||
message(FATAL_ERROR "Unable to determine the target name for the GFlags package.") | ||
endif() | ||
list(APPEND CMAKE_REQUIRED_LIBRARIES ${GFLAGS_LIBRARIES}) | ||
list(APPEND CMAKE_REQUIRED_INCLUDES ${GFLAGS_INCLUDE_DIR}) | ||
else() | ||
find_package(Gflags REQUIRED MODULE) | ||
list(APPEND QUIC_EXTRA_LINK_LIBRARIES ${LIBGFLAGS_LIBRARY}) | ||
list(APPEND QUIC_EXTRA_INCLUDE_DIRECTORIES ${LIBGFLAGS_INCLUDE_DIR}) | ||
list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBGFLAGS_LIBRARY}) | ||
list(APPEND CMAKE_REQUIRED_INCLUDES ${LIBGFLAGS_INCLUDE_DIR}) | ||
endif() | ||
|
||
list(APPEND | ||
_QUIC_COMMON_COMPILE_OPTIONS | ||
-std=c++14 | ||
-Wall | ||
-Wextra | ||
# more strict options | ||
-Werror=sign-compare | ||
-Werror=bool-compare | ||
-Werror=unused-variable | ||
-Woverloaded-virtual | ||
-Wnon-virtual-dtor | ||
) | ||
|
||
include(QuicTest) | ||
|
||
add_subdirectory(quic) | ||
|
||
if(BUILD_TESTS) | ||
enable_testing() | ||
find_package(GTest REQUIRED) | ||
find_package(GMock REQUIRED) | ||
endif() | ||
|
||
install( | ||
EXPORT mvfst-exports | ||
FILE mvfst-targets.cmake | ||
NAMESPACE mvfst:: | ||
DESTINATION lib/cmake/mvfst/ | ||
) | ||
|
||
include(CMakePackageConfigHelpers) | ||
configure_package_config_file( | ||
cmake/mvfst-config.cmake.in | ||
${CMAKE_CURRENT_BINARY_DIR}/mvfst-config.cmake | ||
INSTALL_DESTINATION lib/cmake/mvfst/ | ||
) | ||
install( | ||
FILES ${CMAKE_CURRENT_BINARY_DIR}/mvfst-config.cmake | ||
DESTINATION lib/cmake/mvfst/ | ||
) |
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,3 @@ | ||
# Code of Conduct | ||
|
||
Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please [read the full text](https://code.facebook.com/codeofconduct) so that you can understand what actions will and will not be tolerated. |
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,44 @@ | ||
# Contributing to MVFST | ||
Here's a quick rundown of how to contribute to this project. | ||
|
||
## Code of Conduct | ||
The code of conduct is described in [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md) | ||
|
||
## Our Development Process | ||
We develop on a private branch internally at Facebook. We regularly update | ||
this github project with the changes from the internal repo. External pull | ||
requests are cherry-picked into our repo and then pushed back out. | ||
|
||
## Pull Requests | ||
We actively welcome your pull requests. | ||
|
||
1. Fork the repo and create your branch from `master`. | ||
1. If you've added code that should be tested, add tests | ||
1. If you've changed APIs, update the documentation. | ||
1. Ensure the test suite passes. | ||
1. Make sure your code lints. | ||
1. If you haven't already, complete the Contributor License Agreement ("CLA"). | ||
|
||
## Contributor License Agreement ("CLA") | ||
In order to accept your pull request, we need you to submit a CLA. You | ||
only need | ||
to do this once to work on any of Facebook's open source projects. | ||
|
||
Complete your CLA here: <https://code.facebook.com/cla> | ||
|
||
## Issues | ||
We use GitHub issues to track public bugs. Please ensure your description | ||
is clear and has sufficient instructions to be able to reproduce the issue. | ||
|
||
Facebook has a [bounty program](https://www.facebook.com/whitehat/) for | ||
the safe disclosure of security bugs. In those cases, please go through | ||
the process outlined on that page and do not file a public issue. | ||
|
||
## Coding Style | ||
We use clang-format tool for coding style. | ||
Please run `clang-format -i <filename>` on file, where changes has been made | ||
before you commit them. | ||
|
||
## License | ||
By contributing to MVFST, you agree that your contributions will be | ||
licensed under its BSD license. |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) Facebook, Inc. and its affiliates. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,33 @@ | ||
|
||
|
||
## Building | ||
|
||
### Ubuntu 16+ | ||
|
||
To begin, you should install the dependencies we need for build. This largely | ||
consists of dependencies from [folly](https://github.com/facebook/folly) as well as | ||
[fizz](https://github.com/facebookincubator/fizz). | ||
|
||
``` | ||
sudo apt-get install \ | ||
g++ \ | ||
cmake \ | ||
libboost-all-dev \ | ||
libevent-dev \ | ||
libdouble-conversion-dev \ | ||
libgoogle-glog-dev \ | ||
libgflags-dev \ | ||
libiberty-dev \ | ||
liblz4-dev \ | ||
liblzma-dev \ | ||
libsnappy-dev \ | ||
make \ | ||
zlib1g-dev \ | ||
binutils-dev \ | ||
libjemalloc-dev \ | ||
libssl-dev \ | ||
pkg-config \ | ||
libsodium-dev | ||
``` | ||
|
||
Then, build and install folly and fizz |
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,93 @@ | ||
# University of Illinois/NCSA | ||
# Open Source License | ||
# | ||
# Copyright (c) 2003-2017 University of Illinois at Urbana-Champaign. | ||
# All rights reserved. | ||
# | ||
# Developed by: | ||
# | ||
# LLVM Team | ||
# | ||
# University of Illinois at Urbana-Champaign | ||
# | ||
# http://llvm.org | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
# this software and associated documentation files (the "Software"), to deal with | ||
# the Software without restriction, including without limitation the rights to | ||
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
# of the Software, and to permit persons to whom the Software is furnished to do | ||
# so, subject to the following conditions: | ||
# | ||
# * Redistributions of source code must retain the above copyright notice, | ||
# this list of conditions and the following disclaimers. | ||
# | ||
# * Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimers in the | ||
# documentation and/or other materials provided with the distribution. | ||
# | ||
# * Neither the names of the LLVM Team, University of Illinois at | ||
# Urbana-Champaign, nor the names of its contributors may be used to | ||
# endorse or promote products derived from this Software without specific | ||
# prior written permission. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE | ||
# SOFTWARE. | ||
|
||
include(CheckCXXSourceCompiles) | ||
|
||
# Sometimes linking against libatomic is required for atomic ops, if | ||
# the platform doesn't support lock-free atomics. | ||
|
||
function(check_working_cxx_atomics varname) | ||
set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) | ||
get_directory_property(compile_options COMPILE_OPTIONS) | ||
set(CMAKE_REQUIRED_FLAGS ${compile_options}) | ||
CHECK_CXX_SOURCE_COMPILES(" | ||
#include <atomic> | ||
int main() { | ||
struct Test { int val; }; | ||
std::atomic<Test> s; | ||
s.is_lock_free(); | ||
}" ${varname}) | ||
set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) | ||
endfunction(check_working_cxx_atomics) | ||
|
||
|
||
if(NOT DEFINED PROXYGEN_COMPILER_IS_GCC_COMPATIBLE) | ||
if(CMAKE_COMPILER_IS_GNUCXX) | ||
set(PROXYGEN_COMPILER_IS_GCC_COMPATIBLE ON) | ||
elseif(MSVC) | ||
set(PROXYGEN_COMPILER_IS_GCC_COMPATIBLE OFF) | ||
elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") | ||
set(PROXYGEN_COMPILER_IS_GCC_COMPATIBLE ON) | ||
elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "Intel") | ||
set(PROXYGEN_COMPILER_IS_GCC_COMPATIBLE ON) | ||
endif() | ||
endif() | ||
|
||
# This isn't necessary on MSVC, so avoid command-line switch annoyance | ||
# by only running on GCC-like hosts. | ||
if(PROXYGEN_COMPILER_IS_GCC_COMPATIBLE) | ||
# First check if atomics work without the library. | ||
check_working_cxx_atomics(HAVE_CXX_ATOMICS_WITHOUT_LIB) | ||
# If not, check if the library exists, and atomics work with it. | ||
if(NOT HAVE_CXX_ATOMICS_WITHOUT_LIB) | ||
check_library_exists(atomic __atomic_is_lock_free "" HAVE_LIBATOMIC) | ||
if(HAVE_LIBATOMIC) | ||
list(APPEND CMAKE_REQUIRED_LIBRARIES "atomic") | ||
check_working_cxx_atomics(HAVE_CXX_ATOMICS_WITH_LIB) | ||
if (NOT HAVE_CXX_ATOMICS_WITH_LIB) | ||
message(FATAL_ERROR "Host compiler must support std::atomic!") | ||
endif() | ||
list(APPEND CMAKE_CXX_STANDARD_LIBRARIES -latomic) | ||
else() | ||
message(FATAL_ERROR "Host compiler appears to require libatomic, but cannot find it.") | ||
endif() | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# - Try to find double-conversion | ||
# Once done, this will define | ||
# | ||
# DOUBLE_CONVERSION_FOUND - system has double-conversion | ||
# DOUBLE_CONVERSION_INCLUDE_DIRS - the double-conversion include directories | ||
# DOUBLE_CONVERSION_LIBRARIES - link these to use double-conversion | ||
|
||
include(FindPackageHandleStandardArgs) | ||
|
||
find_library(DOUBLE_CONVERSION_LIBRARY double-conversion | ||
PATHS ${DOUBLE_CONVERSION_LIBRARYDIR}) | ||
|
||
find_path(DOUBLE_CONVERSION_INCLUDE_DIR double-conversion/double-conversion.h | ||
PATHS ${DOUBLE_CONVERSION_INCLUDEDIR}) | ||
|
||
find_package_handle_standard_args(double_conversion DEFAULT_MSG | ||
DOUBLE_CONVERSION_LIBRARY | ||
DOUBLE_CONVERSION_INCLUDE_DIR) | ||
|
||
mark_as_advanced( | ||
DOUBLE_CONVERSION_LIBRARY | ||
DOUBLE_CONVERSION_INCLUDE_DIR) | ||
|
||
set(DOUBLE_CONVERSION_LIBRARIES ${DOUBLE_CONVERSION_LIBRARY}) | ||
set(DOUBLE_CONVERSION_INCLUDE_DIRS ${DOUBLE_CONVERSION_INCLUDE_DIR}) |
Oops, something went wrong.