LibOFX
ofx_utilities.hh
Go to the documentation of this file.
1 /***************************************************************************
2  ofx_util.h
3  -------------------
4  copyright : (C) 2002 by Benoit Gr�goire
5  email : benoitg@coeus.ca
6  ***************************************************************************/
10 /***************************************************************************
11  * *
12  * This program is free software; you can redistribute it and/or modify *
13  * it under the terms of the GNU General Public License as published by *
14  * the Free Software Foundation; either version 2 of the License, or *
15  * (at your option) any later version. *
16  * *
17  ***************************************************************************/
18 #ifndef OFX_UTIL_H
19 #define OFX_UTIL_H
20 #include <string.h>
21 #include <time.h> // for time_t
22 #include <cstring>
23 #include "ParserEventGeneratorKit.h"
24 
25 /* This file contains various simple functions for type conversion & al */
26 
27 /*wostream &operator<<(wostream &os, SGMLApplication::CharString s); */
28 
34 template <typename T>
35 void STRNCPY(T& dest, const std::string& src)
36 {
37  std::strncpy(dest, src.c_str(), sizeof(dest));
38 }
39 
45 #define ASSIGN(DEST, VALUE) DEST = (VALUE); DEST ## _valid = true
46 
52 #define ASSIGN_STRNCPY(DEST, VALUE) STRNCPY(DEST, VALUE); DEST ## _valid = true
53 
55 std::string CharStringtostring(const SGMLApplication::CharString source);
56 
58 void AppendCharStringtostring(const SGMLApplication::CharString source, std::string &dest);
59 
61 time_t ofxdate_to_time_t(const std::string& ofxdate);
62 
64 double ofxamount_to_double(const std::string ofxamount);
65 
67 std::string strip_whitespace(const std::string para_string);
68 
69 int mkTempFileName(const char *tmpl, char *buffer, unsigned int size);
70 
71 #endif
ofxamount_to_double
double ofxamount_to_double(const std::string ofxamount)
Convert OFX amount of money to double float.
Definition: ofx_utilities.cpp:130
ofxdate_to_time_t
time_t ofxdate_to_time_t(const std::string &ofxdate)
Convert a C++ string containing a time in OFX format to a C time_t.
Definition: ofx_utilities.cpp:68
CharStringtostring
std::string CharStringtostring(const SGMLApplication::CharString source)
Convert OpenSP CharString to a C++ STL string.
Definition: ofx_utilities.cpp:40
STRNCPY
void STRNCPY(T &dest, const std::string &src)
Definition: ofx_utilities.hh:35
AppendCharStringtostring
void AppendCharStringtostring(const SGMLApplication::CharString source, std::string &dest)
Append an OpenSP CharString to an existing C++ STL string.
Definition: ofx_utilities.cpp:52
strip_whitespace
std::string strip_whitespace(const std::string para_string)
Sanitize a string coming from OpenSP.
Definition: ofx_utilities.cpp:153