mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-15 16:18:22 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4368 1feff8c3-07ed-0310-ac33-dd36852eb9cd
564 lines
15 KiB
C++
564 lines
15 KiB
C++
/*! @file IPhreeqc.hpp
|
|
@brief C++ Documentation
|
|
*/
|
|
|
|
#ifndef INC_IPHREEQC_HPP
|
|
#define INC_IPHREEQC_HPP
|
|
|
|
#include <exception>
|
|
#include <list>
|
|
#include <vector>
|
|
#include <cstdarg>
|
|
#include "IPhreeqcCallbacks.h" /* PFN_PRERUN_CALLBACK, PFN_POSTRUN_CALLBACK, PFN_CATCH_CALLBACK */
|
|
#include "Var.h" /* VRESULT */
|
|
|
|
#if defined(_WINDLL)
|
|
#define DLL_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define DLL_EXPORT
|
|
#endif
|
|
|
|
class Phreeqc;
|
|
class IErrorReporter;
|
|
class CSelectedOutput;
|
|
|
|
/**
|
|
* @class IPhreeqcStop
|
|
*
|
|
* @brief This class is derived from std::exception and is thrown
|
|
* when an unrecoverable error has occured.
|
|
*/
|
|
class DLL_EXPORT IPhreeqcStop : std::exception
|
|
{
|
|
};
|
|
|
|
/**
|
|
* @class IPhreeqc
|
|
*
|
|
* @brief Provides an interface to PHREEQC (Version 2)--A Computer
|
|
* Program for Speciation, Batch-Reaction, One-Dimensional Transport,
|
|
* and Inverse Geochemical Calculations
|
|
*/
|
|
class DLL_EXPORT IPhreeqc
|
|
{
|
|
public:
|
|
/**
|
|
* Default Constructor.
|
|
*/
|
|
IPhreeqc(void);
|
|
|
|
/**
|
|
* Destructor
|
|
*/
|
|
~IPhreeqc(void);
|
|
|
|
public:
|
|
|
|
/**
|
|
* Retrieves the error messages from the last call to \ref RunAccumulated, \ref RunFile, \ref LoadDatabase, or \ref LoadDatabaseString.
|
|
*/
|
|
const char* GetErrorString(void);
|
|
|
|
/**
|
|
* Retrieves the warning messages from the last call to \ref RunAccumulated, \ref RunFile, \ref LoadDatabase, or \ref LoadDatabaseString.
|
|
*/
|
|
const char* GetWarningString(void);
|
|
|
|
/**
|
|
* Retrieves the string buffer containing <b>DUMP</b> output.
|
|
* @pre \ref SetDumpStringOn must have been set to true in order to recieve <b>DUMP</b> output.
|
|
* @see SetDumpStringOn
|
|
*/
|
|
const char* GetDumpString(void);
|
|
|
|
/**
|
|
* Load the specified database file into phreeqc.
|
|
* @param filename The name of the phreeqc database to load.
|
|
* The full path will be required if the file is not
|
|
* in the current working directory.
|
|
* @return The number of errors encountered.
|
|
* @remarks
|
|
* Any previous database definitions are cleared.
|
|
*/
|
|
int LoadDatabase(const char* filename);
|
|
|
|
/**
|
|
* Load the specified string as a database into phreeqc.
|
|
* @param input String containing data to be used as the phreeqc database.
|
|
* @return The number of errors encountered.
|
|
* @remarks
|
|
* Any previous database definitions are cleared.
|
|
*/
|
|
int LoadDatabaseString(const char* input);
|
|
|
|
/**
|
|
* Unloads any database currently loaded into phreeqc. In addition, all
|
|
* previous phreeqc definitions (ie SOLUTIONS, EXCHANGERS, etc) are cleared from memory.
|
|
* @remarks
|
|
* Use of the method is not normally necessary. It is called automatically
|
|
* before each call to \ref LoadDatabase or \ref LoadDatabaseString.
|
|
*/
|
|
void UnLoadDatabase(void);
|
|
|
|
/**
|
|
* Appends the given error message and increments the error count.
|
|
* Internally used to create an error condition.
|
|
* @param error_msg The error message to display.
|
|
* @returns The current error count.
|
|
*/
|
|
size_t AddError(const char* error_msg);
|
|
|
|
/**
|
|
* Appends the given warning message and increments the warning count.
|
|
* Internally used to create an error condition.
|
|
* @param warning_msg The warning message to display.
|
|
* @returns The current warning count.
|
|
*/
|
|
size_t AddWarning(const char* warning_msg);
|
|
|
|
/**
|
|
* Runs the accumulated input sent to AccumulateLine.
|
|
* @return The number of errors encountered.
|
|
* @remarks
|
|
* The accumulated input is cleared upon a successful run (no errors).
|
|
* @pre \ref LoadDatabase/\ref LoadDatabaseString must have been called and returned 0 (zero) errors.
|
|
*/
|
|
int RunAccumulated(void);
|
|
|
|
/**
|
|
* Runs the specified phreeqc input file.
|
|
* @param filename The name of the phreeqc input file to run.
|
|
* @return The number of errors encountered during the run.
|
|
* @pre \ref LoadDatabase/\ref LoadDatabaseString must have been called and returned 0 (zero) errors.
|
|
*/
|
|
int RunFile(const char* filename);
|
|
|
|
/**
|
|
* Runs the specified string as input to phreeqc.
|
|
* @param input String containing phreeqc input.
|
|
* @return The number of errors encountered during the run.
|
|
* @pre \ref LoadDatabase/\ref LoadDatabaseString must have been called and returned 0 (zero) errors.
|
|
*/
|
|
int RunString(const char* input);
|
|
|
|
/**
|
|
* Returns the number of rows currently contained within selected_output.
|
|
* @see GetSelectedOutputColumnCount, GetSelectedOutputValue
|
|
*/
|
|
int GetSelectedOutputRowCount(void)const;
|
|
|
|
/**
|
|
* Returns the number of columns currently contained within selected_output.
|
|
* @see GetSelectedOutputRowCount, GetSelectedOutputValue
|
|
*/
|
|
int GetSelectedOutputColumnCount(void)const;
|
|
|
|
/**
|
|
* Returns the \c VAR associated with the specified row and column.
|
|
* @param row The row index.
|
|
* @param col The column index.
|
|
* @param pVAR Pointer to the \c VAR to recieve the requested data.
|
|
* @retval VR_OK Success
|
|
* @retval VR_INVALIDROW The given row is out of range.
|
|
* @retval VR_INVALIDCOL The given column is out of range.
|
|
* @retval VR_OUTOFMEMORY Memory could not be allocated.
|
|
* @retval VR_BADINSTANCE The given id is invalid.
|
|
* @remarks
|
|
* Row 0 contains the column headings to the selected_ouput.
|
|
* @par Examples:
|
|
* The headings will include a suffix and/or prefix in order to differentiate the
|
|
* columns.
|
|
* @htmlonly
|
|
<p>
|
|
<table border=1>
|
|
|
|
<TR VALIGN="top">
|
|
<TH width=65%>
|
|
Input
|
|
</TH>
|
|
<TH width=35%>
|
|
Headings
|
|
</TH>
|
|
</TR>
|
|
|
|
<TR VALIGN="top">
|
|
<TD width=65%>
|
|
<CODE><PRE>
|
|
SELECTED_OUTPUT
|
|
-reset false
|
|
-totals Ca Na
|
|
</PRE></CODE>
|
|
</TD>
|
|
<TD width=35%>
|
|
<CODE><PRE>
|
|
Ca(mol/kgw) Na(mol/kgw)
|
|
</PRE></CODE>
|
|
</TD>
|
|
</TR>
|
|
|
|
<TR VALIGN="top">
|
|
<TD width=65%>
|
|
<CODE><PRE>
|
|
SELECTED_OUTPUT
|
|
-reset false
|
|
-molalities Fe+2 Hfo_sOZn+
|
|
</PRE></CODE>
|
|
</TD>
|
|
<TD width=35%>
|
|
<CODE><PRE>
|
|
m_Fe+2(mol/kgw) m_Hfo_sOZn+(mol/kgw)
|
|
</PRE></CODE>
|
|
</TD>
|
|
</TR>
|
|
|
|
<TR VALIGN="top">
|
|
<TD width=65%>
|
|
<CODE><PRE>
|
|
SELECTED_OUTPUT
|
|
-reset false
|
|
-activities H+ Ca+2
|
|
</PRE></CODE>
|
|
</TD>
|
|
<TD width=35%>
|
|
<CODE><PRE>
|
|
la_H+ la_Ca+2
|
|
</PRE></CODE>
|
|
</TD>
|
|
</TR>
|
|
|
|
<TR VALIGN="top">
|
|
<TD width=65%>
|
|
<CODE><PRE>
|
|
SELECTED_OUTPUT
|
|
-reset false
|
|
-equilibrium_phases Calcite Dolomite
|
|
</PRE></CODE>
|
|
</TD>
|
|
<TD width=35%>
|
|
<CODE><PRE>
|
|
Calcite d_Calcite Dolomite d_Dolomite
|
|
</PRE></CODE>
|
|
</TD>
|
|
</TR>
|
|
|
|
<TR VALIGN="top">
|
|
<TD width=65%>
|
|
<CODE><PRE>
|
|
SELECTED_OUTPUT
|
|
-reset false
|
|
-saturation_indices CO2(g) Siderite
|
|
</PRE></CODE>
|
|
</TD>
|
|
<TD width=35%>
|
|
<CODE><PRE>
|
|
si_CO2(g) si_Siderite
|
|
</PRE></CODE>
|
|
</TD>
|
|
</TR>
|
|
|
|
<TR VALIGN="top">
|
|
<TD width=65%>
|
|
<CODE><PRE>
|
|
SELECTED_OUTPUT
|
|
-reset false
|
|
-gases CO2(g) N2(g)
|
|
</PRE></CODE>
|
|
</TD>
|
|
<TD width=35%>
|
|
<CODE><PRE>
|
|
pressure "total mol" volume g_CO2(g) g_N2(g)
|
|
</PRE></CODE>
|
|
</TD>
|
|
</TR>
|
|
|
|
<TR VALIGN="top">
|
|
<TD width=65%>
|
|
<CODE><PRE>
|
|
SELECTED_OUTPUT
|
|
-reset false
|
|
-kinetic_reactants CH2O Pyrite
|
|
</PRE></CODE>
|
|
</TD>
|
|
<TD width=35%>
|
|
<CODE><PRE>
|
|
k_CH2O dk_CH2O k_Pyrite dk_Pyrite
|
|
</PRE></CODE>
|
|
</TD>
|
|
</TR>
|
|
|
|
<TR VALIGN="top">
|
|
<TD width=65%>
|
|
<CODE><PRE>
|
|
SELECTED_OUTPUT
|
|
-reset false
|
|
-solid_solutions CaSO4 SrSO4
|
|
</PRE></CODE>
|
|
</TD>
|
|
<TD width=35%>
|
|
<CODE><PRE>
|
|
s_CaSO4 s_SrSO4
|
|
</PRE></CODE>
|
|
</TD>
|
|
</TR>
|
|
|
|
</table>
|
|
* @endhtmlonly
|
|
*/
|
|
VRESULT GetSelectedOutputValue(int row, int col, VAR* pVAR);
|
|
|
|
/**
|
|
* Output the error messages normally stored in the phreeqc.err file to stdout.
|
|
*/
|
|
void OutputError(void);
|
|
|
|
/**
|
|
* Output the warning messages to stdout.
|
|
*/
|
|
void OutputWarning(void);
|
|
|
|
/**
|
|
* Output the accumulated input to stdout. This is the input that will be
|
|
* used for the next call to RunAccumulated.
|
|
*/
|
|
void OutputLines(void);
|
|
|
|
/**
|
|
* Retrieve the accumulated input string. This is the input that will be
|
|
* used for input to RunAccumulated.
|
|
* @returns The accumulated input string.
|
|
*/
|
|
const std::string& GetAccumulatedLines(void);
|
|
|
|
/**
|
|
* Clears the accumulated input. Input is accumulated from calls to \ref AccumulateLine.
|
|
*/
|
|
void ClearAccumulatedLines(void);
|
|
|
|
/**
|
|
* Accumlulate line(s) for input to phreeqc.
|
|
* @param line The line(s) to add for input to phreeqc.
|
|
* @retval VR_OK Success
|
|
* @retval VR_OUTOFMEMORY Out of memory
|
|
*/
|
|
VRESULT AccumulateLine(const char *line);
|
|
|
|
/**
|
|
* Retrieves the number of lines in the current dump string buffer.
|
|
* @return The number of lines.
|
|
* @see GetDumpLineCount, SetDumpStringOn
|
|
*/
|
|
int GetDumpLineCount(void)const;
|
|
|
|
/**
|
|
* Retrieves the given dump line.
|
|
* @param n The zero-based index of the line to retrieve.
|
|
* @return A null terminated string containing the given line.
|
|
* Returns an empty string if n is out of range.
|
|
* @see GetDumpLineCount, SetDumpStringOn
|
|
*/
|
|
const char* GetDumpLine(int n);
|
|
|
|
/**
|
|
* Retrieves the number of lines in the current error string buffer.
|
|
* @see GetErrorLine
|
|
*/
|
|
int GetErrorLineCount(void)const;
|
|
|
|
/**
|
|
* Retrieves the given error line.
|
|
* @param n The zero-based index of the line to retrieve.
|
|
* @see GetErrorLineCount
|
|
*/
|
|
const char* GetErrorLine(int n);
|
|
|
|
/**
|
|
* Retrieves the number of lines in the current warning string buffer.
|
|
*/
|
|
int GetWarningLineCount(void)const;
|
|
|
|
/**
|
|
* Retrieves the current value of the dump flag.
|
|
* @param n The zero-based index of the line to retrieve.
|
|
* @see GetWarningLineCount, OutputWarning
|
|
*/
|
|
const char* GetWarningLine(int n);
|
|
|
|
/**
|
|
* Retrieves a list containg the current list of components.
|
|
* @return The current list of components.
|
|
*/
|
|
std::list< std::string > ListComponents(void);
|
|
|
|
/**
|
|
* Retrieves the number of components in the current simulation.
|
|
* @return The current count of components.
|
|
* @see GetComponent
|
|
*/
|
|
size_t GetComponentCount(void);
|
|
|
|
/**
|
|
* Retrieves the given component.
|
|
* @param n The zero-based index of the component to retrieve.
|
|
* @return A null terminated string containing the given component.
|
|
* Returns an empty string if n is out of range.
|
|
* @see GetComponentCount, ListComponents
|
|
*/
|
|
const char* GetComponent(int n);
|
|
|
|
/**
|
|
* Retrieves the current value of the dump flag.
|
|
* @see SetDumpOn
|
|
*/
|
|
bool GetDumpOn(void)const;
|
|
|
|
/**
|
|
* Sets the dump flag on or off. This flag controls whether or not phreeqc writes to the dump file.
|
|
* The default is false.
|
|
* @param bValue If true turns on output to the <B>DUMP</B> (<B>dump.out</B> if unspecified) file.
|
|
* @see GetDumpOn
|
|
*/
|
|
void SetDumpOn(bool bValue);
|
|
|
|
/**
|
|
* Retrieves the current value of the dump string flag.
|
|
* @see SetDumpStringOn, GetDumpString
|
|
*/
|
|
bool GetDumpStringOn(void)const;
|
|
|
|
/**
|
|
* Sets the dump string flag on or off. This flag controls whether or not the data normally sent
|
|
* to the dump file is stored in a buffer for later retrieval. The default is false.
|
|
* @param bValue If true captures the output defined by the <B>DUMP</B> keyword into a string buffer.
|
|
* @see GetDumpStringOn, GetDumpString
|
|
*/
|
|
void SetDumpStringOn(bool bValue);
|
|
|
|
/**
|
|
* Retrieves the current value of the error flag.
|
|
* @see SetErrorOn
|
|
*/
|
|
bool GetErrorOn(void)const;
|
|
|
|
/**
|
|
* Sets the error flag on or off. This flag controls whether or not
|
|
* error messages are written to the phreeqc.err file. The default is false.
|
|
* @param bValue If true turns on output to the <B>phreeqc.err</B> file.
|
|
*/
|
|
void SetErrorOn(bool bValue);
|
|
|
|
/**
|
|
* Retrieves the current value of the log flag.
|
|
* @see SetLogOn
|
|
*/
|
|
bool GetLogOn(void)const;
|
|
|
|
/**
|
|
* Sets the log flag on or off. This flag controls whether or not phreeqc
|
|
* writes log messages to the phreeqc.log file. The default is false.
|
|
* @param bValue If true turns on output to the <B>phreeqc.log</B> file.
|
|
* @see GetLogOn
|
|
*/
|
|
void SetLogOn(bool bValue);
|
|
|
|
/**
|
|
* Retrieves the current value of the output flag.
|
|
* @see SetOutputOn
|
|
*/
|
|
bool GetOutputOn(void)const;
|
|
|
|
/**
|
|
* Sets the output flag on or off. This flag controls whether or not phreeqc
|
|
* writes output to phreeqc.out. This output is the output normally generated
|
|
* when phreeqc is run. The default is false.
|
|
* @param bValue If true turns on output to the <B>phreeqc.out</B> file.
|
|
*/
|
|
void SetOutputOn(bool bValue);
|
|
|
|
/**
|
|
* Retrieves the selected_output flag.
|
|
* @see SetSelectedOutputOn
|
|
*/
|
|
bool GetSelectedOutputOn(void)const;
|
|
|
|
/**
|
|
* Sets the selected output flag on or off. This flag controls whether or not phreeqc writes output to
|
|
* the selected output file. The default is false.
|
|
* @param bValue If trun turns on output to the <B>SELECTED_OUTPUT</B> (<B>selected.out</B> if unspecified) file.
|
|
*/
|
|
void SetSelectedOutputOn(bool bValue);
|
|
|
|
protected:
|
|
static int handler(const int action, const int type, const char *err_str, const int stop, void *cookie, const char *format, va_list args);
|
|
int output_handler(const int type, const char *err_str, const int stop, void *cookie, const char *format, va_list args);
|
|
int open_handler(const int type, const char *file_name);
|
|
|
|
static int module_handler(const int action, const int type, const char *err_str, const int stop, void *cookie, const char *format, va_list args);
|
|
int module_isopen_handler(const int type);
|
|
int module_open_handler(const int type, const char *file_name);
|
|
|
|
int output_isopen(const int type);
|
|
|
|
int EndRow(void);
|
|
void AddSelectedOutput(const char* name, const char* format, va_list argptr);
|
|
|
|
void check_database(const char* sz_routine);
|
|
void do_run(const char* sz_routine, std::istream* pis, FILE* fp, PFN_PRERUN_CALLBACK pfn_pre, PFN_POSTRUN_CALLBACK pfn_post, void *cookie);
|
|
|
|
void update_errors(void);
|
|
|
|
protected:
|
|
bool DatabaseLoaded;
|
|
bool SelectedOutputOn;
|
|
bool OutputOn;
|
|
bool LogOn;
|
|
bool ErrorOn;
|
|
bool DumpOn;
|
|
bool DumpStringOn;
|
|
|
|
#if defined(_MSC_VER)
|
|
#pragma warning(disable:4251) /* disable warning C4251: 'identifier' : class 'type' needs to have dll-interface to be used by clients of class 'type2' */
|
|
#endif
|
|
|
|
IErrorReporter *ErrorReporter;
|
|
std::string ErrorString;
|
|
std::vector< std::string > ErrorLines;
|
|
|
|
IErrorReporter *WarningReporter;
|
|
std::string WarningString;
|
|
std::vector< std::string > WarningLines;
|
|
|
|
CSelectedOutput *SelectedOutput;
|
|
std::string PunchFileName;
|
|
std::string StringInput;
|
|
|
|
std::string DumpString;
|
|
std::vector< std::string > DumpLines;
|
|
|
|
std::list< std::string > Components;
|
|
|
|
#if defined(_MSC_VER)
|
|
#pragma warning(default:4251) /* reset warning C4251 */
|
|
#endif
|
|
|
|
private:
|
|
Phreeqc* PhreeqcPtr;
|
|
|
|
#if defined(CPPUNIT)
|
|
friend class TestIPhreeqc;
|
|
friend class TestSelectedOutput;
|
|
#endif
|
|
|
|
private:
|
|
/**
|
|
* Copy constructor not supported
|
|
*/
|
|
IPhreeqc(const IPhreeqc&);
|
|
|
|
/**
|
|
* operator= not supported
|
|
*/
|
|
IPhreeqc& operator=(const IPhreeqc&);
|
|
};
|
|
|
|
#endif // INC_IPHREEQC_HPP
|