-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
port Firestore SnapshotVersion in C++ (#767)
* implement SnapshotVersion and test
- Loading branch information
Showing
6 changed files
with
171 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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
34 changes: 34 additions & 0 deletions
34
Firestore/core/src/firebase/firestore/model/snapshot_version.cc
This file contains 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,34 @@ | ||
/* | ||
* Copyright 2018 Google | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include "Firestore/core/src/firebase/firestore/model/snapshot_version.h" | ||
|
||
namespace firebase { | ||
namespace firestore { | ||
namespace model { | ||
|
||
SnapshotVersion::SnapshotVersion(const Timestamp& timestamp) | ||
: timestamp_(timestamp) { | ||
} | ||
|
||
const SnapshotVersion& SnapshotVersion::None() { | ||
static const SnapshotVersion kNone(Timestamp{}); | ||
return kNone; | ||
} | ||
|
||
} // namespace model | ||
} // namespace firestore | ||
} // namespace firebase |
74 changes: 74 additions & 0 deletions
74
Firestore/core/src/firebase/firestore/model/snapshot_version.h
This file contains 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,74 @@ | ||
/* | ||
* Copyright 2018 Google | ||
* | ||
* 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. | ||
*/ | ||
|
||
#ifndef FIRESTORE_CORE_SRC_FIREBASE_FIRESTORE_MODEL_SNAPSHOT_VERSION_H_ | ||
#define FIRESTORE_CORE_SRC_FIREBASE_FIRESTORE_MODEL_SNAPSHOT_VERSION_H_ | ||
|
||
#include "Firestore/core/src/firebase/firestore/model/timestamp.h" | ||
|
||
namespace firebase { | ||
namespace firestore { | ||
namespace model { | ||
|
||
/** | ||
* A version of a document in Firestore. This corresponds to the version | ||
* timestamp, such as update_time or read_time. | ||
*/ | ||
class SnapshotVersion { | ||
public: | ||
explicit SnapshotVersion(const Timestamp& timestamp); | ||
|
||
const Timestamp& timestamp() const { | ||
return timestamp_; | ||
} | ||
|
||
/** Creates a new version that is smaller than all other versions. */ | ||
static const SnapshotVersion& None(); | ||
|
||
private: | ||
Timestamp timestamp_; | ||
}; | ||
|
||
/** Compares against another SnapshotVersion. */ | ||
inline bool operator<(const SnapshotVersion& lhs, const SnapshotVersion& rhs) { | ||
return lhs.timestamp() < rhs.timestamp(); | ||
} | ||
|
||
inline bool operator>(const SnapshotVersion& lhs, const SnapshotVersion& rhs) { | ||
return lhs.timestamp() > rhs.timestamp(); | ||
} | ||
|
||
inline bool operator>=(const SnapshotVersion& lhs, const SnapshotVersion& rhs) { | ||
return lhs.timestamp() >= rhs.timestamp(); | ||
} | ||
|
||
inline bool operator<=(const SnapshotVersion& lhs, const SnapshotVersion& rhs) { | ||
return lhs.timestamp() <= rhs.timestamp(); | ||
} | ||
|
||
inline bool operator!=(const SnapshotVersion& lhs, const SnapshotVersion& rhs) { | ||
return lhs.timestamp() != rhs.timestamp(); | ||
} | ||
|
||
inline bool operator==(const SnapshotVersion& lhs, const SnapshotVersion& rhs) { | ||
return lhs.timestamp() == rhs.timestamp(); | ||
} | ||
|
||
} // namespace model | ||
} // namespace firestore | ||
} // namespace firebase | ||
|
||
#endif // FIRESTORE_CORE_SRC_FIREBASE_FIRESTORE_MODEL_SNAPSHOT_VERSION_H_ |
This file contains 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
56 changes: 56 additions & 0 deletions
56
Firestore/core/test/firebase/firestore/model/snapshot_version_test.cc
This file contains 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,56 @@ | ||
/* | ||
* Copyright 2018 Google | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include "Firestore/core/src/firebase/firestore/model/snapshot_version.h" | ||
|
||
#include "gtest/gtest.h" | ||
|
||
namespace firebase { | ||
namespace firestore { | ||
namespace model { | ||
|
||
TEST(SnapshotVersion, Getter) { | ||
SnapshotVersion version(Timestamp(123, 456)); | ||
EXPECT_EQ(Timestamp(123, 456), version.timestamp()); | ||
|
||
const SnapshotVersion& no_version = SnapshotVersion::None(); | ||
EXPECT_EQ(Timestamp(), no_version.timestamp()); | ||
} | ||
|
||
TEST(SnapshotVersion, Comparison) { | ||
EXPECT_LT(SnapshotVersion::None(), SnapshotVersion(Timestamp(123, 456))); | ||
|
||
EXPECT_LT(SnapshotVersion(Timestamp(123, 456)), | ||
SnapshotVersion(Timestamp(456, 123))); | ||
EXPECT_GT(SnapshotVersion(Timestamp(456, 123)), | ||
SnapshotVersion(Timestamp(123, 456))); | ||
EXPECT_LE(SnapshotVersion(Timestamp(123, 456)), | ||
SnapshotVersion(Timestamp(456, 123))); | ||
EXPECT_LE(SnapshotVersion(Timestamp(123, 456)), | ||
SnapshotVersion(Timestamp(123, 456))); | ||
EXPECT_GE(SnapshotVersion(Timestamp(456, 123)), | ||
SnapshotVersion(Timestamp(123, 456))); | ||
EXPECT_GE(SnapshotVersion(Timestamp(123, 456)), | ||
SnapshotVersion(Timestamp(123, 456))); | ||
EXPECT_EQ(SnapshotVersion(Timestamp(123, 456)), | ||
SnapshotVersion(Timestamp(123, 456))); | ||
EXPECT_NE(SnapshotVersion(Timestamp(123, 456)), | ||
SnapshotVersion(Timestamp(456, 123))); | ||
} | ||
|
||
} // namespace model | ||
} // namespace firestore | ||
} // namespace firebase |