Skip to content

Commit 564123b

Browse files
committed
deps: add the GSL
A headers only library to support following the C++ Core Guidelines. Refs: https://github.com/Microsoft/GSL Refs: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-gsl
1 parent d2fcd1d commit 564123b

14 files changed

+4762
-12
lines changed

deps/GSL/CONTRIBUTING.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## Contributing to the Guideline Support Library
2+
3+
The Guideline Support Library (GSL) contains functions and types that are suggested for use by the
4+
[C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines). GSL design changes are made only as a result of modifications to the Guidelines.
5+
6+
GSL is accepting contributions that improve or refine any of the types in this library as well as ports to other platforms. Changes should have an issue
7+
tracking the suggestion that has been approved by the maintainers. Your pull request should include a link to the bug that you are fixing. If you've submitted
8+
a PR, please post a comment in the associated issue to avoid duplication of effort.
9+
10+
## Legal
11+
You will need to complete a Contributor License Agreement (CLA). Briefly, this agreement testifies that you are granting us and the community permission to
12+
use the submitted change according to the terms of the project's license, and that the work being submitted is under appropriate copyright.
13+
14+
Please submit a Contributor License Agreement (CLA) before submitting a pull request. You may visit https://cla.microsoft.com to sign digitally.
15+
16+
## Housekeeping
17+
Your pull request should:
18+
19+
* Include a description of what your change intends to do
20+
* Be a child commit of a reasonably recent commit in the **master** branch
21+
* Requests need not be a single commit, but should be a linear sequence of commits (i.e. no merge commits in your PR)
22+
* It is desirable, but not necessary, for the tests to pass at each commit. Please see [README.md](./README.md) for instructions to build the test suite.
23+
* Have clear commit messages
24+
* e.g. "Fix issue", "Add tests for type", etc.
25+
* Include appropriate tests
26+
* Tests should include reasonable permutations of the target fix/change
27+
* Include baseline changes with your change
28+
* All changed code must have 100% code coverage
29+
* To avoid line ending issues, set `autocrlf = input` and `whitespace = cr-at-eol` in your git configuration

deps/GSL/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
2+
3+
This code is licensed under the MIT License (MIT).
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9+
of the Software, and to permit persons to whom the Software is furnished to do
10+
so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

