Files
boost_beast/README.md

180 lines
8.5 KiB
Markdown
Raw Normal View History

2017-07-23 08:01:02 -07:00
<img width="880" height = "80" alt = "Boost.Beast Title"
src="https://raw.githubusercontent.com/boostorg/beast/master/doc/images/readme2.png">
2016-08-26 07:32:31 -04:00
2017-01-31 16:16:25 -05:00
# HTTP and WebSocket built on Boost.Asio in C++11
2017-07-26 15:18:47 -07:00
Branch | Linux/OSX | Windows | Coverage | Documentation | Matrix
------------|-----------|---------|----------|---------------|--------
2017-07-31 15:52:11 -07:00
[master](https://github.com/boostorg/beast/tree/master) | [![Build Status](https://travis-ci.org/boostorg/beast.svg?branch=master)](https://travis-ci.org/boostorg/beast) | [![Build status](https://ci.appveyor.com/api/projects/status/g0llpbvhpjuxjnlw/branch/master?svg=true)](https://ci.appveyor.com/project/vinniefalco/beast/branch/master) | [![codecov](https://codecov.io/gh/boostorg/Beast/branch/master/graph/badge.svg)](https://codecov.io/gh/boostorg/beast/branch/master) | [![Documentation](https://img.shields.io/badge/documentation-master-brightgreen.svg)](http://www.boost.org/doc/libs/develop/libs/beast/) | [![Matrix](https://img.shields.io/badge/matrix-master-brightgreen.svg)](http://www.boost.org/development/tests/master/developer/beast.html)
[develop](https://github.com/boostorg/beast/tree/develop) | [![Build Status](https://travis-ci.org/boostorg/beast.svg?branch=develop)](https://travis-ci.org/boostorg/beast) | [![Build status](https://ci.appveyor.com/api/projects/status/g0llpbvhpjuxjnlw/branch/develop?svg=true)](https://ci.appveyor.com/project/vinniefalco/beast/branch/develop) | [![codecov](https://codecov.io/gh/boostorg/Beast/branch/develop/graph/badge.svg)](https://codecov.io/gh/boostorg/beast/branch/develop) | [![Documentation](https://img.shields.io/badge/documentation-develop-brightgreen.svg)](http://www.boost.org/doc/libs/develop/libs/beast/) | [![Matrix](https://img.shields.io/badge/matrix-develop-brightgreen.svg)](http://www.boost.org/development/tests/develop/developer/beast.html)
2017-07-03 08:54:59 -07:00
2016-08-26 09:52:24 -04:00
## Contents
- [Introduction](#introduction)
2017-05-20 23:16:36 -07:00
- [Appearances](#appearances)
2016-08-26 09:52:24 -04:00
- [Description](#description)
- [Requirements](#requirements)
- [Building](#building)
- [Usage](#usage)
2017-08-13 08:16:19 -07:00
- [License](#license)
2016-08-26 09:52:24 -04:00
- [Contact](#contact)
2017-05-20 23:16:36 -07:00
- [Contributing](#Contributing)
2016-08-26 09:52:24 -04:00
## Introduction
2017-06-15 01:10:50 -07:00
Beast is a C++ header-only library serving as a foundation for writing
interoperable networking libraries by providing **low-level HTTP/1,
WebSocket, and networking protocol** vocabulary types and algorithms
using the consistent asynchronous model of Boost.Asio.
2016-08-26 09:52:24 -04:00
2017-06-07 16:30:49 -07:00
This library is designed for:
2016-08-26 09:52:24 -04:00
2017-06-15 01:10:50 -07:00
* **Symmetry:** Algorithms are role-agnostic; build clients, servers, or both.
2016-08-26 09:52:24 -04:00
2017-06-07 16:30:49 -07:00
* **Ease of Use:** Boost.Asio users will immediately understand Beast.
2016-08-26 09:52:24 -04:00
2017-06-07 16:30:49 -07:00
* **Flexibility:** Users make the important decisions such as buffer or
thread management.
2016-08-26 09:52:24 -04:00
2017-06-07 16:30:49 -07:00
* **Performance:** Build applications handling thousands of connections or more.
2016-08-26 09:52:24 -04:00
2017-06-15 01:10:50 -07:00
* **Basis for Further Abstraction.** Components are well-suited for building upon.
2016-08-12 19:37:34 -04:00
2017-05-20 23:16:36 -07:00
## Appearances
| <a href="http://cppcast.com/2017/01/vinnie-falco/">CppCast 2017</a> | <a href="https://raw.githubusercontent.com/vinniefalco/BeastAssets/master/CppCon2016.pdf">CppCon 2016</a> |
2017-05-20 23:16:36 -07:00
| ------------ | ----------- |
| <a href="http://cppcast.com/2017/01/vinnie-falco/"><img width="180" height="180" alt="Vinnie Falco" src="https://avatars1.githubusercontent.com/u/1503976?v=3&u=76c56d989ef4c09625256662eca2775df78a16ad&s=180"></a> | <a href="https://www.youtube.com/watch?v=uJZgRcvPFwI"><img width="320" height = "180" alt="Beast" src="https://raw.githubusercontent.com/vinniefalco/BeastAssets/master/CppCon2016.png"></a> |
2017-05-20 23:16:36 -07:00
2016-08-26 09:52:24 -04:00
## Description
2016-08-12 19:37:34 -04:00
2016-08-26 09:52:24 -04:00
This software is currently in beta: interfaces may change.
2016-08-29 07:31:02 -04:00
For recent changes see the [CHANGELOG](CHANGELOG.md).
2017-07-23 08:01:02 -07:00
As of July 20th, this library has been ACCEPTED into Boost
without conditions. The first official release of Beast will
appear in Boost 1.66.0, due in December.
2016-08-12 19:37:34 -04:00
2017-07-23 08:01:02 -07:00
* [Official Site](https://github.com/boostorg/beast)
2017-07-31 15:52:11 -07:00
* [Documentation](http://www.boost.org/doc/libs/develop/libs/beast/)
2016-08-26 09:52:24 -04:00
* [Autobahn.testsuite results](http://vinniefalco.github.io/autobahn/index.html)
2017-07-20 08:01:46 -07:00
2016-08-26 09:52:24 -04:00
## Requirements
2017-07-20 08:01:46 -07:00
2017-06-15 01:10:50 -07:00
This library is for programmers familiar with Boost.Asio. Users
who wish to use asynchronous interfaces should already know how to
create concurrent network programs using callbacks or coroutines.
2017-06-07 16:30:49 -07:00
* **C++11:** Robust support for most language features.
* **Boost:** Boost.Asio and some other parts of Boost.
* **OpenSSL:** Optional, for using TLS/Secure sockets.
When using Microsoft Visual C++, Visual Studio 2015 Update 3 or later is required.
2017-07-23 08:01:02 -07:00
One of these components is required in order to build the tests and examples:
2017-06-07 16:30:49 -07:00
* Properly configured bjam/b2
* CMake 3.7.2 or later (Windows only)
2017-07-20 08:01:46 -07:00
2016-08-26 09:52:24 -04:00
## Building
Beast is header-only. To use it just add the necessary `#include` line
2017-07-23 08:01:02 -07:00
to your source files, like this:
2016-09-25 12:19:47 -04:00
```C++
#include <boost/beast.hpp>
2016-08-26 09:52:24 -04:00
```
2017-07-23 08:01:02 -07:00
To build your program successfully, you'll need to add the Boost.System
library to link with. If you use coroutines you'll also need to link
with the Boost.Coroutine library. Please visit the Boost documentation
for instructions on how to do this for your particular build system.
2016-08-29 07:31:02 -04:00
2017-07-23 22:49:57 -07:00
For the examples and tests, Beast provides build scripts for Boost.Build
(bjam) and CMake (Windows). It is possible to generate Microsoft Visual
Studio project files using CMake by executing these commands from
the root of the repository:
2016-08-26 09:52:24 -04:00
```
mkdir bin
2016-08-26 09:52:24 -04:00
cd bin
cmake .. # for 32-bit Windows builds
2016-08-29 07:31:02 -04:00
cd ..
mkdir bin64
cd bin64
cmake -G"Visual Studio 14 2015 Win64" .. # for 64-bit Windows builds (VS2015)
cmake -G"Visual Studio 15 2017 Win64" .. # for 64-bit Windows builds (VS2017)
```
2016-08-26 09:52:24 -04:00
The files in the repository are laid out thusly:
```
./
bin/ Create this to hold executables and project files
bin64/ Create this to hold 64-bit Windows executables and project files
2016-09-25 12:19:47 -04:00
doc/ Source code and scripts for the documentation
2017-07-28 13:24:39 -07:00
include/ Where the header files live
2016-08-26 09:52:24 -04:00
extras/ Additional APIs, may change
2017-06-15 01:10:50 -07:00
example/ Self contained example programs
2017-07-28 13:24:39 -07:00
meta/ Metadata for Boost integration
scripts/ Small scripts used with CI systems
test/ Unit tests
2016-08-26 09:52:24 -04:00
```
## Usage
These examples are complete, self-contained programs that you can build
and run yourself (they are in the `example` directory).
2017-07-31 15:52:11 -07:00
http://www.boost.org/doc/libs/develop/libs/beast/doc/html/beast/quick_start.html
2017-07-20 08:01:46 -07:00
2016-08-26 09:52:24 -04:00
## License
2017-07-20 08:01:46 -07:00
2016-08-26 09:52:24 -04:00
Distributed under the Boost Software License, Version 1.0.
(See accompanying file [LICENSE_1_0.txt](LICENSE_1_0.txt) or copy at
http://www.boost.org/LICENSE_1_0.txt)
## Contact
2017-07-20 08:01:46 -07:00
Please report issues or questions here:
2017-07-23 08:01:02 -07:00
https://github.com/boostorg/beast/issues
2017-05-20 23:16:36 -07:00
---
## Contributing (We Need Your Help!)
If you would like to contribute to Beast and help us maintain high
quality, consider performing code reviews on active pull requests.
Any feedback from users and stakeholders, even simple questions about
how things work or why they were done a certain way, carries value
and can be used to improve the library. Code review provides these
benefits:
* Identify bugs
* Documentation proof-reading
* Adjust interfaces to suit use-cases
* Simplify code
You can look through the Closed pull requests to get an idea of how
reviews are performed. To give a code review just sign in with your
GitHub account and then add comments to any open pull requests below,
don't be shy!
2017-07-23 08:01:02 -07:00
<p>https://github.com/boostorg/beast/pulls</p>
2017-05-20 23:16:36 -07:00
Here are some resources to learn more about
code reviews:
* <a href="https://blog.scottnonnenberg.com/top-ten-pull-request-review-mistakes/">Top 10 Pull Request Review Mistakes</a>
* <a href="https://smartbear.com/SmartBear/media/pdfs/best-kept-secrets-of-peer-code-review.pdf">Best Kept Secrets of Peer Code Review (pdf)</a>
* <a href="http://support.smartbear.com/support/media/resources/cc/11_Best_Practices_for_Peer_Code_Review.pdf">11 Best Practices for Peer Code Review (pdf)</a>
* <a href="http://www.evoketechnologies.com/blog/code-review-checklist-perform-effective-code-reviews/">Code Review Checklist To Perform Effective Code Reviews</a>
* <a href="https://www.codeproject.com/Articles/524235/Codeplusreviewplusguidelines">Code review guidelines</a>
* <a href="https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md">C++ Core Guidelines</a>
* <a href="https://doc.lagout.org/programmation/C/CPP101.pdf">C++ Coding Standards (Sutter & Andrescu)</a>
2017-05-05 07:18:31 -07:00
Beast thrives on code reviews and any sort of feedback from users and
stakeholders about its interfaces. Even if you just have questions,
asking them in the code review or in issues provides valuable information
that can be used to improve the library - do not hesitate, no question
is insignificant or unimportant!