summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h
diff options
context:
space:
mode:
authorvishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-30 23:23:49 +0000
committervishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-30 23:23:49 +0000
commit353f6bab66eb82a7a0efda53eea160ab58a3b00d (patch)
treebae5200ea1ec1e41e9f4274d07ad117b712e0bcf /TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h
parent1fc373e0a3f384161e95f5e7e749c2b1f334547e (diff)
downloadATCD-353f6bab66eb82a7a0efda53eea160ab58a3b00d.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h102
1 files changed, 102 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h b/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h
new file mode 100644
index 00000000000..b245b59a6c9
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h
@@ -0,0 +1,102 @@
+// -*- C++ -*-
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/orbsvcs/Time_Service
+//
+// = FILENAME
+// TAO_UTO.h
+//
+// = DESCRIPTION
+// This class implements the CosTime::UTO IDL interface.
+//
+// = AUTHOR
+// Vishal Kachroo <vishal@cs.wustl.edu>
+//
+// ============================================================================
+
+#ifndef TAO_UTO_H
+#define TAO_UTO_H
+
+#include "orbsvcs/TimeServiceS.h"
+
+class TAO_UTO : public POA_CosTime::UTO
+{
+ // = TITLE
+ // Universal Time Object Implementation.
+ //
+ // = DESCRIPTION
+ // This is an encapsulation of the time. It provides the following
+ // operations on basic time.
+ //
+ // - Construction of a UTO from piece parts, and extraction of the
+ // piece parts from a UTO. The piece parts are the readonly
+ // attributes :
+ // time
+ // inaccuracy
+ // time displacement factor
+ // structure with all the above.
+ //
+ // - Comparison of time.
+ //
+ // - Conversion from relative to absolute time, and conversion to
+ // an interval (TIO).
+public:
+ // = Initialization and termination methods.
+ TAO_UTO (TimeBase::TimeT time,
+ TimeBase::InaccuracyT inaccuracy,
+ TimeBase::TdfT tdf);
+ // Constructor.
+
+ ~TAO_UTO (void);
+ // Destructor.
+
+ virtual TimeBase::TimeT time (CORBA::Environment &env);
+ // For the readonly attribute <time>.
+
+ virtual TimeBase::InaccuracyT inaccuracy (CORBA::Environment &env);
+ // For the readonly attribute <inaccuracy>.
+
+ virtual TimeBase::TdfT tdf (CORBA::Environment &env);
+ // For the readonly attribute <tdf>, which is the "time displacement
+ // factor".
+
+ virtual TimeBase::UtcT utc_time (CORBA::Environment &env);
+ // For the readonly attribute <utc_time>.
+
+ CosTime::UTO_ptr absolute_time (CORBA::Environment &env);
+ // Absolute time = Relative time + Base time.
+ // ?? Find out more about the Base Time, UTC and
+ // Distributed Time Sync. Algos. [3
+
+ CosTime::TimeComparison compare_time (CosTime::ComparisonType comparison_type,
+ CosTime::UTO_ptr uto,
+ CORBA::Environment &env);
+ // Compares the time contained in the object with the time in the
+ // supplied uto according to the supplied comparison type.
+
+
+ CosTime::TIO_ptr time_to_interval (CosTime::UTO_ptr,
+ CORBA::Environment &env);
+ // Returns a TIO representing the time interval between the time in
+ // the object and the time in the UTO passed as a parameter. The
+ // interval returned is the interval between the mid-points of the
+ // two UTOs. Inaccuracies are ignored. Note the result of this
+ // operation is meaningless if the base times of UTOs are different.
+
+ CosTime::TIO_ptr interval (CORBA::Environment &env);
+ // Returns a TIO object representing the error interval around the
+ // time value in the UTO.
+
+private:
+ TimeBase::UtcT attr_utc_time_;
+ // The readonly attribute structure having the time, inaccuracy and
+ // displacement. The get methods for other readonly attributes
+ // (time, inaccuracy, tdf) defined in the IDL use the members of
+ // this structure and hence need not have separate member variables
+ // for them.
+};
+
+#endif /* TAO_UTO_H */