IOSS 2.0
Loading...
Searching...
No Matches
Ioss_Utils.h
Go to the documentation of this file.
1// Copyright(C) 1999-2024 National Technology & Engineering Solutions
2// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
3// NTESS, the U.S. Government retains certain rights in this software.
4//
5// See packages/seacas/LICENSE for details
6
7#pragma once
8
9#include "Ioss_CodeTypes.h"
11#include "Ioss_EntityType.h"
12#include "Ioss_Field.h"
13#include "Ioss_Property.h"
14#include "Ioss_Sort.h"
15#include <algorithm> // for sort, lower_bound, copy, etc
16#include <cassert>
17#include <cmath>
18#include <cstddef> // for size_t
19#include <cstdint> // for int64_t
20#include <cstdlib> // for nullptrr
21#include <iostream> // for ostringstream, etcstream, etc
22#include <stdexcept> // for runtime_error
23#include <string> // for string
24#include <vector> // for vector
25
26#include "ioss_export.h"
27
28namespace Ioss {
29 class DatabaseIO;
30 class Field;
31 class GroupingEntity;
32 class Region;
33 class SideBlock;
34 class PropertyManager;
35 enum class ElementShape : unsigned int;
36} // namespace Ioss
37
38[[noreturn]] inline void IOSS_ERROR(const std::ostringstream &errmsg)
39{
40 throw std::runtime_error((errmsg).str());
41}
42
43#ifdef NDEBUG
44#define IOSS_ASSERT_USED(x) (void)x
45#else
46#define IOSS_ASSERT_USED(x)
47#endif
48
49// We have been relying on the assumption that calling `.data()` on an empty vector
50// will return `nullptr`. However, according to cppreference (based on the standard):
51//
52// `If size() is 0, data() may or may not return a null pointer.`
53//
54// We don't have any systems on which we have found that (yet?), but this is proactive
55// in removing our use of `.data()` on potentially empty vectors...
56template <typename T> IOSS_NODISCARD constexpr T *Data(std::vector<T> &vec)
57{
58 if (vec.empty()) {
59 return nullptr;
60 }
61 return vec.data();
62}
63
64template <typename T> IOSS_NODISCARD constexpr const T *Data(const std::vector<T> &vec)
65{
66 if (vec.empty()) {
67 return nullptr;
68 }
69 return vec.data();
70}
71
72template <typename T, size_t N> IOSS_NODISCARD constexpr T *Data(std::array<T, N> &arr)
73{
74 return N == 0 ? nullptr : arr.data();
75}
76
77template <typename T, size_t N> IOSS_NODISCARD constexpr const T *Data(const std::array<T, N> &arr)
78{
79 return N == 0 ? nullptr : arr.data();
80}
81
82namespace Ioss {
83 /* \brief Utility methods.
84 */
85 class IOSS_EXPORT Utils
86 {
87 static std::ostream
88 *m_outputStream; ///< general informational output (very rare). Default std::cerr
89 static std::ostream *m_debugStream; ///< debug output when requested. Default std::cerr
90 static std::ostream *m_warningStream; ///< IOSS warning output. Default std::cerr
91 static std::string m_preWarningText; ///< is a string that prepends all warning message output.
92 ///< Default is "\nIOSS WARNING: "
93 public:
94 /**
95 * \defgroup IossStreams Streams used for IOSS output
96 *@{
97 */
98 /** \brief set the stream for all streams (output, debug, and warning) to the specified
99 * `out_stream`
100 */
101 static void set_all_streams(std::ostream &out_stream);
102
103 /** \brief get the debug stream.
104 */
105 IOSS_NODISCARD static std::ostream &get_debug_stream();
106
107 /** \brief get the warning stream.
108 */
109 IOSS_NODISCARD static std::ostream &get_warning_stream();
110
111 /** \brief get the output stream.
112 */
113 IOSS_NODISCARD static std::ostream &get_output_stream();
114
115 IOSS_NODISCARD static std::string &get_warning_text() { return m_preWarningText; }
116
117 /** \brief set the output stream to the specified `output_stream`
118 */
119 static void set_output_stream(std::ostream &output_stream);
120
121 /** \brief set the debug stream to the specified `debug_stream`
122 */
123 static void set_debug_stream(std::ostream &debug_stream);
124
125 /** \brief set the warning stream to the specified `warning_stream`
126 */
127 static void set_warning_stream(std::ostream &warning_stream);
128
129 /** \brief set the pre-warning text
130 * Sets the text output prior to a warning to the specified text.
131 * Pass an empty string to disable this. Default is `"\nIOSS WARNING: "`
132 */
133 static void set_pre_warning_text(const std::string &text) { m_preWarningText = text; }
134 /** @}*/
135
136 static void copyright(std::ostream &out, const std::string &year_range);
137
138 static void check_dynamic_cast(const void *ptr)
139 {
140 if (ptr == nullptr) {
141 std::ostringstream errmsg;
142 errmsg << "INTERNAL ERROR: Invalid dynamic cast returned nullptr\n";
143 IOSS_ERROR(errmsg);
144 }
145 }
146
147 // NOTE: This code previously checked for existence of filesystem include, but
148 // gcc-8.X has the include but needs a library, also intel and clang
149 // pretend to be gcc, so macro to test for usability of filesystem
150 // was complicated and we can easily get by with the following code.
151 static bool is_path_absolute(const std::string &path)
152 {
153 if (!path.empty()) {
154#ifdef __IOSS_WINDOWS__
155 return path[0] == '\\' && path[1] == ':';
156#else
157 return path[0] == '/';
158#endif
159 }
160 return false;
161 }
162
163 /** \brief guess file type from extension */
164 IOSS_NODISCARD static std::string get_type_from_file(const std::string &filename);
165
166 template <typename T> static void uniquify(std::vector<T> &vec, bool skip_first = false)
167 {
168 auto it = vec.begin();
169 if (skip_first) {
170 it++;
171 }
172 Ioss::sort(it, vec.end());
173 vec.resize(unique(vec, skip_first));
174 vec.shrink_to_fit();
175 }
176
177 template <typename T> static void generate_index(std::vector<T> &index)
178 {
179 T sum = 0;
180 for (size_t i = 0; i < index.size() - 1; i++) {
181 T cnt = index[i];
182 index[i] = sum;
183 sum += cnt;
184 }
185 index.back() = sum;
186 }
187
188 template <typename T>
189 IOSS_NODISCARD static T find_index_location(T node, const std::vector<T> &index)
190 {
191 // 0-based node numbering
192 // index[p] = first node (0-based) on processor p
193
194#if 1
195 // Assume data coherence. I.e., a new search will be close to the
196 // previous search.
197 static size_t prev = 1;
198
199 size_t nproc = index.size();
200 if (prev < nproc && index[prev - 1] <= node && index[prev] > node) {
201 return prev - 1;
202 }
203
204 for (size_t p = 1; p < nproc; p++) {
205 if (index[p] > node) {
206 prev = p;
207 return p - 1;
208 }
209 }
210 std::ostringstream errmsg;
211 errmsg << "FATAL ERROR: find_index_location. Searching for " << node << " in:\n";
212 for (auto idx : index) {
213 errmsg << idx << ", ";
214 }
215 errmsg << "\n";
216 IOSS_ERROR(errmsg);
217#else
218 return std::distance(index.begin(), std::upper_bound(index.begin(), index.end(), node)) - 1;
219#endif
220 }
221
222 static void copy_string(char *dest, char const *source, size_t elements);
223
224 static void copy_string(char *dest, const std::string &source, size_t elements)
225 {
226 copy_string(dest, source.c_str(), elements);
227 }
228
229 template <size_t size> static void copy_string(char (&output)[size], const std::string &source)
230 {
231 copy_string(output, source.c_str(), size);
232 }
233
234 template <size_t size> static void copy_string(char (&output)[size], const char *source)
235 {
236 // Copy the string don't copy too many bytes.
237 copy_string(output, source, size);
238 }
239
240 template <typename T> static void clear(std::vector<T> &vec)
241 {
242 vec.clear();
243 vec.shrink_to_fit();
244 assert(vec.capacity() == 0);
245 }
246
247 /**
248 * Returns the number of digits required to print the number.
249 * If `use_commas` is specified, then the width will be adjusted
250 * to account for the comma used every 3 digits.
251 * (1,234,567,890 would return 13)
252 * Typically used with the `fmt::print()` functions as:
253 * ```
254 * fmt::print("{:{}}", number, number_width(number,true))
255 * fmt::print("{:{}d}", number, number_width(number,false))
256 * ```
257 */
258 IOSS_NODISCARD inline static int number_width(const size_t number, bool use_commas = false)
259 {
260 if (number == 0) {
261 return 1;
262 }
263 int width = static_cast<int>(std::floor(std::log10(number))) + 1;
264 if (use_commas) {
265 width += ((width - 1) / 3);
266 }
267 return width;
268 }
269
270 IOSS_NODISCARD inline static int power_2(int count)
271 {
272 // Return the power of two which is equal to or greater than `count`
273 // count = 15 -> returns 16
274 // count = 16 -> returns 16
275 // count = 17 -> returns 32
276
277 // Use brute force...
278 int pow2 = 1;
279 while (pow2 < count) {
280 pow2 *= 2;
281 }
282 return pow2;
283 }
284
285 template <typename T>
286 IOSS_NODISCARD static bool check_block_order(IOSS_MAYBE_UNUSED const std::vector<T *> &blocks)
287 {
288#ifndef NDEBUG
289 // Verify that element blocks are defined in sorted offset order...
290 typename std::vector<T *>::const_iterator I;
291
292 int64_t eb_offset = -1;
293 for (I = blocks.begin(); I != blocks.end(); ++I) {
294 int64_t this_off = (*I)->get_offset();
295 if (this_off < eb_offset) {
296 {
297 {
298 return false;
299 }
300 }
301 }
302 eb_offset = this_off;
303 }
304#endif
305 return true;
306 }
307
308 IOSS_NODISCARD static int term_width();
309
310 IOSS_NODISCARD static int log_power_2(uint64_t value);
311
312 /** \brief Get formatted time and date strings.
313 *
314 * Fill time_string and date_string with current time and date
315 * formatted as "HH:MM:SS" for time and "yy/mm/dd" or "yyyy/mm/dd"
316 * for date.
317 *
318 * \param[out] time_string The formatted time string.
319 * \param[out] date_string The formatted date string.
320 * \param[in] length Use 8 for short-year date format, or 10 for long-year date format.
321 */
322 static void time_and_date(char *time_string, char *date_string, size_t length);
323
324 IOSS_NODISCARD static std::string decode_filename(const std::string &filename, int processor,
325 int num_processors);
326 IOSS_NODISCARD static int get_number(const std::string &suffix);
327 IOSS_NODISCARD static int extract_id(const std::string &name_id);
328 IOSS_NODISCARD static std::string encode_entity_name(const std::string &entity_type,
329 int64_t id);
330
331 /** Return the trailing digits (if any) from `name`
332 * `hex20` would return the string `20`
333 * `tetra` would return an empty string.
334 */
335 IOSS_NODISCARD static std::string get_trailing_digits(const std::string &name);
336
337 /** \brief create a string that describes the list of input `ids` collapsing ranges if possible.
338 *
339 * Traverse the sorted input vector `ids` and return a string that has all sequential ranges
340 * collapsed and separated by `rng_sep` and all individual ids or ranges separated by `seq_sep`.
341 * Will throw an exception if `ids` is not sorted. An empty list returns an empty string.
342 * The sequence of ids `1, 2, 3, 5, 6, 7` with `rng_sep=".."` will return the default
343 * string `1..3, 5..8`
344 */
345 IOSS_NODISCARD static std::string format_id_list(const std::vector<size_t> &ids,
346 const std::string &rng_sep = " to ",
347 const std::string &seq_sep = ", ");
348
349 /** \brief Convert a string to lower case, and convert spaces to `_`.
350 *
351 * The conversion is performed in place.
352 *
353 * \param[in,out] name On input, the string to convert. On output, the converted string.
354 *
355 */
356 static void fixup_name(char *name);
357
358 /** \brief Convert a string to lower case, and convert spaces to `_`.
359 *
360 * The conversion is performed in place.
361 *
362 * \param[in,out] name On input, the string to convert. On output, the converted string.
363 *
364 */
365 static void fixup_name(std::string &name);
366
367 /** \brief Check whether property `prop_name` exists and if so, set `prop_value`
368 *
369 * based on the property value. Either "TRUE", "YES", "ON", or nonzero for true;
370 * or "FALSE", "NO", "OFF", or 0 for false.
371 * \param[in] properties the Ioss::PropertyManager containing the properties to be checked.
372 * \param[in] prop_name the name of the property to check whether it exists and if so, set its
373 * value.
374 * \param[out] prop_value if `prop_name` exists and has a valid value, set prop_value
375 * accordingly. Does not modify if `prop_name` does not exist. \returns true/false depending on
376 * whether property found and value set.
377 */
378
379 static bool check_set_bool_property(const Ioss::PropertyManager &properties,
380 const std::string &prop_name, bool &prop_value);
381
382 /** \brief Determine whether an entity has the property `omitted`.
383 *
384 * \param[in] block The entity.
385 * \returns True if the entity has the property `omitted`.
386 */
387 IOSS_NODISCARD static bool block_is_omitted(Ioss::GroupingEntity *block);
388
389 /** \brief Process the base element type `base` which has
390 * `nodes_per_element` nodes and a spatial dimension of `spatial`
391 * into a form that the IO system can (hopefully) recognize.
392 *
393 * Lowercases the name; converts spaces to `_`, adds
394 * nodes_per_element at end of name (if not already there), and
395 * does some other transformations to remove some exodusII ambiguity.
396 *
397 * \param[in] base The element base name.
398 * \param[in] nodes_per_element The number of nodes per element.
399 * \param[in] spatial The spatial dimension of the element.
400 * \returns The Ioss-formatted element name.
401 */
402 IOSS_NODISCARD static std::string fixup_type(const std::string &base, int nodes_per_element,
403 int spatial);
404
405 /** \brief Uppercase the first letter of the string
406 *
407 * \param[in] name The string to convert.
408 * \returns The converted string.
409 */
410 IOSS_NODISCARD static std::string capitalize(std::string name);
411
412 /** \brief Convert a string to upper case.
413 *
414 * \param[in] name The string to convert.
415 * \returns The converted string.
416 */
417 IOSS_NODISCARD static std::string uppercase(std::string name);
418
419 /** \brief Convert a string to lower case.
420 *
421 * \param[in] name The string to convert.
422 * \returns The converted string.
423 */
424 IOSS_NODISCARD static std::string lowercase(std::string name);
425
426 static void check_non_null(void *ptr, const char *type, const std::string &name,
427 const std::string &func);
428
429 /** \brief Case-insensitive string comparison.
430 *
431 * \param[in] s1 First string
432 * \param[in] s2 Second string
433 * \returns `true` if strings are equal
434 */
435 IOSS_NODISCARD static bool str_equal(const std::string &s1, const std::string &s2);
436
437 /** \brief Case-insensitive substring comparison.
438 *
439 * \param[in] prefix The prefix that should start the string
440 * \param[in] str The string which should begin with prefix
441 * \returns `true` if `str` begins with `prefix` or `prefix` is empty
442 */
443 IOSS_NODISCARD static bool substr_equal(const std::string &prefix, const std::string &str);
444
445 /** Check all values in `data` to make sure that if they are converted to a double and
446 * back again, there will be no data loss. This requires that the value be less than 2^53.
447 * This is done in the exodus database since it stores all transient data as doubles...
448 */
449 static bool check_int_to_real_overflow(const Ioss::Field &field, int64_t *data,
450 size_t num_entity);
451
452 /** \brief Get a string containing `uname` output.
453 *
454 * This output contains information about the current computing platform.
455 * This is used as information data in the created results file to help
456 * in tracking when/where/... the file was created.
457 *
458 * \returns The platform information string.
459 */
460 IOSS_NODISCARD static std::string platform_information();
461
462 /** \brief Get a filename relative to the specified working directory (if any)
463 * of the current execution.
464 *
465 * Working_directory must end with `/` or be empty.
466 *
467 * \param[in] relative_filename The file path to be appended to the working directory path.
468 * \param[in] type The file type. "generated" file types are treated differently.
469 * \param[in] working_directory the path to which the relative_filename path is appended.
470 * \returns The full path (working_directory + relative_filename)
471 */
472 IOSS_NODISCARD static std::string local_filename(const std::string &relative_filename,
473 const std::string &type,
474 const std::string &working_directory);
475
476 static void get_fields(int64_t entity_count, Ioss::NameList &names,
477 Ioss::Field::RoleType fld_role, const DatabaseIO *db, int *local_truth,
478 std::vector<Ioss::Field> &fields);
479
480 static int field_warning(const Ioss::GroupingEntity *ge, const Ioss::Field &field,
481 const std::string &inout);
482
483 static void calculate_sideblock_membership(IntVector &face_is_member, const SideBlock *sb,
484 size_t int_byte_size, const void *element,
485 const void *sides, int64_t number_sides,
486 const Region *region);
487
488 /** \brief Get the appropriate index offset for the sides of elements in a SideBlock.
489 *
490 * And yet another idiosyncrasy of sidesets...
491 * The side of an element (especially shells) can be
492 * either a face or an edge in the same sideset. The
493 * ordinal of an edge is (local_edge_number+numfaces) on the
494 * database, but needs to be (local_edge_number) for Sierra...
495 *
496 * If the sideblock has a "parent_element_topology" and a
497 * "topology", then we can determine whether to offset the
498 * side ordinals...
499 *
500 * \param[in] sb Compute the offset for element sides in this SideBlock
501 * \returns The offset.
502 */
503 IOSS_NODISCARD static int64_t get_side_offset(const Ioss::ElementTopology *parent_topo,
504 const Ioss::ElementTopology *side_topo);
505
506 IOSS_NODISCARD static int64_t get_side_offset(const Ioss::SideBlock *sb);
507
508 IOSS_NODISCARD static unsigned int hash(const std::string &name);
509
510 IOSS_NODISCARD static double timer();
511
512 /** \brief Convert an input file to a vector of strings containing one string for each line of
513 * the file.
514 *
515 * Should only be called by a single processor or each processor will be accessing the file
516 * at the same time...
517 *
518 * \param[in] file_name The name of the file.
519 * \param[out] lines The vector of strings containing the lines of the file
520 * \param[in] max_line_length The maximum number of characters in any line of the file.
521 */
522 static void input_file(const std::string &file_name, Ioss::NameList *lines,
523 size_t max_line_length = 0);
524
525 template <class T> IOSS_NODISCARD static std::string to_string(const T &t)
526 {
527 return std::to_string(t);
528 }
529
530 //! \brief Tries to shorten long variable names to an acceptable
531 //! length, and converts to lowercase and spaces to `_`
532 //!
533 //! Many databases have a maximum length for variable names which can
534 //! cause a problem with variable name length.
535 //!
536
537 //! This routine tries to shorten long variable names to an
538 //! acceptable length (`max_var_len` characters max). If the name
539 //! is already less than this length, it is returned unchanged...
540 //!
541 //! Since there is a (good) chance that two shortened names will match,
542 //! a 2-letter `hash` code is appended to the end of the variable name.
543 //!
544 //! So, we shorten the name to a maximum of `max_var_len`-3
545 //! characters and append a 2 character hash+separator.
546 //!
547 //! It also converts name to lowercase and converts spaces to `_`
548 IOSS_NODISCARD static std::string variable_name_kluge(const std::string &name,
549 size_t component_count, size_t copies,
550 size_t max_var_len);
551
552 IOSS_NODISCARD static std::string shape_to_string(const Ioss::ElementShape &shape);
553
554 IOSS_NODISCARD static std::string entity_type_to_string(const Ioss::EntityType &type);
555
556 /** \brief Create a nominal mesh for use in history databases.
557 *
558 * The model for a history file is a single sphere element (1 node, 1 element).
559 * This is needed for some applications that read this file that require a
560 * "mesh" even though a history file is just a collection of global variables
561 * with no real mesh. This routine will add the mesh portion to a history file.
562 *
563 * \param[in,out] region The region on which the nominal mesh is to be defined.
564 */
565 static void generate_history_mesh(Ioss::Region *region);
566
567 static void info_fields(const Ioss::GroupingEntity *ige, Ioss::Field::RoleType role,
568 const std::string &header, const std::string &suffix = "\n\t",
569 bool detail = false);
570
571 static void info_property(const Ioss::GroupingEntity *ige, Ioss::Property::Origin origin,
572 const std::string &header, const std::string &suffix = "\n\t",
573 bool print_empty = false);
574
576 {
577 dest.insert(dest.end(), src.begin(), src.end());
578 std::sort(dest.begin(), dest.end(), std::less<>());
579 auto endIter = std::unique(dest.begin(), dest.end());
580 dest.resize(endIter - dest.begin());
581 }
582
583 private:
584 // SEE: http://lemire.me/blog/2017/04/10/removing-duplicates-from-lists-quickly
585 template <typename T> static size_t unique(std::vector<T> &out, bool skip_first)
586 {
587 if (out.empty()) {
588 return 0;
589 }
590 size_t i = 1;
591 size_t pos = 1;
592 T oldv = out[0];
593 if (skip_first) {
594 i = 2;
595 pos = 2;
596 oldv = out[1];
597 }
598 for (; i < out.size(); ++i) {
599 T newv = out[i];
600 out[pos] = newv;
601 pos += (newv != oldv);
602 oldv = newv;
603 }
604 return pos;
605 }
606 };
607
608 inline std::ostream &OUTPUT() { return Utils::get_output_stream(); }
609
610 inline std::ostream &DebugOut() { return Utils::get_debug_stream(); }
611
612 inline std::ostream &WarnOut(bool output_prewarning = true)
613 {
614 if (output_prewarning) {
616 }
618 }
619
620} // namespace Ioss
#define IOSS_MAYBE_UNUSED
Definition Ioss_CodeTypes.h:54
#define IOSS_NODISCARD
Definition Ioss_CodeTypes.h:55
IOSS_NODISCARD constexpr T * Data(std::vector< T > &vec)
Definition Ioss_Utils.h:56
void IOSS_ERROR(const std::ostringstream &errmsg)
Definition Ioss_Utils.h:38
An input or output Database.
Definition Ioss_DatabaseIO.h:63
Represents an element topology.
Definition Ioss_ElementTopology.h:68
Holds metadata for bulk data associated with a GroupingEntity.
Definition Ioss_Field.h:25
RoleType
Definition Ioss_Field.h:69
Base class for all 'grouping' entities. The following derived classes are typical:
Definition Ioss_GroupingEntity.h:67
A collection of Ioss::Property objects.
Definition Ioss_PropertyManager.h:36
Origin
Definition Ioss_Property.h:30
A grouping entity that contains other grouping entities.
Definition Ioss_Region.h:93
A collection of element sides having the same topology.
Definition Ioss_SideBlock.h:37
Definition Ioss_Utils.h:86
static IOSS_NODISCARD std::string to_string(const T &t)
Definition Ioss_Utils.h:525
static void insert_sort_and_unique(const Ioss::NameList &src, Ioss::NameList &dest)
Definition Ioss_Utils.h:575
static std::ostream * m_debugStream
debug output when requested. Default std::cerr
Definition Ioss_Utils.h:89
static std::ostream * m_outputStream
general informational output (very rare). Default std::cerr
Definition Ioss_Utils.h:88
static IOSS_NODISCARD int number_width(const size_t number, bool use_commas=false)
Definition Ioss_Utils.h:258
static void clear(std::vector< T > &vec)
Definition Ioss_Utils.h:240
static void copy_string(char(&output)[size], const char *source)
Definition Ioss_Utils.h:234
static void check_dynamic_cast(const void *ptr)
Definition Ioss_Utils.h:138
static bool is_path_absolute(const std::string &path)
Definition Ioss_Utils.h:151
static void uniquify(std::vector< T > &vec, bool skip_first=false)
Definition Ioss_Utils.h:166
static std::string m_preWarningText
Definition Ioss_Utils.h:91
static void generate_index(std::vector< T > &index)
Definition Ioss_Utils.h:177
static IOSS_NODISCARD int power_2(int count)
Definition Ioss_Utils.h:270
static std::ostream * m_warningStream
IOSS warning output. Default std::cerr.
Definition Ioss_Utils.h:90
static IOSS_NODISCARD bool check_block_order(IOSS_MAYBE_UNUSED const std::vector< T * > &blocks)
Definition Ioss_Utils.h:286
static size_t unique(std::vector< T > &out, bool skip_first)
Definition Ioss_Utils.h:585
static void copy_string(char(&output)[size], const std::string &source)
Definition Ioss_Utils.h:229
static IOSS_NODISCARD T find_index_location(T node, const std::vector< T > &index)
Definition Ioss_Utils.h:189
static void copy_string(char *dest, const std::string &source, size_t elements)
Definition Ioss_Utils.h:224
static void set_pre_warning_text(const std::string &text)
set the pre-warning text Sets the text output prior to a warning to the specified text....
Definition Ioss_Utils.h:133
static IOSS_NODISCARD std::string & get_warning_text()
Definition Ioss_Utils.h:115
static IOSS_NODISCARD std::ostream & get_warning_stream()
get the warning stream.
Definition Ioss_Utils.C:157
static IOSS_NODISCARD std::ostream & get_output_stream()
get the output stream.
Definition Ioss_Utils.C:155
static IOSS_NODISCARD std::ostream & get_debug_stream()
get the debug stream.
Definition Ioss_Utils.C:159
The main namespace for the Ioss library.
Definition Ioad_DatabaseIO.C:40
std::ostream & WarnOut(bool output_prewarning=true)
Definition Ioss_Utils.h:612
std::ostream & OUTPUT()
Definition Ioss_Utils.h:608
void sort(Iter begin, Iter end, Comp compare)
Definition Ioss_Sort.h:17
Ioss::NameList NameList
Definition Ioss_ChangeSetFactory.h:25
ElementShape
Definition Ioss_ElementTopology.h:24
std::ostream & DebugOut()
Definition Ioss_Utils.h:610
std::vector< int > IntVector
Definition Ioss_CodeTypes.h:21
EntityType
The particular type of GroupingEntity.
Definition Ioss_EntityType.h:12