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