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.
kmymoney/kmymoney2/mymoney/mymoneyutils.h

189 lines
5.5 KiB

/***************************************************************************
mymoneyutils.h - description
-------------------
begin : Tue Jan 29 2002
copyright : (C) 2000-2002 by Michael Edwardes
email : mte@users.sourceforge.net
Javier Campos Morales <javi_c@users.sourceforge.net>
Felix Rodriguez <frodriguez@users.sourceforge.net>
John C <thetacoturtle@users.sourceforge.net>
Thomas Baumgart <ipwizard@users.sourceforge.net>
Kevin Tambascio <ktambascio@users.sourceforge.net>
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _MYMONEYUTILS_H_
#define _MYMONEYUTILS_H_
#include <tqstring.h>
#include <tqdatetime.h>
#include <tqvaluelist.h>
#include <kmymoney/export.h>
#if 0
//Includes for STL support below
#include <vector>
#include <map>
#include <list>
#include <string>
using namespace std;
#ifdef _UNICODE
typedef std::wstring String;
#else
typedef std::string String;
#endif
#else
//typedef for data type to store currency with.
typedef long long DLONG;
typedef TQString String;
#endif // 0
void timetrace(const char *);
void timestamp(const char *);
//class that has utility functions to use throughout the application.
class MyMoneyUtils
{
public:
MyMoneyUtils() {}
~MyMoneyUtils() {}
//static function to add the correct file extension at the end of the file name
static TQString getFileExtension(TQString strFileName);
};
class KMYMONEY_EXPORT MyMoneyTracer
{
public:
MyMoneyTracer(const char* prettyName);
#define MYMONEYTRACER(a) MyMoneyTracer a(__PRETTY_FUNCTION__)
MyMoneyTracer(const TQString& className, const TQString& methodName);
~MyMoneyTracer();
/**
* This method allows to trace a printf like formatted text
*
* @param format format mask
*/
void printf(const char *format, ...) const __attribute__ ((format (__printf__, 2, 3)));
static void off(void);
static void on(void);
static void onOff(int onOff);
private:
TQString m_className;
TQString m_memberName;
static int m_indentLevel;
static int m_onoff;
};
#ifdef _CHECK_MEMORY
#include <cstddef>
#include <tqmap.h>
class _CheckMemoryEntry {
public:
_CheckMemoryEntry();
_CheckMemoryEntry(void *p, int line, size_t size, const char *file);
~_CheckMemoryEntry() {}
void * pointer(void) const { return m_p; };
int line(void) const { return m_line; };
size_t size(void) const { return m_size; };
const char* file(void) const { return m_file; };
private:
void *m_p;
int m_line;
size_t m_size;
TQString m_file;
};
typedef TQMap<void *, _CheckMemoryEntry> CheckMemoryTable;
typedef void _CheckMemoryOutFunc(const char *);
class KMYMONEY_EXPORT _CheckMemory {
public:
_CheckMemory();
_CheckMemory(_CheckMemoryOutFunc *out);
virtual ~_CheckMemory();
_CheckMemoryOutFunc *SetOutFunc(_CheckMemoryOutFunc *out);
bool CheckMemoryLeak(bool freeall);
void FreeAll();
inline void Restart() { table.clear(); };
int TableCount(void);
private:
void Output(const char *fmt,...) __attribute__ ((format (__printf__, 2, 3)));
CheckMemoryTable table;
_CheckMemoryOutFunc *outfunc;
friend void * operator new(size_t s,const char *file,int line) throw();
friend void * operator new [] (size_t,const char *file,int line) throw();
friend void operator delete(void *p) throw();
friend void operator delete [] (void *p) throw();
};
KMYMONEY_EXPORT void * operator new(size_t s,const char *file,int line) throw(); // Normal new operator
KMYMONEY_EXPORT void * operator new [] (size_t s,const char *file,int line) throw(); // Array new operator
KMYMONEY_EXPORT void operator delete(void *p) throw();
KMYMONEY_EXPORT void operator delete [] (void *p) throw();
#define new new(__FILE__,__LINE__)
KMYMONEY_EXPORT extern _CheckMemory chkmem;
KMYMONEY_EXPORT void _CheckMemory_Init(_CheckMemoryOutFunc *out);
KMYMONEY_EXPORT void _CheckMemory_End();
#define _CheckMemory_Leak(freeall) chkmem.CheckMemoryLeak(freeall)
#define _CheckMemory_FreeAll() chkmem.FreeAll()
#endif // _CHECK_MEMORY
/**
* This function returns a date in the form specified by TQt::ISODate.
* If the @p date is invalid an empty string will be returned.
*
* @param date const reference to date to be converted
* @return TQString containing the converted date
*/
KMYMONEY_EXPORT TQString dateToString(const TQDate& date);
/**
* This function returns a date as TQDate object as specified by
* the parameter @p str. @p str must be in TQt::ISODate format.
* If @p str is empty or contains an invalid date, TQDate() is
* returned.
*
* @param str date in TQt::ISODate format
* @return TQDate object
*/
KMYMONEY_EXPORT TQDate stringToDate(const TQString& str);
KMYMONEY_EXPORT TQString TQStringEmpty(const TQString&);
KMYMONEY_EXPORT unsigned long extractId(const TQString& txt);
#endif