-
Notifications
You must be signed in to change notification settings - Fork 153
Adding Timestamp class #220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
f9a03ef
Adding Timestamp class
schmidt-sebastian 006bde7
Merge branch 'master' into timestamps
schmidt-sebastian fa5c112
Adding no-console
schmidt-sebastian e3d913e
Addressing feedback
schmidt-sebastian 3c583c4
Merge branch 'master' into timestamps
schmidt-sebastian f991e97
Merge branch 'master' into timestamps
schmidt-sebastian 1e19341
Adding examples
schmidt-sebastian b7e722c
Updating SystemTests
schmidt-sebastian c5e5d18
Merge branch 'timestamps' of https://github.com/googleapis/nodejs-fir…
schmidt-sebastian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
/*! | ||
* Copyright 2018 Google Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const is = require('is'); | ||
const validate = require('./validate')(); | ||
|
||
/*! | ||
* Number of nanoseconds in a millisecond. | ||
* | ||
* @type {number} | ||
*/ | ||
const MS_TO_NANOS = 1000000; | ||
|
||
/** | ||
* A Timestamp represents a point in time independent of any time zone or | ||
* calendar, represented as seconds and fractions of seconds at nanosecond | ||
* resolution in UTC Epoch time. It is encoded using the Proleptic Gregorian | ||
* Calendar which extends the Gregorian calendar backwards to year one. It is | ||
* encoded assuming all minutes are 60 seconds long, i.e. leap seconds are | ||
* "smeared" so that no leap second table is needed for interpretation. Range is | ||
* from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. | ||
* | ||
* @see https://github.com/google/protobuf/blob/master/src/google/protobuf/timestamp.proto | ||
*/ | ||
class Timestamp { | ||
/** | ||
* Creates a new timestamp with the current date, with millisecond precision. | ||
* | ||
* @example | ||
* let documentRef = firestore.doc('col/doc'); | ||
* | ||
* documentRef.set({ updateTime:Firestore.Timestamp.now() }); | ||
* | ||
* @return {Timestamp} A new `Timestamp` representing the current date. | ||
*/ | ||
static now() { | ||
return Timestamp.fromMillis(Date.now()); | ||
} | ||
|
||
/** | ||
* Creates a new timestamp from the given date. | ||
* | ||
* @example | ||
* let documentRef = firestore.doc('col/doc'); | ||
* | ||
* let date = Date.parse('01 Jan 2000 00:00:00 GMT'); | ||
* documentRef.set({ startTime:Firestore.Timestamp.fromDate(date) }); | ||
* | ||
* @param {Date} date The date to initialize the `Timestamp` from. | ||
* @return {Timestamp} A new `Timestamp` representing the same point in time | ||
* as the given date. | ||
*/ | ||
static fromDate(date) { | ||
return Timestamp.fromMillis(date.getTime()); | ||
} | ||
|
||
/** | ||
* Creates a new timestamp from the given number of milliseconds. | ||
* | ||
* @example | ||
* let documentRef = firestore.doc('col/doc'); | ||
* | ||
* documentRef.set({ startTime:Firestore.Timestamp.fromMillis(42) }); | ||
* | ||
* @param {number} milliseconds Number of milliseconds since Unix epoch | ||
* 1970-01-01T00:00:00Z. | ||
* @return {Timestamp} A new `Timestamp` representing the same point in time | ||
* as the given number of milliseconds. | ||
*/ | ||
static fromMillis(milliseconds) { | ||
const seconds = Math.floor(milliseconds / 1000); | ||
const nanos = (milliseconds - seconds * 1000) * MS_TO_NANOS; | ||
return new Timestamp(seconds, nanos); | ||
} | ||
|
||
/** | ||
* Creates a new timestamp. | ||
* | ||
* @example | ||
* let documentRef = firestore.doc('col/doc'); | ||
* | ||
* documentRef.set({ startTime:new Firestore.Timestamp(42, 0) }); | ||
* | ||
* @param {number} seconds The number of seconds of UTC time since Unix epoch | ||
* 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to | ||
* 9999-12-31T23:59:59Z inclusive. | ||
* @param {number} nanoseconds The non-negative fractions of a second at | ||
* nanosecond resolution. Negative second values with fractions must still | ||
* have non-negative nanoseconds values that count forward in time. Must be | ||
* from 0 to 999,999,999 inclusive. | ||
*/ | ||
constructor(seconds, nanoseconds) { | ||
validate.isInteger('seconds', seconds); | ||
validate.isInteger('nanoseconds', nanoseconds, 0, 999999999); | ||
|
||
this._seconds = seconds; | ||
this._nanoseconds = nanoseconds; | ||
} | ||
|
||
/** | ||
* The number of seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. | ||
* | ||
* @example | ||
* let documentRef = firestore.doc('col/doc'); | ||
* | ||
* documentRef.get().then(snap => { | ||
* let updatedAt = snap.updateTime; | ||
* console.log(`Updated at ${updated.seconds}s ${updated.nanoseconds}ns`); | ||
* }); | ||
* | ||
* @type {number} | ||
*/ | ||
get seconds() { | ||
return this._seconds; | ||
} | ||
|
||
/** | ||
* The non-negative fractions of a second at nanosecond resolution. | ||
* | ||
* @example | ||
* let documentRef = firestore.doc('col/doc'); | ||
* | ||
* documentRef.get().then(snap => { | ||
* let updated = snap.updateTime; | ||
* console.log(`Updated at ${updated.seconds}s ${updated.nanoseconds}ns`); | ||
* }); | ||
* | ||
* @type {number} | ||
*/ | ||
get nanoseconds() { | ||
return this._nanoseconds; | ||
} | ||
|
||
/** | ||
* Returns a new `Date` corresponding to this timestamp. This may lose | ||
* precision. | ||
* | ||
* @example | ||
* let documentRef = firestore.doc('col/doc'); | ||
* | ||
* documentRef.get().then(snap => { | ||
* console.log(`Document updated at: ${snap.updateTime.toDate()}`); | ||
* }); | ||
* | ||
* @return {Date} JavaScript `Date` object representing the same point in time | ||
* as this `Timestamp`, with millisecond precision. | ||
*/ | ||
toDate() { | ||
return new Date( | ||
this._seconds * 1000 + Math.round(this._nanoseconds / MS_TO_NANOS) | ||
); | ||
} | ||
|
||
/** | ||
* Returns the number of milliseconds since Unix epoch 1970-01-01T00:00:00Z. | ||
* | ||
* @example | ||
* let documentRef = firestore.doc('col/doc'); | ||
* | ||
* documentRef.get().then(snap => { | ||
* let startTime = snap.get('startTime'); | ||
* let endTime = snap.get('endTime'); | ||
* console.log(`Duration: ${endTime - startTime}`); | ||
* }); | ||
* | ||
* @return {number} The point in time corresponding to this timestamp, | ||
* represented as the number of milliseconds since Unix epoch | ||
* 1970-01-01T00:00:00Z. | ||
*/ | ||
toMillis() { | ||
return this._seconds * 1000 + Math.floor(this._nanoseconds / MS_TO_NANOS); | ||
} | ||
|
||
/** | ||
* Returns 'true' if this `Timestamp` is equal to the provided one. | ||
* | ||
* @example | ||
* let documentRef = firestore.doc('col/doc'); | ||
* | ||
* documentRef.get().then(snap => { | ||
* if (snap.createTime.isEqual(snap.updateTime)) { | ||
* console.log('Document is in its initial state.'); | ||
* } | ||
* }); | ||
* | ||
* @param {any} other The `Timestamp` to compare against. | ||
* @return {boolean} 'true' if this `Timestamp` is equal to the provided one. | ||
*/ | ||
isEqual(other) { | ||
return ( | ||
this === other || | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
(is.instanceof(other, Timestamp) && | ||
this._seconds === other.seconds && | ||
this._nanoseconds === other.nanoseconds) | ||
); | ||
} | ||
} | ||
|
||
module.exports = Timestamp; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.