descriptionnone
repository URLhttps://github.com/microsoft/GSL.git
ownerstefan.naewe+rr@gmail.com
last changeMon, 26 Feb 2024 21:23:45 +0000 (26 13:23 -0800)
last refreshSat, 27 Apr 2024 12:04:07 +0000 (27 14:04 +0200)
content tags
add:
README.md

GSL: Guidelines Support Library

Build Status

The Guidelines Support Library (GSL) contains functions and types that are suggested for use by the C++ Core Guidelines maintained by the Standard C++ Foundation. This repo contains Microsoft's implementation of GSL.

The entire implementation is provided inline in the headers under the gsl directory. The implementation generally assumes a platform that implements C++14 support.

While some types have been broken out into their own headers (e.g. gsl/span), it is simplest to just include gsl/gsl and gain access to the entire library.

NOTE: We encourage contributions that improve or refine any of the types in this library as well as ports to other platforms. Please see CONTRIBUTING.md for more information about contributing.

Project Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Usage of Third Party Libraries

This project makes use of the Google Test testing library. Please see the ThirdPartyNotices.txt file for details regarding the licensing of Google Test.

Supported features

Microsoft GSL implements the following from the C++ Core Guidelines:

FeatureSupported?Description
1. Views
ownerAn alias for a raw pointer
not_nullRestricts a pointer/smart pointer to hold non-null values
spanA view over a contiguous sequence of memory. Based on the standardized version of std::span, however gsl::span enforces bounds checking.
span_pSpans a range starting from a pointer to the first place for which the predicate is true
basic_zstringA pointer to a C-string (zero-terminated array) with a templated char type
zstringAn alias to basic_zstring with dynamic extent and a char type of char
czstringAn alias to basic_zstring with dynamic extent and a char type of const char
wzstringAn alias to basic_zstring with dynamic extent and a char type of wchar_t
cwzstringAn alias to basic_zstring with dynamic extent and a char type of const wchar_t
u16zstringAn alias to basic_zstring with dynamic extent and a char type of char16_t
cu16zstringAn alias to basic_zstring with dynamic extent and a char type of const char16_t
u32zstringAn alias to basic_zstring with dynamic extent and a char type of char32_t
cu32zstringAn alias to basic_zstring with dynamic extent and a char type of const char32_t
2. Owners
unique_ptrAn alias to std::unique_ptr
shared_ptrAn alias to std::shared_ptr
stack_arrayA stack-allocated array
dyn_arrayA heap-allocated array
3. Assertions
ExpectsA precondition assertion; on failure it terminates
EnsuresA postcondition assertion; on failure it terminates
4. Utilities
move_ownerA helper function that moves one owner to the other
byteEither an alias to std::byte or a byte type
final_actionA RAII style class that invokes a functor on its destruction
finallyA helper function instantiating final_action
GSL_SUPPRESSA 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
indexA type to use for all container and array indexing (currently an alias for std::ptrdiff_t)
joining_threadA RAII style version of std::thread that joins
narrowA checked version of narrow_cast; it can throw narrowing_error
narrow_castA narrowing cast for values and a synonym for static_cast
narrowing_errorA custom exception type thrown by narrow
5. Concepts

The following features do not exist in or have been removed from the C++ Core Guidelines:

FeatureSupported?Description
strict_not_nullA stricter version of not_null with explicit constructors
multi_spanDeprecated. Multi-dimensional span.
strided_spanDeprecated. Support for this type has been discontinued.
basic_string_spanDeprecated. Like span but for strings with a templated char type
string_spanDeprecated. An alias to basic_string_span with a char type of char
cstring_spanDeprecated. An alias to basic_string_span with a char type of const char
wstring_spanDeprecated. An alias to basic_string_span with a char type of wchar_t
cwstring_spanDeprecated. An alias to basic_string_span with a char type of const wchar_t
u16string_spanDeprecated. An alias to basic_string_span with a char type of char16_t
cu16string_spanDeprecated. An alias to basic_string_span with a char type of const char16_t
u32string_spanDeprecated. An alias to basic_string_span with a char type of char32_t
cu32string_spanDeprecated. An alias to basic_string_span with a char type of const char32_t

This is based on CppCoreGuidelines semi-specification.

Quick Start

Supported Compilers / Toolsets

