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/mymoneyprice.cpp

118 lines
3.9 KiB

/***************************************************************************
mymoneyprice - description
-------------------
begin : Sun Nov 21 2004
copyright : (C) 2000-2004 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. *
* *
***************************************************************************/
/**
* @author Thomas Baumgart
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
// ----------------------------------------------------------------------------
// TQt Includes
// ----------------------------------------------------------------------------
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes
#include "mymoneyprice.h"
#include "mymoneyexception.h"
MyMoneyPrice::MyMoneyPrice() :
m_date(TQDate())
{
}
MyMoneyPrice::MyMoneyPrice(const TQString& from, const TQString& to, const TQDomElement& node)
{
if("PRICE" != node.tagName())
throw new MYMONEYEXCEPTION("Node was not PRICE");
m_fromSecurity = from;
m_toSecurity = to;
m_date = TQDate::fromString(node.attribute("date"), TQt::ISODate);
m_rate = MyMoneyMoney(node.attribute("price"));
m_source = node.attribute("source");
if(!m_rate.isZero())
m_invRate = MyMoneyMoney(1,1) / m_rate;
else
tqDebug("Price with zero value loaded");
}
MyMoneyPrice::MyMoneyPrice(const TQString& from, const TQString& to, const TQDate& date, const MyMoneyMoney& rate, const TQString& source) :
m_fromSecurity(from),
m_toSecurity(to),
m_date(date),
m_rate(rate),
m_source(source)
{
if(!m_rate.isZero())
m_invRate = MyMoneyMoney(1,1) / m_rate;
else
tqDebug("Price with zero value created");
}
MyMoneyPrice::~MyMoneyPrice()
{
}
const MyMoneyMoney MyMoneyPrice::rate(const TQString& id) const
{
static MyMoneyMoney dummyPrice(1,1);
if(!isValid())
return dummyPrice;
if(id.isEmpty() || id == m_toSecurity)
return m_rate;
if(id == m_fromSecurity)
return m_invRate;
TQString msg = TQString("Unknown security id %1 for price info %2/%3.").arg(id).arg(m_fromSecurity).arg(m_toSecurity);
throw new MYMONEYEXCEPTION(msg);
}
bool MyMoneyPrice::isValid(void) const
{
return (m_date.isValid() && !m_fromSecurity.isEmpty() && !m_toSecurity.isEmpty());
}
// Equality operator
bool MyMoneyPrice::operator == (const MyMoneyPrice &right) const
{
return ((m_date == right.m_date) &&
(m_rate == right.m_rate) &&
((m_fromSecurity.length() == 0 && right.m_fromSecurity.length() == 0) || (m_fromSecurity == right.m_fromSecurity)) &&
((m_toSecurity.length() == 0 && right.m_toSecurity.length() == 0) || (m_toSecurity == right.m_toSecurity)) &&
((m_source.length() == 0 && right.m_source.length() == 0) || (m_source == right.m_source)));
}
bool MyMoneyPrice::hasReferenceTo(const TQString& id) const
{
return (id == m_fromSecurity) || (id == m_toSecurity);
}