Lemma is an Electromagnetics API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ASCIIParser.h 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* This file is part of Lemma, a geophysical modelling and inversion API.
  2. * More information is available at http://lemmasoftware.org
  3. */
  4. /* This Source Code Form is subject to the terms of the Mozilla Public
  5. * License, v. 2.0. If a copy of the MPL was not distributed with this
  6. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  7. */
  8. /**
  9. * @file
  10. * @date 09/23/2013 02:31:24 PM
  11. * @version $Id$
  12. * @author Trevor Irons (ti)
  13. * @email Trevor.Irons@xri-geo.com
  14. * @copyright Copyright (c) 2013, Trevor Irons
  15. */
  16. #ifndef ASCIIPARSER_INC
  17. #define ASCIIPARSER_INC
  18. #include "LemmaObject.h"
  19. #include <fstream>
  20. namespace Lemma {
  21. /**
  22. * \ingroup LemmaCore
  23. * \brief Provides ASCII input file parsing
  24. * \details Able to accomodate various inputs and comment styles
  25. */
  26. class ASCIIParser : public LemmaObject {
  27. friend std::ostream &operator<<(std::ostream &stream,
  28. const ASCIIParser &ob);
  29. struct ctor_cookie {};
  30. public:
  31. // ==================== LIFECYCLE =======================
  32. /** Default constructor */
  33. explicit ASCIIParser ( const ctor_cookie& );
  34. /** Constructor using YAML::Node */
  35. ASCIIParser ( const YAML::Node& node, const ctor_cookie& );
  36. /** Default destructor */
  37. virtual ~ASCIIParser ();
  38. /**
  39. * Factory method for generating concrete class.
  40. * @return a std::shared_ptr of type ASCIIParser
  41. */
  42. static std::shared_ptr< ASCIIParser > NewSP();
  43. /**
  44. * Constructs an object from a YAML serialization
  45. * @return a std::shared_ptr of type ASCIIParser
  46. */
  47. static std::shared_ptr< ASCIIParser > DeSerialize( const YAML::Node& node );
  48. /**
  49. * Uses YAML to serialize this object.
  50. * @return a YAML::Node
  51. */
  52. YAML::Node Serialize() const;
  53. // ==================== OPERATORS =======================
  54. // ==================== OPERATIONS =======================
  55. /** Opens the file up for reading. Throws an exception if something bad happens.
  56. @param[in] fname is the filename to be parsed.
  57. */
  58. void Open (const std::string& fname);
  59. /** Closes the file. Throws an exception if something bad happens.
  60. */
  61. void Close ( );
  62. /** Reads a series of Reals.
  63. * @param[in] nr is the number of reals to read. Enter -1 for the entire file
  64. * @todo throw exception if no file is open
  65. */
  66. std::vector<Real> ReadReals( const int& nr);
  67. /** Reads a series of Reals.
  68. * @param[in] nr is the number of ints to read. Enter -1 for the entire file
  69. * @todo throw exception if no file is open
  70. */
  71. std::vector<int> ReadInts( const int& nr);
  72. /** Reads a series of space delimited strings
  73. * @param[in] nr is the number of strings to read. Enter -1 for the entire file
  74. * @todo throw exception if no file is open
  75. */
  76. std::vector< std::string > ReadStrings( const int& nr);
  77. /**
  78. * @param[in] loc is the point in the file to jump to. Uses seekg
  79. */
  80. void JumpToLocation(const int& loc);
  81. // ==================== ACCESS =======================
  82. /** Sets the comment identifier key.
  83. * @param[in] key is a string identifying comments. All text after the key will be
  84. * ignored by the parser. Default is //
  85. */
  86. void SetCommentString( const std::string& key );
  87. /** Sets the buffer size. This affects the maximum number of column in a line. Defaults
  88. * is 255.
  89. * @param[in] BufferSize is the size of the buffer to use
  90. */
  91. void SetBufferSize( const int& BufferSize);
  92. /**
  93. * @return the current position in the file, as reported by istream::tellg
  94. */
  95. int GetFileLocation();
  96. /** Returns the name of the underlying class, similiar to Python's type */
  97. virtual inline std::string GetName() const {
  98. return CName;
  99. }
  100. // ==================== INQUIRY =======================
  101. protected:
  102. /** Copy constructor */
  103. ASCIIParser( const ASCIIParser& ) = delete;
  104. private:
  105. // ==================== DATA MEMBERS =========================
  106. /** ASCII string representation of the class name */
  107. static constexpr auto CName = "ASCIIParser";
  108. /** c++ style file IO */
  109. std::fstream input;
  110. /** comment string, defaults to c++ style // */
  111. std::string CommentString;
  112. /** Buffer size, max line width supported, defaults to 255 */
  113. int BufferSize;
  114. }; // ----- end of class ASCIIParser -----
  115. } // ----- end of Lemma name -----
  116. #endif // ----- #ifndef ASCIIPARSER_INC -----