From 093b0505e6120faf02a8d9e172032501474496c4 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Thu, 14 Jan 2021 19:54:46 -0800 Subject: [PATCH] common: add strescape helper Signed-off-by: Patrick Donnelly --- src/common/strescape.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/common/strescape.h 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 -- 2.39.5