Google Cloud Spanner C++ Client 2.13.0
A C++ Client Library for Google Cloud Spanner
Loading...
Searching...
No Matches
Public Member Functions | List of all members
google::cloud::spanner::Timestamp Class Reference

A representation of the Spanner TIMESTAMP type: An instant in time. More...

#include <google/cloud/spanner/timestamp.h>

Public Member Functions

 Timestamp ()
 Default construction yields 1970-01-01T00:00:00Z. More...
 
Regular value type, supporting copy, assign, move.
 Timestamp (Timestamp &&)=default
 
Timestampoperator= (Timestamp &&)=default
 
 Timestamp (Timestamp const &)=default
 
Timestampoperator= (Timestamp const &)=default
 

Friends

Relational operators
bool operator== (Timestamp const &a, Timestamp const &b)
 
bool operator!= (Timestamp const &a, Timestamp const &b)
 
bool operator< (Timestamp const &a, Timestamp const &b)
 
bool operator<= (Timestamp const &a, Timestamp const &b)
 
bool operator>= (Timestamp const &a, Timestamp const &b)
 
bool operator> (Timestamp const &a, Timestamp const &b)
 

Output streaming

template<typename T >
StatusOr< T > get () const
 Convert the Timestamp to the user-specified template type. More...
 
std::ostream & operator<< (std::ostream &os, Timestamp ts)
 Convert the Timestamp to the user-specified template type. More...
 
StatusOr< TimestampMakeTimestamp (absl::Time)
 Construct a Timestamp from an absl::Time. More...
 

Detailed Description

A representation of the Spanner TIMESTAMP type: An instant in time.

A Timestamp represents an absolute point in time (i.e., is independent of any time zone), with at least nanosecond precision, and with a range of 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z, inclusive.

The MakeTimestamp(src) factory function(s) should be used to construct Timestamp values from standard representations of absolute time.

A Timestamp can be converted back to a standard representation using ts.get<T>().

See also
https://cloud.google.com/spanner/docs/data-types#timestamp_type

Constructor & Destructor Documentation

◆ Timestamp() [1/3]

google::cloud::spanner::Timestamp::Timestamp ( )
inline

Default construction yields 1970-01-01T00:00:00Z.

◆ Timestamp() [2/3]

google::cloud::spanner::Timestamp::Timestamp ( Timestamp &&  )
default

◆ Timestamp() [3/3]

google::cloud::spanner::Timestamp::Timestamp ( Timestamp const &  )
default

Member Function Documentation

◆ get()

template<typename T >
StatusOr< T > google::cloud::spanner::Timestamp::get ( ) const
inline

Convert the Timestamp to the user-specified template type.

Fails if *this cannot be represented as a T.

Supported destination types are:

  • absl::Time - Since absl::Time can represent all possible Timestamp values, get<absl::Time>() never returns an error.
  • google::protobuf::Timestamp - Never returns an error, but any sub-nanosecond precision will be lost.
  • google::cloud::spanner::sys_time<Duration> - Duration::rep may not be wider than std::int64_t, and Duration::period may be no more precise than std::nano.
Example
Timestamp ts = MakeTimestamp(tp).value();
assert(tp == ts.get<sys_time<std::chrono::nanoseconds>>().value());
A representation of the Spanner TIMESTAMP type: An instant in time.
Definition: timestamp.h:54
StatusOr< T > get() const
Convert the Timestamp to the user-specified template type.
Definition: timestamp.h:114
friend StatusOr< Timestamp > MakeTimestamp(absl::Time)
Construct a Timestamp from an absl::Time.
std::chrono::time_point< std::chrono::system_clock, Duration > sys_time
Convenience alias.
Definition: timestamp.h:37

◆ operator=() [1/2]

Timestamp & google::cloud::spanner::Timestamp::operator= ( Timestamp &&  )
default

◆ operator=() [2/2]

Timestamp & google::cloud::spanner::Timestamp::operator= ( Timestamp const &  )
default

Friends And Related Function Documentation

◆ MakeTimestamp

StatusOr< Timestamp > MakeTimestamp ( absl::Time  )
friend

Construct a Timestamp from an absl::Time.

May produce out-of-range errors if the given time is beyond the range supported by Timestamp (see class comments above).

◆ operator!=

bool operator!= ( Timestamp const &  a,
Timestamp const &  b 
)
friend

◆ operator<

bool operator< ( Timestamp const &  a,
Timestamp const &  b 
)
friend

◆ operator<<

std::ostream & operator<< ( std::ostream &  os,
Timestamp  ts 
)
friend

Convert the Timestamp to the user-specified template type.

Fails if *this cannot be represented as a T.

Supported destination types are:

  • absl::Time - Since absl::Time can represent all possible Timestamp values, get<absl::Time>() never returns an error.
  • google::protobuf::Timestamp - Never returns an error, but any sub-nanosecond precision will be lost.
  • google::cloud::spanner::sys_time<Duration> - Duration::rep may not be wider than std::int64_t, and Duration::period may be no more precise than std::nano.
Example
Timestamp ts = MakeTimestamp(tp).value();
assert(tp == ts.get<sys_time<std::chrono::nanoseconds>>().value());

◆ operator<=

bool operator<= ( Timestamp const &  a,
Timestamp const &  b 
)
friend

◆ operator==

bool operator== ( Timestamp const &  a,
Timestamp const &  b 
)
friend

◆ operator>

bool operator> ( Timestamp const &  a,
Timestamp const &  b 
)
friend

◆ operator>=

bool operator>= ( Timestamp const &  a,
Timestamp const &  b 
)
friend