2025-01-10 11:33:35 +01:00
|
|
|
// Copyright 2010-2025 Google LLC
|
2011-09-05 13:45:06 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
2025-11-05 10:13:48 +01:00
|
|
|
#ifndef ORTOOLS_UTIL_STRING_ARRAY_H_
|
|
|
|
|
#define ORTOOLS_UTIL_STRING_ARRAY_H_
|
2011-09-05 13:45:06 +00:00
|
|
|
|
|
|
|
|
#include <string>
|
2014-05-13 12:56:44 +00:00
|
|
|
#include <vector>
|
2011-09-05 13:45:06 +00:00
|
|
|
|
2026-02-25 13:38:20 +01:00
|
|
|
#include "absl/strings/str_join.h"
|
2023-09-21 13:05:23 +02:00
|
|
|
#include "absl/strings/string_view.h"
|
|
|
|
|
|
2011-09-05 13:45:06 +00:00
|
|
|
namespace operations_research {
|
|
|
|
|
// ---------- Pretty Print Helpers ----------
|
|
|
|
|
|
2019-11-20 14:28:11 -08:00
|
|
|
// Converts a vector into a string by calling the given method (or simply
|
|
|
|
|
// getting the given string member), on all elements, and concatenating
|
2013-10-17 08:58:26 +00:00
|
|
|
// the obtained strings with the given separator.
|
2013-10-10 15:23:20 +00:00
|
|
|
|
2013-10-17 08:58:26 +00:00
|
|
|
// Join v[i].DebugString().
|
2013-10-10 15:23:20 +00:00
|
|
|
template <class T>
|
2020-10-29 14:25:39 +01:00
|
|
|
std::string JoinDebugString(const std::vector<T>& v,
|
2026-02-25 13:38:20 +01:00
|
|
|
absl::string_view separator = ", ") {
|
|
|
|
|
return absl::StrJoin(v, separator, [](std::string* out, const T& t) {
|
|
|
|
|
out->append(t.DebugString());
|
|
|
|
|
});
|
2011-12-15 11:50:32 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-17 08:58:26 +00:00
|
|
|
// Join v[i]->DebugString().
|
2013-10-10 15:23:20 +00:00
|
|
|
template <class T>
|
2020-10-29 14:25:39 +01:00
|
|
|
std::string JoinDebugStringPtr(const std::vector<T>& v,
|
2026-02-25 13:38:20 +01:00
|
|
|
absl::string_view separator = ", ") {
|
|
|
|
|
return absl::StrJoin(v, separator, [](std::string* out, const T& t) {
|
|
|
|
|
out->append(t->DebugString());
|
|
|
|
|
});
|
2013-10-10 15:23:20 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-17 08:58:26 +00:00
|
|
|
// Join v[i]->name().
|
2013-10-10 15:23:20 +00:00
|
|
|
template <class T>
|
2026-02-25 13:38:20 +01:00
|
|
|
std::string JoinNamePtr(const std::vector<T>& v,
|
|
|
|
|
absl::string_view separator = ", ") {
|
|
|
|
|
return absl::StrJoin(v, separator, [](std::string* out, const T& t) {
|
|
|
|
|
out->append(t->name());
|
|
|
|
|
});
|
2011-09-05 13:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-17 08:58:26 +00:00
|
|
|
// Join v[i]->name.
|
2013-10-10 15:23:20 +00:00
|
|
|
template <class T>
|
2020-10-29 14:25:39 +01:00
|
|
|
std::string JoinNameFieldPtr(const std::vector<T>& v,
|
2026-02-25 13:38:20 +01:00
|
|
|
absl::string_view separator = ", ") {
|
|
|
|
|
return absl::StrJoin(
|
|
|
|
|
v, separator, [](std::string* out, const T& t) { out->append(t->name); });
|
2012-06-26 04:59:29 +00:00
|
|
|
}
|
|
|
|
|
|
2020-10-22 23:36:58 +02:00
|
|
|
} // namespace operations_research
|
2025-11-05 10:13:48 +01:00
|
|
|
#endif // ORTOOLS_UTIL_STRING_ARRAY_H_
|