From: Patrick Donnelly Date: Fri, 15 Jan 2021 03:54:46 +0000 (-0800) Subject: common: add strescape helper X-Git-Tag: v16.1.0~9^2~11 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=093b0505e6120faf02a8d9e172032501474496c4;p=ceph.git common: add strescape helper Signed-off-by: Patrick Donnelly --- diff --git a/src/common/strescape.h b/src/common/strescape.h new file mode 100644 index 00000000000..6c9926cdb98 --- /dev/null +++ b/src/common/strescape.h @@ -0,0 +1,36 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab +/* + * Ceph - scalable distributed file system + * + * Copyright (C) 2021 Red Hat, Inc. + * + * This is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software + * Foundation. See file COPYING. + * + */ + +#ifndef CEPH_STRESCAPE_H +#define CEPH_STRESCAPE_H + +#include +#include + +#include + +inline std::string binstrprint(std::string_view sv, size_t maxlen=0) +{ + std::string s; + if (maxlen == 0 || sv.size() < maxlen) { + s = std::string(sv); + } else { + maxlen = std::max(8, maxlen); + s = std::string(sv.substr(0, maxlen-3))+"..."s; + } + std::replace_if(s.begin(), s.end(), [](char c){ return !(isalnum(c) || ispunct(c)); }, '.'); + return s; +} + +#endif