deps/GSL/README.md

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# GSL: Guideline Support Library [![Build Status](https://travis-ci.org/Microsoft/GSL.svg?branch=master)](https://travis-ci.org/Microsoft/GSL) [![Build status](https://ci.appveyor.com/api/projects/status/github/Microsoft/GSL?svg=true)](https://ci.appveyor.com/project/neilmacintosh/GSL)
2+
3+
The Guideline Support Library (GSL) contains functions and types that are suggested for use by the
4+
[C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines) maintained by the [Standard C++ Foundation](https://isocpp.org).
5+
This repo contains Microsoft's implementation of GSL.
6+
7+
The library includes types like `span<T>`, `string_span`, `owner<>` and others.
8+
9+
The entire implementation is provided inline in the headers under the [gsl](./include/gsl) directory. The implementation generally assumes a platform that implements C++14 support. There are specific workarounds to support MSVC 2015.
10+
11+
While some types have been broken out into their own headers (e.g. [gsl/span](./include/gsl/span)),
12+
it is simplest to just include [gsl/gsl](./include/gsl/gsl) and gain access to the entire library.
13+
14+
> NOTE: We encourage contributions that improve or refine any of the types in this library as well as ports to
15+
other platforms. Please see [CONTRIBUTING.md](./CONTRIBUTING.md) for more information about contributing.
16+
17+
# Project Code of Conduct
18+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
19+
20+
# Usage of Third Party Libraries
21+
This project makes use of the [Catch](https://github.com/philsquared/catch) testing library. Please see the [ThirdPartyNotices.txt](./ThirdPartyNotices.txt) file for details regarding the licensing of Catch.
22+
23+
# Quick Start
24+
## Supported Platforms
25+
The test suite that exercises GSL has been built and passes successfully on the following platforms:<sup>1)</sup>
26+
27+
* Windows using Visual Studio 2015
28+
* Windows using Visual Studio 2017
29+
* Windows using Clang/LLVM 3.6
30+
* Windows using GCC 5.1
31+
* Windows using Intel C++ Compiler 18.0
32+
* GNU/Linux using Clang/LLVM 3.6
33+
* GNU/Linux using GCC 5.1
34+
* OS X Yosemite using Xcode with Apple Clang 7.0.0.7000072
35+
* OS X Yosemite using GCC-5.2.0
36+
* OS X Sierra 10.12.4 using Apple LLVM version 8.1.0 (Clang-802.0.42)
37+
* OS X El Capitan (10.11) using Xcode with AppleClang 8.0.0.8000042
38+
* OS X High Sierra 10.13.2 (17C88) using Apple LLVM version 9.0.0 (clang-900.0.39.2)
39+
* FreeBSD 10.x with Clang/LLVM 3.6
40+
41+
> If you successfully port GSL to another platform, we would love to hear from you. Please submit an issue to let us know. Also please consider
42+
contributing any changes that were necessary back to this project to benefit the wider community.
43+
44+
<sup>1)</sup> For `gsl::byte` to work correctly with Clang and GCC you might have to use the ` -fno-strict-aliasing` compiler option.
45+
46+
## Building the tests
47+
To build the tests, you will require the following:
48+
49+
* [CMake](http://cmake.org), version 3.1.3 or later to be installed and in your PATH.
50+
51+
These steps assume the source code of this repository has been cloned into a directory named `c:\GSL`.
52+
53+
1. Create a directory to contain the build outputs for a particular architecture (we name it c:\GSL\build-x86 in this example).
54+
55+
cd GSL
56+
md build-x86
57+
cd build-x86
58+
59+
2. Configure CMake to use the compiler of your choice (you can see a list by running `cmake --help`).
60+
61+
cmake -G "Visual Studio 14 2015" c:\GSL
62+
63+
3. Build the test suite (in this case, in the Debug configuration, Release is another good choice).
64+
65+
cmake --build . --config Debug
66+
67+
4. Run the test suite.
68+
69+
ctest -C Debug
70+
71+
All tests should pass - indicating your platform is fully supported and you are ready to use the GSL types!
72+
73+
## Using the libraries
74+
As the types are entirely implemented inline in headers, there are no linking requirements.
75+
76+
You can copy the [gsl](./include/gsl) directory into your source tree so it is available
77+
to your compiler, then include the appropriate headers in your program.
78+
79+
Alternatively set your compiler's *include path* flag to point to the GSL development folder (`c:\GSL\include` in the example above) or installation folder (after running the install). Eg.
80+
81+
MSVC++
82+
83+
/I c:\GSL\include
84+
85+
GCC/clang
86+
87+
-I$HOME/dev/GSL/include
88+
89+
Include the library using:
90+
91+
#include <gsl/gsl>
92+
93+
## Debugging visualization support
94+
For Visual Studio users, the file [GSL.natvis](./GSL.natvis) in the root directory of the repository can be added to your project if you would like more helpful visualization of GSL types in the Visual Studio debugger than would be offered by default.

deps/GSL/gsl/gsl

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
///////////////////////////////////////////////////////////////////////////////
2+
//
3+
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
4+
//
5+
// This code is licensed under the MIT License (MIT).
6+
//
7+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
10+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
11+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
12+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
13+
// THE SOFTWARE.
14+
//
15+
///////////////////////////////////////////////////////////////////////////////
16+
17+
#ifndef GSL_GSL_H
18+
#define GSL_GSL_H
19+
20+
#include <gsl/gsl_algorithm> // copy
21+
#include <gsl/gsl_assert> // Ensures/Expects
22+
#include <gsl/gsl_byte> // byte
23+
#include <gsl/gsl_util> // finally()/narrow()/narrow_cast()...
24+
#include <gsl/multi_span> // multi_span, strided_span...
25+
#include <gsl/pointers> // owner, not_null
26+
#include <gsl/span> // span
27+
#include <gsl/string_span> // zstring, string_span, zstring_builder...
28+
29+
#endif // GSL_GSL_H

deps/GSL/gsl/gsl_algorithm

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
///////////////////////////////////////////////////////////////////////////////
2+
//
3+
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
4+
//
5+
// This code is licensed under the MIT License (MIT).
6+
//
7+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
10+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
11+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
12+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
13+
// THE SOFTWARE.
14+
//
15+
///////////////////////////////////////////////////////////////////////////////
16+
17+
#ifndef GSL_ALGORITHM_H
18+
#define GSL_ALGORITHM_H
19+
20+
#include <gsl/gsl_assert> // for Expects
21+
#include <gsl/span> // for dynamic_extent, span
22+
23+
#include <algorithm> // for copy_n
24+
#include <cstddef> // for ptrdiff_t
25+
#include <type_traits> // for is_assignable
26+
27+
#ifdef _MSC_VER
28+
#pragma warning(push)
29+
30+
// turn off some warnings that are noisy about our Expects statements
31+
#pragma warning(disable : 4127) // conditional expression is constant
32+
#pragma warning(disable : 4996) // unsafe use of std::copy_n
33+
34+
#endif // _MSC_VER
35+
36+
namespace gsl
37+
{
38+
// Note: this will generate faster code than std::copy using span iterator in older msvc+stl
39+
// not necessary for msvc since VS2017 15.8 (_MSC_VER >= 1915)
40+
template <class SrcElementType, std::ptrdiff_t SrcExtent, class DestElementType,
41+
std::ptrdiff_t DestExtent>
42+
void copy(span<SrcElementType, SrcExtent> src, span<DestElementType, DestExtent> dest)
43+
{
44+
static_assert(std::is_assignable<decltype(*dest.data()), decltype(*src.data())>::value,
45+
"Elements of source span can not be assigned to elements of destination span");
46+
static_assert(SrcExtent == dynamic_extent || DestExtent == dynamic_extent ||
47+
(SrcExtent <= DestExtent),
48+
"Source range is longer than target range");
49+
50+
Expects(dest.size() >= src.size());
51+
GSL_SUPPRESS(stl.1) // NO-FORMAT: attribute
52+
std::copy_n(src.data(), src.size(), dest.data());
53+
}
54+
55+
} // namespace gsl
56+
57+
#ifdef _MSC_VER
58+
#pragma warning(pop)
59+
#endif // _MSC_VER
60+
61+
#endif // GSL_ALGORITHM_H

0 commit comments

Comments
 (0)