Public Member Functions | Private Member Functions | Private Attributes

ACE_Stats_Value Class Reference

Helper class for ACE_Stats. More...

#include <Stats.h>

List of all members.

Public Member Functions

 ACE_Stats_Value (const u_int precision)
u_int precision (void) const
 Accessor for precision.
void whole (const ACE_UINT32)
 Set the whole_ field.
ACE_UINT32 whole (void) const
 Accessor for the whole_ field.
void fractional (const ACE_UINT32)
 Set the fractional_ field.
ACE_UINT32 fractional (void) const
 Accessor for the fractional_ field.
ACE_UINT32 fractional_field (void) const
void scaled_value (ACE_UINT64 &) const
void dump (void) const
 Print to stdout.

Private Member Functions

 ACE_Stats_Value (void)

Private Attributes

ACE_UINT32 whole_
 The integer portion of the value.
ACE_UINT32 fractional_
 The fractional portion of the value.
u_int precision_

Detailed Description

Helper class for ACE_Stats.

Container struct for 64-bit signed quantity and its precision. It would be nicer to use a fixed-point class, but this is sufficient. Users typically don't need to use this class directly; see ACE_Stats below.

Definition at line 41 of file Stats.h.


Constructor & Destructor Documentation

ACE_Stats_Value::ACE_Stats_Value ( const u_int  precision  ) 

Constructor, which requires precision in terms of number of decimal digits. The more variation in the data, and the greater the data values, the smaller the precision must be to avoid overflow in the standard deviation calculation. 3 might be a good value, or maybe 4. 5 will probably be too large for non-trivial data sets.

Definition at line 8 of file Stats.inl.

ACE_Stats_Value::ACE_Stats_Value ( void   )  [inline, private]

Definition at line 85 of file Stats.h.

{}


Member Function Documentation

void ACE_Stats_Value::dump ( void   )  const

Print to stdout.

Definition at line 59 of file Stats.inl.

{
#if defined (ACE_HAS_DUMP)
  ACE_DEBUG ((LM_DEBUG,
              ACE_TEXT ("precision: %u digits; whole: %u, fractional: %u\n"),
              precision_, whole_, fractional_));
#endif /* ACE_HAS_DUMP */
}

void ACE_Stats_Value::fractional ( const ACE_UINT32  value  ) 

Set the fractional_ field.

Definition at line 38 of file Stats.inl.

{
  fractional_ = value;
}

ACE_UINT32 ACE_Stats_Value::fractional ( void   )  const

Accessor for the fractional_ field.

Definition at line 45 of file Stats.inl.

{
  return fractional_;
}

ACE_UINT32 ACE_Stats_Value::fractional_field ( void   )  const

Calculates the maximum value of the fractional portion, given its precision.

Definition at line 17 of file Stats.cpp.

{
  if (precision () == 0)
    {
      return 1;
    }
  else
    {
      ACE_UINT32 field = 10;
      for (u_int i = 0; i < precision () - 1; ++i)
        {
          field *= 10;
        }

      return field;
    }
}

u_int ACE_Stats_Value::precision ( void   )  const

Accessor for precision.

Definition at line 17 of file Stats.inl.

{
  return precision_;
}

void ACE_Stats_Value::scaled_value ( ACE_UINT64 sv  )  const

Access the value as an _unsigned_ 64 bit quantity. It scales the value up by {precision} decimal digits, so that no precision will be lost. It assumes that {whole_} is >= 0.

Definition at line 52 of file Stats.inl.

{
  sv = whole () * fractional_field ()  +  fractional ();
}

ACE_UINT32 ACE_Stats_Value::whole ( void   )  const

Accessor for the whole_ field.

Definition at line 31 of file Stats.inl.

{
  return whole_;
}

void ACE_Stats_Value::whole ( const ACE_UINT32  value  ) 

Set the whole_ field.

Definition at line 24 of file Stats.inl.

{
  whole_ = value;
}


Member Data Documentation

ACE_UINT32 ACE_Stats_Value::fractional_ [private]

The fractional portion of the value.

Definition at line 92 of file Stats.h.

u_int ACE_Stats_Value::precision_ [private]

The number of decimal digits of precision represented by {fractional_}. Not declared const, so the only way to change it is via the assignment operator.

Definition at line 99 of file Stats.h.

ACE_UINT32 ACE_Stats_Value::whole_ [private]

The integer portion of the value.

Definition at line 89 of file Stats.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines