Skip to content

Commit 3087193

Browse files
committed
Merge master
2 parents ba6d010 + c03339d commit 3087193

14 files changed

+92
-119
lines changed

BedrockCommand.h

-29
Original file line numberDiff line numberDiff line change
@@ -139,32 +139,3 @@ class BedrockCommand : public SQLiteCommand {
139139

140140
static atomic<size_t> _commandCount;
141141
};
142-
143-
#include <BedrockCommand.h>
144-
145-
class checkedUniquePtr_BedrockCommand : public unique_ptr<BedrockCommand> {
146-
public:
147-
148-
// Constructors.
149-
checkedUniquePtr_BedrockCommand(unique_ptr<BedrockCommand>&& other) {
150-
unique_ptr<BedrockCommand>::operator=(move(other));
151-
}
152-
checkedUniquePtr_BedrockCommand(BedrockCommand* other) : unique_ptr<BedrockCommand>(other) { }
153-
checkedUniquePtr_BedrockCommand(nullptr_t np) : unique_ptr<BedrockCommand>(np) {}
154-
155-
// Copy by calling parent copy assignment operator.
156-
checkedUniquePtr_BedrockCommand& operator=(unique_ptr<BedrockCommand>&& other) {
157-
unique_ptr<BedrockCommand>::operator=(move(other));
158-
return *this;
159-
}
160-
161-
BedrockCommand* operator->() const {
162-
if (get() == nullptr) {
163-
STHROW_STACK("Dereferencing null pointer");
164-
}
165-
return get();
166-
}
167-
};
168-
169-
typedef checkedUniquePtr_BedrockCommand BedrockCommandPtr;
170-

BedrockCommandQueue.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#include <BedrockCommandQueue.h>
22

