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 using namespace std;
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 ostream &operator<<(ostream &os, SGMLApplication::CharString s);
56 
58 wchar_t* CharStringtowchar_t(SGMLApplication::CharString source, wchar_t *dest);
59 
61 string CharStringtostring(const SGMLApplication::CharString source, string &dest);
62 
64 string AppendCharStringtostring(const SGMLApplication::CharString source, string &dest);
65 
67 time_t ofxdate_to_time_t(const string& ofxdate);
68 
70 double ofxamount_to_double(const string ofxamount);
71 
73 string strip_whitespace(const string para_string);
74 
75 int mkTempFileName(const char *tmpl, char *buffer, unsigned int size);
76 
77 #endif
wchar_t * CharStringtowchar_t(SGMLApplication::CharString source, wchar_t *dest)
Convert OpenSP CharString and put it in the C wchar_t string provided.
string strip_whitespace(const string para_string)
Sanitize a string coming from OpenSP.
ostream & operator<<(ostream &os, SGMLApplication::CharString s)
Convert OpenSP CharString to a C++ stream.
void STRNCPY(T &dest, const std::string &src)
string AppendCharStringtostring(const SGMLApplication::CharString source, string &dest)
Append an OpenSP CharString to an existing C++ STL string.
time_t ofxdate_to_time_t(const string &ofxdate)
Convert a C++ string containing a time in OFX format to a C time_t.
double ofxamount_to_double(const string ofxamount)
Convert OFX amount of money to double float.
string CharStringtostring(const SGMLApplication::CharString source, string &dest)
Convert OpenSP CharString to a C++ STL string.