diff --git a/stacktrace.html b/stacktrace.html index b36b14f..5db8a7f 100644 --- a/stacktrace.html +++ b/stacktrace.html @@ -29,7 +29,7 @@
Alexey Gorgurov <leha-bot@yandex.ru>, <no-vista@yandex.ru>
Antony Polukhin <antoshkka@gmail.com>, <antoshkka@yandex-team.ru>
 
-
Date: 2018-02-09
+
Date: 2018-01-23

A Proposal to add stack trace library

@@ -65,12 +65,45 @@

II. Impact on the Standard

III. Design Decisions

The design is based on the Boost.Stacktrace library, a popular library that does not depend on any non-standard library components.

Note about signal safety: this proposal does not attempt to provide a signal-safe solution for capturing and decoding stacktraces. - Such functionality currently is not implementable on some of the popular platforms. However, the paper attempts to provide extendable solution, that may be made sygnal safe some day.

+ Such functionality currently is not implementable on some of the popular platforms. However, the paper attempts to provide extendable solution, that may be made signal safe some day.

Note on performance: during Boost.Stacktrace development phase many users requested a fast way to store stack trace, without decoding the function names. This functionality is preserved in the paper.

IV. Proposed Interface

-

Header <stacktrace>

+

Header <stacktrace> synopsis

+
+namespace std {
+
+  class stack_frame;
+
+  template<typename Allocator>
+  class basic_stacktrace;
+
+  // free functions
+
+  // This is the alias to use unless you'd like to provide a specific allocator to basic_stacktrace.
+  using stacktrace = basic_stacktrace<allocator<stack_frame>>;
+
+  // Outputs stacktrace in a human readable format to output stream.
+  template<typename CharT, typename TraitsT, typename Allocator>
+  basic_ostream< CharT, TraitsT > & operator<<(basic_ostream<CharT, TraitsT>& os, const basic_stacktrace<Allocator>& bt);
+
+  // Outputs stacktrace in a human readable format to string.
+  template<typename Allocator>
+  string to_string(const basic_stacktrace<Allocator>& f);
+
+  // Outputs frame in a human readable format to string.
+  string to_string(const stack_frame& f);
+
+  // Outputs frame in a human readable format to output stream.
+  template<typename CharT, typename TraitsT>
+  basic_ostream< CharT, TraitsT >& operator<<(basic_ostream<CharT, TraitsT>& os, const stack_frame& f);
+}
+		
+ + +

Class stack_frame

+