3-
void BedrockCommandQueue::startTiming(BedrockCommandPtr& command) {
3+
void BedrockCommandQueue::startTiming(unique_ptr<BedrockCommand>& command) {
44
command->startTiming(BedrockCommand::QUEUE_WORKER);
55
}
66

7-
void BedrockCommandQueue::stopTiming(BedrockCommandPtr& command) {
7+
void BedrockCommandQueue::stopTiming(unique_ptr<BedrockCommand>& command) {
88
command->stopTiming(BedrockCommand::QUEUE_WORKER);
99
}
1010

1111
BedrockCommandQueue::BedrockCommandQueue() :
12-
SScheduledPriorityQueue<BedrockCommandPtr>(function<void(BedrockCommandPtr&)>(startTiming), function<void(BedrockCommandPtr&)>(stopTiming))
12+
SScheduledPriorityQueue<unique_ptr<BedrockCommand>>(function<void(unique_ptr<BedrockCommand>&)>(startTiming), function<void(unique_ptr<BedrockCommand>&)>(stopTiming))
1313
{ }
1414

1515
list<string> BedrockCommandQueue::getRequestMethodLines() {
@@ -64,9 +64,9 @@ void BedrockCommandQueue::abandonFutureCommands(int msInFuture) {
6464
}
6565
}
6666

67-
void BedrockCommandQueue::push(BedrockCommandPtr&& command) {
67+
void BedrockCommandQueue::push(unique_ptr<BedrockCommand>&& command) {
6868
BedrockCommand::Priority priority = command->priority;
6969
uint64_t executionTime = command->request.calcU64("commandExecuteTime");
7070
uint64_t timeout = command->timeout();
71-
SScheduledPriorityQueue<BedrockCommandPtr>::push(move(command), priority, executionTime, timeout);
71+
SScheduledPriorityQueue<unique_ptr<BedrockCommand>>::push(move(command), priority, executionTime, timeout);
7272
}

BedrockCommandQueue.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
#include <libstuff/SScheduledPriorityQueue.h>
44
#include "BedrockCommand.h"
55

6-
class BedrockCommandQueue : public SScheduledPriorityQueue<BedrockCommandPtr> {
6+
class BedrockCommandQueue : public SScheduledPriorityQueue<unique_ptr<BedrockCommand>> {
77
public:
88
BedrockCommandQueue();
99

1010
// Functions to start and stop timing on the commands when they're inserted/removed from the queue.
11-
static void startTiming(BedrockCommandPtr& command);
12-
static void stopTiming(BedrockCommandPtr& command);
11+
static void startTiming(unique_ptr<BedrockCommand>& command);
12+
static void stopTiming(unique_ptr<BedrockCommand>& command);
1313

1414
// Returns a list of all the method lines for all the requests currently queued. This function exists for state
1515
// reporting, and is called by BedrockServer when we receive a `Status` command.
@@ -19,5 +19,5 @@ class BedrockCommandQueue : public SScheduledPriorityQueue<BedrockCommandPtr> {
1919
void abandonFutureCommands(int msInFuture);
2020

2121
// Add an item to the queue. The queue takes ownership of the item and the caller's copy is invalidated.
22-
void push(BedrockCommandPtr&& command);
22+
void push(unique_ptr<BedrockCommand>&& command);
2323
};

BedrockCore.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class AutoScopeRewrite {
2929
bool (*_handler)(int, const char*, string&);
3030
};
3131

32-
uint64_t BedrockCore::_getRemainingTime(const BedrockCommandPtr& command) {
32+
uint64_t BedrockCore::_getRemainingTime(const unique_ptr<BedrockCommand>& command) {
3333
int64_t timeout = command->timeout();
3434
int64_t now = STimeNow();
3535

@@ -53,7 +53,7 @@ uint64_t BedrockCore::_getRemainingTime(const BedrockCommandPtr& command) {
5353
return min(processTimeout, adjustedTimeout);
5454
}
5555

56-
bool BedrockCore::isTimedOut(BedrockCommandPtr& command) {
56+
bool BedrockCore::isTimedOut(unique_ptr<BedrockCommand>& command) {
5757
try {
5858
_getRemainingTime(command);
5959
} catch (const SException& e) {
@@ -65,7 +65,7 @@ bool BedrockCore::isTimedOut(BedrockCommandPtr& command) {
6565
return false;
6666
}
6767

68-
bool BedrockCore::peekCommand(BedrockCommandPtr& command) {
68+
bool BedrockCore::peekCommand(unique_ptr<BedrockCommand>& command) {
6969
AutoTimer timer(command, BedrockCommand::PEEK);
7070
// Convenience references to commonly used properties.
7171
SData& request = command->request;
@@ -177,7 +177,7 @@ bool BedrockCore::peekCommand(BedrockCommandPtr& command) {
177177
return true;
178178
}
179179

180-
bool BedrockCore::processCommand(BedrockCommandPtr& command) {
180+
bool BedrockCore::processCommand(unique_ptr<BedrockCommand>& command) {
181181
AutoTimer timer(command, BedrockCommand::PROCESS);
182182

183183
// Convenience references to commonly used properties.
@@ -278,7 +278,7 @@ bool BedrockCore::processCommand(BedrockCommandPtr& command) {
278278
return needsCommit;
279279
}
280280

281-
void BedrockCore::_handleCommandException(BedrockCommandPtr& command, const SException& e) {
281+
void BedrockCore::_handleCommandException(unique_ptr<BedrockCommand>& command, const SException& e) {
282282
const string& msg = "Error processing command '" + command->request.methodLine + "' (" + e.what() + "), ignoring.";
283283
if (SContains(e.what(), "_ALERT_")) {
284284
SALERT(msg);

BedrockCore.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ class BedrockCore : public SQLiteCore {
1010
// Automatic timing class that records an entry corresponding to its lifespan.
1111
class AutoTimer {
1212
public:
13-
AutoTimer(BedrockCommandPtr& command, BedrockCommand::TIMING_INFO type) :
13+
AutoTimer(unique_ptr<BedrockCommand>& command, BedrockCommand::TIMING_INFO type) :
1414
_command(command), _type(type), _start(STimeNow()) { }
1515
~AutoTimer() {
1616
_command->timingInfo.emplace_back(make_tuple(_type, _start, STimeNow()));
1717
}
1818
private:
19-
BedrockCommandPtr& _command;
19+
unique_ptr<BedrockCommand>& _command;
2020
BedrockCommand::TIMING_INFO _type;
2121
uint64_t _start;
2222
};
2323

2424
// Checks if a command has already timed out. Like `peekCommand` without doing any work. Returns `true` and sets
2525
// the same command state as `peekCommand` would if the command has timed out. Returns `false` and does nothing if
2626
// the command hasn't timed out.
27-
bool isTimedOut(BedrockCommandPtr& command);
27+
bool isTimedOut(unique_ptr<BedrockCommand>& command);
2828

2929
// Peek lets you pre-process a command. It will be called on each command before `process` is called on the same
3030
// command, and it *may be called multiple times*. Preventing duplicate actions on calling peek multiple times is
@@ -33,7 +33,7 @@ class BedrockCore : public SQLiteCore {
3333
// should be considered an error to modify the DB from inside `peek`.
3434
// Returns a boolean value of `true` if the command is complete and its `response` field can be returned to the
3535
// caller. Returns `false` if the command will need to be passed to `process` to complete handling the command.
36-
bool peekCommand(BedrockCommandPtr& command);
36+
bool peekCommand(unique_ptr<BedrockCommand>& command);
3737

3838
// Process is the follow-up to `peek` if `peek` was insufficient to handle the command. It will only ever be called
3939
// on the leader node, and should always be able to resolve the command completely. When a command is passed to
@@ -45,7 +45,7 @@ class BedrockCore : public SQLiteCore {
4545
// replicate the transaction to follower nodes. Upon being returned `true`, the caller will attempt to perform a
4646
// `COMMIT` and replicate the transaction to follower nodes. It's allowable for this `COMMIT` to fail, in which case
4747
// this command *will be passed to process again in the future to retry*.
48-
bool processCommand(BedrockCommandPtr& command);
48+
bool processCommand(unique_ptr<BedrockCommand>& command);
4949

5050
private:
5151
// When called in the context of handling an exception, returns the demangled (if possible) name of the exception.
@@ -54,8 +54,8 @@ class BedrockCore : public SQLiteCore {
5454
// Gets the amount of time remaining until this command times out. This is the difference between the command's
5555
// 'timeout' value (or the default timeout, if not set) and the time the command was initially scheduled to run. If
5656
// this time is already expired, this throws `555 Timeout`
57-
uint64_t _getRemainingTime(const BedrockCommandPtr& command);
57+
uint64_t _getRemainingTime(const unique_ptr<BedrockCommand>& command);
5858

59-
void _handleCommandException(BedrockCommandPtr& command, const SException& e);
59+
void _handleCommandException(unique_ptr<BedrockCommand>& command, const SException& e);
6060
const BedrockServer& _server;
6161
};

BedrockServer.cpp

+20-20
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void BedrockServer::acceptCommand(SQLiteCommand&& command, bool isNew) {
2626
}
2727
SALERT("Blacklisting command (now have " << totalCount << " blacklisted commands): " << request.serialize());
2828
} else {
29-
BedrockCommandPtr newCommand = make_unique<BedrockCommand>(move(command));
29+
unique_ptr<BedrockCommand> newCommand = make_unique<BedrockCommand>(move(command));
3030
if (SIEquals(newCommand->request.methodLine, "BROADCAST_COMMAND")) {
3131
SData newRequest;
3232
newRequest.deserialize(newCommand->request.content);
@@ -193,7 +193,7 @@ void BedrockServer::sync(const SData& args,
193193

194194
// Now we jump into our main command processing loop.
195195
uint64_t nextActivity = STimeNow();
196-
BedrockCommandPtr command(nullptr);
196+
unique_ptr<BedrockCommand> command(nullptr);
197197
bool committingCommand = false;
198198

199199
// We hold a lock here around all operations on `syncNode`, because `SQLiteNode` isn't thread-safe, but we need
@@ -400,7 +400,7 @@ void BedrockServer::sync(const SData& args,
400400
try {
401401
while (true) {
402402
// Reset this to blank. This releases the existing command and allows it to get cleaned up.
403-
command = BedrockCommandPtr(nullptr);
403+
command = unique_ptr<BedrockCommand>(nullptr);
404404
command = syncNodeQueuedCommands.pop();
405405
if (command->initiatingClientID) {
406406
// This one came from a local client, so we can save it for later.
@@ -471,7 +471,7 @@ void BedrockServer::sync(const SData& args,
471471
// If there are any completed commands to respond to, we'll do that first.
472472
try {
473473
while (true) {
474-
BedrockCommandPtr completedCommand = server._completedCommands.pop();
474+
unique_ptr<BedrockCommand> completedCommand = server._completedCommands.pop();
475475
SAUTOPREFIX(completedCommand->request);
476476
SASSERT(completedCommand->complete);
477477
SASSERT(completedCommand->initiatingPeerID);
@@ -488,7 +488,7 @@ void BedrockServer::sync(const SData& args,
488488
}
489489

490490
// Reset this to blank. This releases the existing command and allows it to get cleaned up.
491-
command = BedrockCommandPtr(nullptr);
491+
command = unique_ptr<BedrockCommand>(nullptr);
492492

493493
// Get the next sync node command to work on.
494494
command = syncNodeQueuedCommands.pop();
@@ -684,7 +684,7 @@ void BedrockServer::worker(const SData& args,
684684
BedrockCore core(db, server);
685685

686686
// Command to work on. This default command is replaced when we find work to do.
687-
BedrockCommandPtr command(nullptr);
687+
unique_ptr<BedrockCommand> command(nullptr);
688688

689689
// Which command queue do we use? The blockingCommit thread special and does blocking commits from the blocking queue.
690690
BedrockCommandQueue& commandQueue = threadId ? server._commandQueue : server._blockingCommandQueue;
@@ -699,7 +699,7 @@ void BedrockServer::worker(const SData& args,
699699
});
700700

701701
// Reset this to blank. This releases the existing command and allows it to get cleaned up.
702-
command = BedrockCommandPtr(nullptr);
702+
command = unique_ptr<BedrockCommand>(nullptr);
703703

704704
// And get another one.
705705
command = commandQueue.get(1000000);
@@ -1061,7 +1061,7 @@ void BedrockServer::worker(const SData& args,
10611061
}
10621062
}
10631063

1064-
bool BedrockServer::_handleIfStatusOrControlCommand(BedrockCommandPtr& command) {
1064+
bool BedrockServer::_handleIfStatusOrControlCommand(unique_ptr<BedrockCommand>& command) {
10651065
if (_isStatusCommand(command)) {
10661066
_status(command);
10671067
_reply(command);
@@ -1081,7 +1081,7 @@ bool BedrockServer::_handleIfStatusOrControlCommand(BedrockCommandPtr& command)
10811081
return false;
10821082
}
10831083

1084-
bool BedrockServer::_wouldCrash(const BedrockCommandPtr& command) {
1084+
bool BedrockServer::_wouldCrash(const unique_ptr<BedrockCommand>& command) {
10851085
// Get a shared lock so that all the workers can look at this map simultaneously.
10861086
shared_lock<decltype(_crashCommandMutex)> lock(_crashCommandMutex);
10871087

@@ -1516,7 +1516,7 @@ void BedrockServer::postPoll(fd_map& fdm, uint64_t& nextActivity) {
15161516
}
15171517

15181518
// Create a command.
1519-
BedrockCommandPtr command = make_unique<BedrockCommand>(request);
1519+
unique_ptr<BedrockCommand> command = make_unique<BedrockCommand>(request);
15201520

15211521
// Get the source ip of the command.
15221522
char *ip = inet_ntoa(s->addr.sin_addr);
@@ -1622,7 +1622,7 @@ void BedrockServer::postPoll(fd_map& fdm, uint64_t& nextActivity) {
16221622
}
16231623
}
16241624

1625-
void BedrockServer::_reply(BedrockCommandPtr& command) {
1625+
void BedrockServer::_reply(unique_ptr<BedrockCommand>& command) {
16261626
SAUTOLOCK(_socketIDMutex);
16271627

16281628
// Finalize timing info even for commands we won't respond to (this makes this data available in logs).
@@ -1707,7 +1707,7 @@ void BedrockServer::suppressCommandPort(const string& reason, bool suppress, boo
17071707
}
17081708
}
17091709

1710-
bool BedrockServer::_isStatusCommand(const BedrockCommandPtr& command) {
1710+
bool BedrockServer::_isStatusCommand(const unique_ptr<BedrockCommand>& command) {
17111711
if (SIEquals(command->request.methodLine, STATUS_IS_SLAVE) ||
17121712
SIEquals(command->request.methodLine, STATUS_IS_FOLLOWER) ||
17131713
SIEquals(command->request.methodLine, STATUS_HANDLING_COMMANDS) ||
@@ -1759,7 +1759,7 @@ bool BedrockServer::isDetached() {
17591759
return _detach && _syncThreadComplete;
17601760
}
17611761

1762-
void BedrockServer::_status(BedrockCommandPtr& command) {
1762+
void BedrockServer::_status(unique_ptr<BedrockCommand>& command) {
17631763
SData& request = command->request;
17641764
SData& response = command->response;
17651765

@@ -1917,7 +1917,7 @@ void BedrockServer::_status(BedrockCommandPtr& command) {
19171917
}
19181918
}
19191919

1920-
bool BedrockServer::_isControlCommand(const BedrockCommandPtr& command) {
1920+
bool BedrockServer::_isControlCommand(const unique_ptr<BedrockCommand>& command) {
19211921
if (SIEquals(command->request.methodLine, "BeginBackup") ||
19221922
SIEquals(command->request.methodLine, "SuppressCommandPort") ||
19231923
SIEquals(command->request.methodLine, "ClearCommandPort") ||
@@ -1933,7 +1933,7 @@ bool BedrockServer::_isControlCommand(const BedrockCommandPtr& command) {
19331933
return false;
19341934
}
19351935

1936-
void BedrockServer::_control(BedrockCommandPtr& command) {
1936+
void BedrockServer::_control(unique_ptr<BedrockCommand>& command) {
19371937
SData& response = command->response;
19381938
response.methodLine = "200 OK";
19391939
if (SIEquals(command->request.methodLine, "BeginBackup")) {
@@ -2078,7 +2078,7 @@ bool BedrockServer::shouldBackup() {
20782078
return _shouldBackup;
20792079
}
20802080

2081-
SData BedrockServer::_generateCrashMessage(const BedrockCommandPtr& command) {
2081+
SData BedrockServer::_generateCrashMessage(const unique_ptr<BedrockCommand>& command) {
20822082
SData message("CRASH_COMMAND");
20832083
SData subMessage(command->request.methodLine);
20842084
for (auto& pair : command->crashIdentifyingValues) {
@@ -2106,7 +2106,7 @@ void BedrockServer::onNodeLogin(SQLiteNode::Peer* peer)
21062106
SALERT("Sending crash command " << p.first << " to node " << peer->name << " on login");
21072107
SData command(p.first);
21082108
command.nameValueMap = table;
2109-
BedrockCommandPtr cmd = make_unique<BedrockCommand>(command);
2109+
unique_ptr<BedrockCommand> cmd = make_unique<BedrockCommand>(command);
21102110
for (const auto& fields : command.nameValueMap) {
21112111
cmd->crashIdentifyingValues.insert(fields.first);
21122112
}
@@ -2118,7 +2118,7 @@ void BedrockServer::onNodeLogin(SQLiteNode::Peer* peer)
21182118
}
21192119
}
21202120

2121-
void BedrockServer::_finishPeerCommand(BedrockCommandPtr& command) {
2121+
void BedrockServer::_finishPeerCommand(unique_ptr<BedrockCommand>& command) {
21222122
// See if we're supposed to forget this command (because the follower is not listening for a response).
21232123
auto it = command->request.nameValueMap.find("Connection");
21242124
bool forget = it != command->request.nameValueMap.end() && SIEquals(it->second, "forget");
@@ -2150,7 +2150,7 @@ void BedrockServer::_acceptSockets() {
21502150
}
21512151
}
21522152

2153-
void BedrockServer::waitForHTTPS(BedrockCommandPtr&& command) {
2153+
void BedrockServer::waitForHTTPS(unique_ptr<BedrockCommand>&& command) {
21542154
lock_guard<mutex> lock(_httpsCommandMutex);
21552155

21562156
// Un-uniquify the unique_ptr. I don't love this, but it works better with the code we've already got.
@@ -2187,7 +2187,7 @@ int BedrockServer::finishWaitingForHTTPS(list<SHTTPSManager::Transaction*>& comp
21872187
// I guess it's still here! Is it done?
21882188
if (commandPtr->areHttpsRequestsComplete()) {
21892189
// If so, add it back to the main queue, erase its entry in _outstandingHTTPSCommands, and delete it.
2190-
_commandQueue.push(BedrockCommandPtr(commandPtr));
2190+
_commandQueue.push(unique_ptr<BedrockCommand>(commandPtr));
21912191
_outstandingHTTPSCommands.erase(commandPtrIt);
21922192
commandsCompleted++;
21932193
}

0 commit comments

Comments
 (0)