X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cdf6a962eb4e88efbed3df9c41343adabcf09e6c..e71a2a302d28430dc1bfee906f842f5f3d0fa3ce:/include/xbt/string.hpp diff --git a/include/xbt/string.hpp b/include/xbt/string.hpp index 46063e37a4..83e2820a68 100644 --- a/include/xbt/string.hpp +++ b/include/xbt/string.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -27,6 +27,18 @@ namespace simgrid { namespace xbt { +/** Create a C++ string from a C-style format + * + * @ingroup XBT_str + */ +XBT_PUBLIC std::string string_printf(const char* fmt, ...); + +/** Create a C++ string from a C-style format + * + * @ingroup XBT_str + */ +XBT_PUBLIC std::string string_vprintf(const char* fmt, va_list ap); + #if SIMGRID_HAVE_MC /** POD structure representation of a string @@ -60,11 +72,11 @@ class XBT_PUBLIC string { public: // Types - typedef std::size_t size_type; - typedef char& reference; - typedef const char& const_reference; - typedef char* iterator; - typedef const char* const_iterator; + using size_type = std::size_t; + using reference = char&; + using const_reference = const char&; + using iterator = char*; + using const_iterator = const char*; // Dtor ~string() @@ -89,10 +101,8 @@ public: string() : string(&NUL, 0) {} explicit string(const char* s) : string(s, strlen(s)) {} string(string const& s) : string(s.c_str(), s.size()) {} - string(string&& s) + string(string&& s) noexcept : str(s.str) { - str.len = s.str.len; - str.data = s.str.data; s.str.len = 0; s.str.data = &NUL; } @@ -183,6 +193,15 @@ public: str.data = &NUL; } + size_t copy(char* s, size_t len, size_t pos = 0) const + { + if (pos > str.len) + throw std::out_of_range(string_printf("xbt::string::copy with pos > size() (%zu > %zu)", pos, str.len)); + size_t count = std::min(len, str.len - pos); + std::copy_n(str.data + pos, count, s); + return count; + } + bool equals(const char* data, std::size_t len) const { return this->size() == len @@ -294,18 +313,6 @@ bool operator>=(std::string const& a, string const& b) typedef std::string string; #endif - -/** Create a C++ string from a C-style format - * - * @ingroup XBT_str -*/ -XBT_PUBLIC std::string string_printf(const char* fmt, ...); - -/** Create a C++ string from a C-style format - * - * @ingroup XBT_str -*/ -XBT_PUBLIC std::string string_vprintf(const char* fmt, va_list ap); } }