BDE 4.14.0 Production release
Loading...
Searching...
No Matches
bbldc_terminatedbasicdaycountadapter

Detailed Description

Outline

Purpose

Provide a parameterized day-count convention implementation.

Classes

Description

This component provides a parameterized (template) implementation, bbldc::TerminatedBasicDayCountAdapter, of the bbldc::BasicDayCount protocol that allows for special handling of a termination date (e.g., maturity date). The template argument can be any type supporting the following two class methods.

int daysDiff(const bdlt::Date& beginDate,
const bdlt::Date& endDate,
const bdlt::Date& terminationDate);
double yearsDiff(const bdlt::Date& beginDate,
const bdlt::Date& endDate,
const bdlt::Date& terminationDate);
Definition bdlt_date.h:294

The template class bbldc::TerminatedBasicDayCountAdapter provides convenient support for run-time polymorphic choice of day-count conventions (via conventional use of a base-class pointer or reference) without having to implement each derived type explicitly. In this sense, bbldc::TerminatedBasicDayCountAdapter adapts the various concrete "terminated" day-count convention classes (e.g., bbldc::TerminatedIsda30360Eom) to a run-time binding mechanism.

Usage

This section illustrates intended use of this component.

Example 1: Adapting bbldc::TerminatedIsda30360Eom

This example shows the procedure for using bbldc::TerminatedBasicDayCountAdapter to adapt the bbldc::TerminatedIsda30360Eom day-count convention to the bbldc::BasicDayCount protocol, and then the use of the day-count methods.

First, we define an instance of the adapted bbldc::TerminatedIsda30360Eom day-count convention and obtain a reference to the bbldc::BasicDayCount:

myDcc(bdlt::Date(2004, 2, 29));
const bbldc::BasicDayCount& dcc = myDcc;
Definition bbldc_basicdaycount.h:163
Definition bbldc_terminatedbasicdaycountadapter.h:134

Then, create two bdlt::Date variables, d1 and d2, with which to use the day-count convention methods:

const bdlt::Date d1(2003, 10, 18);
const bdlt::Date d2(2003, 12, 31);

Now, use the base-class reference to compute the day count between the two dates:

const int daysDiff = dcc.daysDiff(d1, d2);
assert(72 == daysDiff);
virtual int daysDiff(const bdlt::Date &beginDate, const bdlt::Date &endDate) const =0

Finally, use the base-class reference to compute the year fraction between the two dates:

const double yearsDiff = dcc.yearsDiff(d1, d2);
// Need fuzzy comparison since 'yearsDiff' is a 'double'.
assert(0.1999 < yearsDiff && 0.2001 > yearsDiff);
virtual double yearsDiff(const bdlt::Date &beginDate, const bdlt::Date &endDate) const =0