The stack_frame class stores a pointer to function and allows querying information about that function.

 namespace std {
   class stack_frame {
@@ -82,24 +115,56 @@ 

Header <stacktrace>

constexpr stack_frame(const stack_frame&) noexcept = default; constexpr stack_frame& operator=(const stack_frame&) = default; - explicit stack_frame(native_frame_ptr_t f) noexcept; + constexpr explicit stack_frame(native_frame_ptr_t f) noexcept; template<typename T> explicit stack_frame(T* address) noexcept; constexpr native_frame_ptr_t address() const noexcept; - constexpr bool empty() const noexcept; + constexpr explicit operator bool() const noexcept; - strong_ordering operator <=>(const stack_frame& rhs) = default; + constexpr strong_ordering operator <=>(const stack_frame& rhs) = default; - // functions that do decoding + // functions that querying information about stored address string name() const; string source_file() const; size_t source_line() const; private: - native_frame_ptr_t data; // exposiotion only + native_frame_ptr_t data; // exposition only }; +} +
+ + +

stack_frame constructors

+
stack_frame() noexcept;
+
Constructs stack_frame that references nullptr address. Calls to source_file() and source_line() will return empty string. Calls to source_line() will return 0.
+ +
explicit stack_frame(native_frame_ptr_t addr) noexcept;
+template<typename T> explicit stack_frame(T * addr) noexcept;
+
Constructs stack_frame that references addr and could later generate information about that address using platform specific features.
+ + +

stack_frame member functions

+
std::string name() const;
+
Returns empty string or platform specific name of the function that the stored address is pointing to. Throws std::bad_alloc if not enough memory to construct resulting string.
+ +
constexpr native_frame_ptr_t address() const noexcept;
+
Returns address stored by this.
+ +
std::string source_file() const;
+
Returns empty string or path to the source file, where the function of the frame is defined. Returns empty string if this->source_line() == 0. Throws std::bad_alloc if not enough memory to construct resulting string.
+
std::string source_line() const;
+
Returns 0 or code line in the source file, where the function of the stored address is defined. Throws std::bad_alloc if not enough memory to construct resulting string.
+ +
explicit operator bool() const noexcept;
+
Returns true if this stores and address other than NULL.
+ +

Class template <basic_stacktrace>

+

The basic_stacktrace template class stores current call sequence on construction and provides functions for querying information about the call sequence.

+
+namespace std {
   template<typename Allocator>
   class basic_stacktrace {
   public:
@@ -109,7 +174,7 @@ 

Header <stacktrace>

using const_iterator = implementation-defined; using allocaotr_type = Allocator; - // functions that capture current call sequence without decoding it + // functions that capture current call sequence basic_stacktrace() noexcept; explicit basic_stacktrace(const allocator_type& a) noexcept; basic_stacktrace(size_type skip, size_type max_depth, const allocator_type& a = allocator_type()) noexcept; @@ -136,64 +201,19 @@

Header <stacktrace>

vector<value_type> stack_frames; // exposition only }; - // This is the alias to use unless you'd like to provide a specific allocator to basic_stacktrace. - using stacktrace = basic_stacktrace<allocator<stack_frame>>; - - // Outputs stacktrace in a human readable format to output stream; unsafe to use in async handlers. - template<typename CharT, typename TraitsT, typename Allocator> - basic_ostream< CharT, TraitsT > & operator<<(basic_ostream<CharT, TraitsT>& os, const basic_stacktrace<Allocator>& bt); - - // Outputs frame in a human readable format to string; unsafe to use in async handlers. - string to_string(const stack_frame& f); - - // Outputs frame in a human readable format to output stream; unsafe to use in async handlers. - template<typename CharT, typename TraitsT> - basic_ostream< CharT, TraitsT >& operator<<(basic_ostream<CharT, TraitsT>& os, const stack_frame& f); }
- -

stack_frame constructors

-
stack_frame() noexcept;
-
Constructs stack_frame that references NULL address. Calls to source_file() and source_line() will return empty string. Calls to source_line() will return 0.
- -
explicit stack_frame(native_frame_ptr_t addr) noexcept;
-template<typename T> explicit stack_frame(T * addr) noexcept;
-
Constructs stack_frame that references addr and could later generate information about that address using platform specific features.
- - -

stack_frame member functions

-
std::string name() const;
-
Returns platform specific name of the stack_frame (function name in a human readable form). Throws std::bad_alloc if not enough memory to construct resulting string.
- -
constexpr native_frame_ptr_t address() const noexcept;
-
Returns address of the stack_frame.
- -
std::string source_file() const;
-
Returns path to the source file, where the function of the frame is defined. Returns empty string if this->source_line() == 0. Throws std::bad_alloc if not enough memory to construct resulting string.
- -
std::string source_line() const;
-
Returns code line in the source line, where the function of the frame is defined. Throws std::bad_alloc if not enough memory to construct resulting string.
- -
constexpr bool empty() const;
-
Checks that stack_frame is not references NULL address.
- - - - - - -

basic_stacktrace constructors

basic_stacktrace() noexcept;
 explicit basic_stacktrace(const allocator_type & a) noexcept;
-
Stores the current function call sequence inside *this without any decoding or any other heavy platform specific operations.
+
Stores the current call sequence inside *this without querying information about each call.
Any exception raised during this operation is silently ignored. In case of exception (bool)*this is false
basic_stacktrace(size_type skip, size_type max_depth, const allocator_type& a = allocator_type()) noexcept;
-
Stores [skip; skip + max_depth) of the current function call sequence inside *this without any decoding or any heavy platform specific operations.
+
Stores [skip; skip + max_depth) of the current function call sequence inside *this without querying information about each call.
Any exception raised during this operation is silently ignored. In case of exception (bool)*this is false
@@ -203,7 +223,7 @@

basic_stacktrace member functions

Parameters: frame_no - zero-based index of frame to return. 0 is the function index where stacktrace was constructed and index close to this->size() contains function main().
explicit operator bool() const noexcept;
-
Allows to check that stack trace capturing was successful.
+
Returns true if call sequence was successfully stored.

V. Feature-testing macro