The GSL officially supports the latest and previous major versions of VS with MSVC & LLVM, GCC, Clang, and XCode with Apple-Clang. Within these two major versions, we try to target the latest minor updates / revisions (although this may be affected by delays between a toolchain's release and when it becomes widely available for use). Below is a table showing the versions currently being tested.

CompilerToolset Versions Currently Tested
XCode13.2.1 & 12.5.1
GCC11[^1] & 10[^2]
Clang12[^2] & 11[^2]
Visual Studio with MSVCVS2022[^3] & VS2019[^4]
Visual Studio with LLVMVS2022[^3] & VS2019[^4]

[^1]: Precise version may be found in the latest CI results. [^2]: Precise version may be found in the latest CI results. Should be the version specified here. [^3]: Precise version may be found in the latest CI results. Should be the version specified here. [^4]: Precise version may be found in the latest CI results. Should be the version specified here.


If you successfully port GSL to another platform, we would love to hear from you!

TargetCI/CD Status
iOSCI_iOS
AndroidCI_Android

Note: These CI/CD steps are run with each pull request, however failures in them are non-blocking.

Building the tests

To build the tests, you will require the following:

These steps assume the source code of this repository has been cloned into a directory named c:\GSL.

  1. Create a directory to contain the build outputs for a particular architecture (we name it c:\GSL\build-x86 in this example).

    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).

    cmake -G "Visual Studio 15 2017" c:\GSL
    
  3. Build the test suite (in this case, in the Debug configuration, Release is another good choice).

    cmake --build . --config Debug
    
  4. Run the test suite.

    ctest -C Debug
    

All tests should pass - indicating your platform is fully supported and you are ready to use the GSL types!

Building GSL - Using vcpkg

You can download and install GSL using the vcpkg dependency manager:

git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg integrate install
vcpkg install ms-gsl

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 on the vcpkg repository.

Using the libraries

As the types are entirely implemented inline in headers, there are no linking requirements.

You can copy the gsl directory into your source tree so it is available to your compiler, then include the appropriate headers in your program.

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.

MSVC++

/I c:\GSL\include

GCC/clang

-I$HOME/dev/GSL/include

Include the library using:

#include <gsl/gsl>

Usage in CMake

The library provides a Config file for CMake, once installed it can be found via find_package.

Which, when successful, will add library target called Microsoft.GSL::GSL which you can use via the usual target_link_libraries mechanism.

find_package(Microsoft.GSL CONFIG REQUIRED)

target_link_libraries(foobar PRIVATE Microsoft.GSL::GSL)

FetchContent

If you are using CMake version 3.11+ you can use the official FetchContent module. This allows you to easily incorporate GSL into your project.

# NOTE: This example uses CMake version 3.14 (FetchContent_MakeAvailable).
# Since it streamlines the FetchContent process
cmake_minimum_required(VERSION 3.14)

include(FetchContent)

FetchContent_Declare(GSL
    GIT_REPOSITORY "https://github.com/microsoft/GSL"
    GIT_TAG "v4.0.0"
    GIT_SHALLOW ON
)

FetchContent_MakeAvailable(GSL)

target_link_libraries(foobar PRIVATE Microsoft.GSL::GSL)

Debugging visualization support

For Visual Studio users, the file 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.

shortlog
2024-02-26 Werner HenzeAdd documentation for to_integer(byte) (#1144)main
2024-02-26 Stephan T.... Test only `__cpp_lib_byte`, drop `_HAS_STD_BYTE`. ...
2024-02-26 d-winsorFix initialization in test (#1140)
2024-02-21 Bruce MitchenerFix some typos. (#1146)
2024-01-17 Bruce Mitchenerci: Update to `actions/checkout@v4`. (#1142)
2024-01-17 Bruce MitchenerFix some typos. (#1143)
2023-10-18 Nicholas GurievMark not_null constructors as noexcept when underlying...
2023-09-11 Edward ChenUpdate Clang GSL_SUPPRESS to stringize parameter instea...
2023-09-11 Dmitry KobetsSuppress some noisy / buggy warnings (#1136)
2023-09-05 Werner Henzefix and optimize documentation (#1131)
2023-07-26 Dmitry KobetsRemove unused macros (#1128)
2023-07-06 Werner Henzeget back gcc 8.4 compatibility (#1127)
2023-07-04 Werner Henzeadd missing include (#1126)
2023-06-28 Werner Henzeremove gcc noexcept warning (#1122)
2023-06-28 Dmitry KobetsDeprecate `<gsl/string_span>` and replace with `<gsl...
2023-06-28 Dmitry KobetsRemove deprecated headers (#1124)
...
tags
2 years ago v4.0.0 Updated tag 4.0.0
3 years ago v3.1.0
4 years ago v3.0.1
4 years ago 3.0.1
4 years ago v3.0.0
4 years ago v2.1.0
5 years ago v2.0.0
5 years ago v1.0.0 Started versioning. Tested by SA...
heads
8 weeks ago main
8 weeks ago test-fix
18 months ago final_action-revision
19 months ago fix_android_ndk_version
21 months ago dmitrykobets/gsl_const_inline
23 months ago users/GitHubPolicyService/d1eae7b1-f6fc-4cef-87c2-3002ab4ba21b
2 years ago dmitrykobets-msft/update-compiler-support
2 years ago dmitrykobets-msft/experimental/add-vs_llvm-testing
2 years ago dmitrykobets-msft/experimental/donotmerge
2 years ago dmitrykobets-msft/fix-span-2020
2 years ago dmitrykobets-msft/experiment/fix-span-2020-gtest-failures
2 years ago dmitrykobets-msft_fix_gtest_build_issue
2 years ago SloppyJaconda-Remove_travis_yml
3 years ago branch_rename_cleanup
3 years ago expects-ensures-revision