2020-05-13 20:05:45 -04:00
# GSL: Guidelines Support Library
2021-02-24 14:16:21 -05:00
[![Build Status ](https://dev.azure.com/cppstat/GSL/_apis/build/status/microsoft.GSL?branchName=main )](https://dev.azure.com/cppstat/GSL/_build/latest?definitionId=1& branchName=main)
2015-08-20 21:09:14 -04:00
2018-11-28 14:53:38 -05:00
The Guidelines Support Library (GSL) contains functions and types that are suggested for use by the
2015-09-23 11:43:36 -04:00
[C++ Core Guidelines ](https://github.com/isocpp/CppCoreGuidelines ) maintained by the [Standard C++ Foundation ](https://isocpp.org ).
2015-09-21 22:58:25 -04:00
This repo contains Microsoft's implementation of GSL.
2015-08-20 21:09:14 -04:00
2020-07-06 11:22:35 -04:00
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.
2015-08-20 21:09:14 -04:00
2017-03-10 12:55:24 -05:00
While some types have been broken out into their own headers (e.g. [gsl/span ](./include/gsl/span )),
it is simplest to just include [gsl/gsl ](./include/gsl/gsl ) and gain access to the entire library.
2015-08-20 21:09:14 -04:00
2015-08-23 11:34:32 -04:00
> NOTE: We encourage contributions that improve or refine any of the types in this library as well as ports to
2015-09-23 11:43:36 -04:00
other platforms. Please see [CONTRIBUTING.md ](./CONTRIBUTING.md ) for more information about contributing.
2015-08-20 21:09:14 -04:00
2016-08-02 17:59:57 -04:00
# Project Code of Conduct
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 [opencode@microsoft.com ](mailto:opencode@microsoft.com ) with any additional questions or comments.
2017-07-13 16:53:56 -04:00
# Usage of Third Party Libraries
2020-04-13 09:19:51 -04:00
This project makes use of the [Google Test ](https://github.com/google/googletest ) testing library. Please see the [ThirdPartyNotices.txt ](./ThirdPartyNotices.txt ) file for details regarding the licensing of Google Test.
2017-07-13 16:53:56 -04:00
2019-09-15 10:41:38 -04:00
# Supported features
2020-08-12 19:22:03 -04:00
## Microsoft GSL implements the following from the C++ Core Guidelines:
2019-09-15 10:41:38 -04:00
2023-02-17 13:38:34 -05:00
Feature | Supported? | Description
-------------------------------------------------------------------------|:----------:|-------------
[**1. Views**][cg-views] | |
2023-02-23 14:10:19 -05:00
[owner ](docs/headers.md#user-content-H-pointers-owner ) | ☑ | An alias for a raw pointer
2023-09-05 19:08:36 -04:00
[not_null ](docs/headers.md#user-content-H-pointers-not_null ) | ☑ | Restricts a pointer/smart pointer to hold non-null values
2023-02-23 14:10:19 -05:00
[span ](docs/headers.md#user-content-H-span-span ) | ☑ | A view over a contiguous sequence of memory. Based on the standardized version of `std::span` , however `gsl::span` enforces bounds checking.
span_p | ☐ | Spans a range starting from a pointer to the first place for which the predicate is true
2023-09-05 19:08:36 -04:00
[basic_zstring ](docs/headers.md#user-content-H-zstring ) | ☑ | A pointer to a C-string (zero-terminated array) with a templated char type
[zstring ](docs/headers.md#user-content-H-zstring ) | ☑ | An alias to `basic_zstring` with dynamic extent and a char type of `char`
[czstring ](docs/headers.md#user-content-H-zstring ) | ☑ | An alias to `basic_zstring` with dynamic extent and a char type of `const char`
[wzstring ](docs/headers.md#user-content-H-zstring ) | ☑ | An alias to `basic_zstring` with dynamic extent and a char type of `wchar_t`
[cwzstring ](docs/headers.md#user-content-H-zstring ) | ☑ | An alias to `basic_zstring` with dynamic extent and a char type of `const wchar_t`
[u16zstring ](docs/headers.md#user-content-H-zstring ) | ☑ | An alias to `basic_zstring` with dynamic extent and a char type of `char16_t`
[cu16zstring ](docs/headers.md#user-content-H-zstring ) | ☑ | An alias to `basic_zstring` with dynamic extent and a char type of `const char16_t`
[u32zstring ](docs/headers.md#user-content-H-zstring ) | ☑ | An alias to `basic_zstring` with dynamic extent and a char type of `char32_t`
[cu32zstring ](docs/headers.md#user-content-H-zstring ) | ☑ | An alias to `basic_zstring` with dynamic extent and a char type of `const char32_t`
2023-02-17 13:38:34 -05:00
[**2. Owners**][cg-owners] | |
2023-02-23 14:10:19 -05:00
[unique_ptr ](docs/headers.md#user-content-H-pointers-unique_ptr ) | ☑ | An alias to `std::unique_ptr`
[shared_ptr ](docs/headers.md#user-content-H-pointers-shared_ptr ) | ☑ | An alias to `std::shared_ptr`
stack_array | ☐ | A stack-allocated array
dyn_array | ☐ | A heap-allocated array
2023-02-17 13:38:34 -05:00
[**3. Assertions**][cg-assertions] | |
2023-02-23 14:10:19 -05:00
[Expects ](docs/headers.md#user-content-H-assert-expects ) | ☑ | A precondition assertion; on failure it terminates
[Ensures ](docs/headers.md#user-content-H-assert-ensures ) | ☑ | A postcondition assertion; on failure it terminates
2023-02-17 13:38:34 -05:00
[**4. Utilities**][cg-utilities] | |
2023-02-23 14:10:19 -05:00
move_owner | ☐ | A helper function that moves one `owner` to the other
[byte ](docs/headers.md#user-content-H-byte-byte ) | ☑ | Either an alias to `std::byte` or a byte type
[final_action ](docs/headers.md#user-content-H-util-final_action ) | ☑ | A RAII style class that invokes a functor on its destruction
2023-09-05 19:08:36 -04:00
[finally ](docs/headers.md#user-content-H-util-finally ) | ☑ | A helper function instantiating [final_action ](docs/headers.md#user-content-H-util-final_action )
2023-02-23 14:10:19 -05:00
[GSL_SUPPRESS ](docs/headers.md#user-content-H-assert-gsl_suppress ) | ☑ | A macro that takes an argument and turns it into `[[gsl::suppress(x)]]` or `[[gsl::suppress("x")]]`
[[implicit]] | ☐ | A "marker" to put on single-argument constructors to explicitly make them non-explicit
[index ](docs/headers.md#user-content-H-util-index ) | ☑ | A type to use for all container and array indexing (currently an alias for `std::ptrdiff_t` )
joining_thread | ☐ | A RAII style version of `std::thread` that joins
2023-09-05 19:08:36 -04:00
[narrow ](docs/headers.md#user-content-H-narrow-narrow ) | ☑ | A checked version of `narrow_cast` ; it can throw [narrowing_error ](docs/headers.md#user-content-H-narrow-narrowing_error )
2023-02-23 14:10:19 -05:00
[narrow_cast ](docs/headers.md#user-content-H-util-narrow_cast ) | ☑ | A narrowing cast for values and a synonym for `static_cast`
2023-09-05 19:08:36 -04:00
[narrowing_error ](docs/headers.md#user-content-H-narrow-narrowing_error ) | ☑ | A custom exception type thrown by [narrow ](docs/headers.md#user-content-H-narrow-narrow )
2023-02-17 13:38:34 -05:00
[**5. Concepts**][cg-concepts] | ☐ |
2019-09-15 10:41:38 -04:00
2020-10-01 17:38:41 -04:00
## The following features do not exist in or have been removed from the C++ Core Guidelines:
2020-08-12 19:22:03 -04:00
Feature | Supported? | Description
-----------------------------------|:----------:|-------------
2023-09-05 19:08:36 -04:00
[strict_not_null ](docs/headers.md#user-content-H-pointers-strict_not_null ) | ☑ | A stricter version of [not_null ](docs/headers.md#user-content-H-pointers-not_null ) with explicit constructors
2020-10-01 17:38:41 -04:00
multi_span | ☐ | Deprecated. Multi-dimensional span.
2020-08-12 19:22:03 -04:00
strided_span | ☐ | Deprecated. Support for this type has been discontinued.
2020-10-01 17:38:41 -04:00
basic_string_span | ☐ | Deprecated. Like `span` but for strings with a templated char type
2023-09-05 19:08:36 -04:00
string_span | ☐ | Deprecated. An alias to `basic_string_span` with a char type of `char`
cstring_span | ☐ | Deprecated. An alias to `basic_string_span` with a char type of `const char`
wstring_span | ☐ | Deprecated. An alias to `basic_string_span` with a char type of `wchar_t`
cwstring_span | ☐ | Deprecated. An alias to `basic_string_span` with a char type of `const wchar_t`
u16string_span | ☐ | Deprecated. An alias to `basic_string_span` with a char type of `char16_t`
cu16string_span | ☐ | Deprecated. An alias to `basic_string_span` with a char type of `const char16_t`
u32string_span | ☐ | Deprecated. An alias to `basic_string_span` with a char type of `char32_t`
cu32string_span | ☐ | Deprecated. An alias to `basic_string_span` with a char type of `const char32_t`
2020-08-12 19:22:03 -04:00
2019-09-15 10:41:38 -04:00
This is based on [CppCoreGuidelines semi-specification ](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gsl-guidelines-support-library ).
[cg-views]: https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gslview-views
[cg-owners]: https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gslowner-ownership-pointers
[cg-assertions]: https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gslassert-assertions
[cg-utilities]: https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gslutil-utilities
[cg-concepts]: https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gslconcept-concepts
2015-08-20 21:09:14 -04:00
# Quick Start
2021-12-10 14:17:47 -05:00
## Supported Compilers / Toolsets
2024-10-14 16:05:13 -04:00
The GSL officially supports recent major versions of Visual Studio with both MSVC and LLVM, GCC, Clang, and XCode with Apple-Clang.
For each of these major versions, the GSL officially supports C++14, C++17, C++20, and C++23 (when supported by the compiler).
Below is a table showing the versions currently being tested (also see [.github/workflows/compilers.yml ](the workflow ).)
2020-05-13 20:05:45 -04:00
2020-11-23 19:11:40 -05:00
Compiler |Toolset Versions Currently Tested
:------- |--:
2024-10-14 16:05:13 -04:00
GCC | 10, 11, 12
XCode | 14.3.1, 15.4
Clang | 13, 14, 15
Visual Studio with MSVC | VS2019, VS2022
Visual Studio with LLVM | VS2019, VS2022
2020-05-13 20:05:45 -04:00
---
If you successfully port GSL to another platform, we would love to hear from you!
- Submit an issue specifying the platform and target.
- Consider contributing your changes by filing a pull request with any necessary changes.
- If at all possible, add a CI/CD step and add the button to the table below!
Target | CI/CD Status
:------- | -----------:
2020-08-11 19:46:41 -04:00
iOS | ![CI_iOS ](https://github.com/microsoft/GSL/workflows/CI_iOS/badge.svg )
Android | ![CI_Android ](https://github.com/microsoft/GSL/workflows/CI_Android/badge.svg )
2020-05-13 20:05:45 -04:00
Note: These CI/CD steps are run with each pull request, however failures in them are non-blocking.
2016-10-17 15:36:11 -04:00
2015-08-20 21:09:14 -04:00
## Building the tests
To build the tests, you will require the following:
2023-02-23 14:10:19 -05:00
* [CMake ](http://cmake.org ), version 3.14 or later to be installed and in your PATH.
2015-08-20 21:09:14 -04:00
These steps assume the source code of this repository has been cloned into a directory named `c:\GSL` .
2023-02-23 14:10:19 -05:00
1. Create a directory to contain the build outputs for a particular architecture (we name it `c:\GSL\build-x86` in this example).
2015-08-20 21:09:14 -04:00
cd GSL
md build-x86
cd build-x86
2. Configure CMake to use the compiler of your choice (you can see a list by running `cmake --help` ).
2015-09-23 11:43:36 -04:00
2020-07-06 11:22:35 -04:00
cmake -G "Visual Studio 15 2017" c:\GSL
2015-09-23 11:43:36 -04:00
2017-07-13 16:53:56 -04:00
3. Build the test suite (in this case, in the Debug configuration, Release is another good choice).
2015-08-20 21:09:14 -04:00
cmake --build . --config Debug
2015-09-23 11:43:36 -04:00
2017-07-13 16:53:56 -04:00
4. Run the test suite.
2015-08-20 21:09:14 -04:00
ctest -C Debug
All tests should pass - indicating your platform is fully supported and you are ready to use the GSL types!
2020-01-19 02:12:13 -05:00
## Building GSL - Using vcpkg
You can download and install GSL using the [vcpkg ](https://github.com/Microsoft/vcpkg ) dependency manager:
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg integrate install
2020-02-07 09:25:58 -05:00
vcpkg install ms-gsl
2020-01-19 02:12:13 -05:00
The GSL port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request ](https://github.com/Microsoft/vcpkg ) on the vcpkg repository.
2015-08-20 21:09:14 -04:00
## Using the libraries
As the types are entirely implemented inline in headers, there are no linking requirements.
2017-02-13 14:47:04 -05:00
You can copy the [gsl ](./include/gsl ) directory into your source tree so it is available
2016-08-09 10:04:58 -04:00
to your compiler, then include the appropriate headers in your program.
2017-02-13 14:47:04 -05:00
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.
2016-08-09 10:04:58 -04:00
MSVC++
2017-02-13 14:47:04 -05:00
/I c:\GSL\include
2016-08-09 10:04:58 -04:00
GCC/clang
2017-02-13 14:47:04 -05:00
-I$HOME/dev/GSL/include
2016-08-09 10:04:58 -04:00
Include the library using:
2016-08-10 12:24:00 -04:00
#include < gsl / gsl >
2017-01-14 20:15:24 -05:00
2020-02-08 08:11:11 -05:00
## Usage in CMake
2022-10-18 14:05:09 -04:00
The library provides a Config file for CMake, once installed it can be found via `find_package` .
2020-02-08 08:11:11 -05:00
Which, when successful, will add library target called `Microsoft.GSL::GSL` which you can use via the usual
`target_link_libraries` mechanism.
2022-10-18 14:05:09 -04:00
```cmake
find_package(Microsoft.GSL CONFIG REQUIRED)
target_link_libraries(foobar PRIVATE Microsoft.GSL::GSL)
```
2021-01-07 17:02:47 -05:00
### FetchContent
2024-02-21 18:06:29 -05:00
If you are using CMake version 3.11+ you can use the official [FetchContent module ](https://cmake.org/cmake/help/latest/module/FetchContent.html ).
2021-01-07 17:02:47 -05:00
This allows you to easily incorporate GSL into your project.
```cmake
2022-10-18 14:05:09 -04:00
# NOTE: This example uses CMake version 3.14 (FetchContent_MakeAvailable).
2021-01-07 17:02:47 -05:00
# Since it streamlines the FetchContent process
cmake_minimum_required(VERSION 3.14)
include(FetchContent)
FetchContent_Declare(GSL
GIT_REPOSITORY "https://github.com/microsoft/GSL"
2022-10-18 14:05:09 -04:00
GIT_TAG "v4.0.0"
GIT_SHALLOW ON
2021-01-07 17:02:47 -05:00
)
FetchContent_MakeAvailable(GSL)
2022-10-18 14:05:09 -04:00
target_link_libraries(foobar PRIVATE Microsoft.GSL::GSL)
2021-01-07 17:02:47 -05:00
```
2017-01-14 20:15:24 -05:00
## Debugging visualization support
2021-01-07 17:02:47 -05:00
2023-05-10 20:02:44 -04:00
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.
2024-10-14 10:43:43 -04:00
## See Also
For information on [Microsoft Gray Systems Lab (GSL) ](https://aka.ms/gsl ) of applied data management and system research see < https: // aka . ms / gsl > .