summaryrefslogtreecommitdiff
path: root/src/mongo/db/vector_clock_mutable.cpp
diff options
context:
space:
mode:
authorKevin Pulo <kevin.pulo@mongodb.com>2020-04-16 14:45:53 +1000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-05-12 13:08:08 +0000
commit94ff51257a099ee6af4a9c41ee61245918227760 (patch)
tree5d5f880fb4708cb65abf9e369f0f022aa6d6d0c4 /src/mongo/db/vector_clock_mutable.cpp
parent14bb6a661fc7a8b693613203693b8232c6f91944 (diff)
downloadmongo-94ff51257a099ee6af4a9c41ee61245918227760.tar.gz
SERVER-46200 implement basic VectorClock service
Diffstat (limited to 'src/mongo/db/vector_clock_mutable.cpp')
-rw-r--r--src/mongo/db/vector_clock_mutable.cpp130
1 files changed, 130 insertions, 0 deletions
diff --git a/src/mongo/db/vector_clock_mutable.cpp b/src/mongo/db/vector_clock_mutable.cpp
new file mode 100644
index 00000000000..6e18fbd028a
--- /dev/null
+++ b/src/mongo/db/vector_clock_mutable.cpp
@@ -0,0 +1,130 @@
+/**
+ * Copyright (C) 2020-present MongoDB, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the Server Side Public License, version 1,
+ * as published by MongoDB, Inc.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * Server Side Public License for more details.
+ *
+ * You should have received a copy of the Server Side Public License
+ * along with this program. If not, see
+ * <http://www.mongodb.com/licensing/server-side-public-license>.
+ *
+ * As a special exception, the copyright holders give permission to link the
+ * code of portions of this program with the OpenSSL library under certain
+ * conditions as described in each individual source file and distribute
+ * linked combinations including the program with the OpenSSL library. You
+ * must comply with the Server Side Public License in all respects for
+ * all of the code used other than as permitted herein. If you modify file(s)
+ * with this exception, you may extend this exception to your version of the
+ * file(s), but you are not obligated to do so. If you do not wish to do so,
+ * delete this exception statement from your version. If you delete this
+ * exception statement from all source files in the program, then also delete
+ * it in the license file.
+ */
+
+#define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kDefault
+
+#include <limits>
+
+#include "mongo/platform/basic.h"
+
+#include "mongo/db/vector_clock_mutable.h"
+
+#include "mongo/logv2/log.h"
+
+namespace mongo {
+
+namespace {
+
+const auto vectorClockMutableDecoration = ServiceContext::declareDecoration<VectorClockMutable*>();
+
+} // namespace
+
+VectorClockMutable* VectorClockMutable::get(ServiceContext* service) {
+ return vectorClockMutableDecoration(service);
+}
+
+VectorClockMutable* VectorClockMutable::get(OperationContext* ctx) {
+ return get(ctx->getClient()->getServiceContext());
+}
+
+VectorClockMutable::VectorClockMutable() = default;
+
+VectorClockMutable::~VectorClockMutable() = default;
+
+void VectorClockMutable::registerVectorClockOnServiceContext(
+ ServiceContext* service, VectorClockMutable* vectorClockMutable) {
+ VectorClock::registerVectorClockOnServiceContext(service, vectorClockMutable);
+ auto& clock = vectorClockMutableDecoration(service);
+ invariant(!clock);
+ clock = std::move(vectorClockMutable);
+}
+
+bool VectorClockMutable::_lessThanOrEqualToMaxPossibleTime(LogicalTime time, uint64_t nTicks) {
+ return time.asTimestamp().getSecs() <= std::numeric_limits<uint32_t>::max() &&
+ time.asTimestamp().getInc() <= (std::numeric_limits<uint32_t>::max() - nTicks);
+}
+
+LogicalTime VectorClockMutable::_advanceComponentTimeByTicks(Component component, uint64_t nTicks) {
+ invariant(nTicks > 0 && nTicks <= std::numeric_limits<uint32_t>::max());
+
+ stdx::lock_guard<Latch> lock(_mutex);
+
+ LogicalTime time = _vectorTime[component];
+
+ const unsigned wallClockSecs =
+ durationCount<Seconds>(_service->getFastClockSource()->now().toDurationSinceEpoch());
+ unsigned timeSecs = time.asTimestamp().getSecs();
+
+ // Synchronize time with wall clock time, if time was behind in seconds.
+ if (timeSecs < wallClockSecs) {
+ time = LogicalTime(Timestamp(wallClockSecs, 0));
+ }
+ // If reserving 'nTicks' would force the time's increment field to exceed (2^31-1),
+ // overflow by moving to the next second. We use the signed integer maximum as an overflow point
+ // in order to preserve compatibility with potentially signed or unsigned integral Timestamp
+ // increment types. It is also unlikely to tick a clock by more than 2^31 in the span of one
+ // second.
+ else if (time.asTimestamp().getInc() > (std::numeric_limits<uint32_t>::max() - nTicks)) {
+
+ // TODO SERVER-47914: update this log id back to 20709.
+ LOGV2(4620000 /*20709*/,
+ "Exceeded maximum allowable increment value within one second. Moving time forward "
+ "to the next second.",
+ "vectorClockComponent"_attr = _componentName(component));
+
+ // Move time forward to the next second
+ time = LogicalTime(Timestamp(time.asTimestamp().getSecs() + 1, 0));
+ }
+
+ // TODO SERVER-47914: update this uassert id back to 40482.
+ uassert(4620001 /*40482*/,
+ str::stream() << _componentName(component)
+ << " cannot be advanced beyond the maximum cluster time value",
+ _lessThanOrEqualToMaxPossibleTime(time, nTicks));
+
+ // Save the next time.
+ time.addTicks(1);
+ _vectorTime[component] = time;
+
+ // Add the rest of the requested ticks if needed.
+ if (nTicks > 1) {
+ _vectorTime[component].addTicks(nTicks - 1);
+ }
+
+ return time;
+}
+
+void VectorClockMutable::_advanceComponentTimeTo(Component component, LogicalTime&& newTime) {
+ stdx::lock_guard<Latch> lock(_mutex);
+ if (newTime > _vectorTime[component]) {
+ _vectorTime[component] = std::move(newTime);
+ }
+}
+
+} // namespace mongo