@@ -26,7 +26,7 @@ void BedrockServer::acceptCommand(SQLiteCommand&& command, bool isNew) {
26
26
}
27
27
SALERT (" Blacklisting command (now have " << totalCount << " blacklisted commands): " << request.serialize ());
28
28
} else {
29
- BedrockCommandPtr newCommand = make_unique<BedrockCommand>(move (command));
29
+ unique_ptr<BedrockCommand> newCommand = make_unique<BedrockCommand>(move (command));
30
30
if (SIEquals (newCommand->request .methodLine , " BROADCAST_COMMAND" )) {
31
31
SData newRequest;
32
32
newRequest.deserialize (newCommand->request .content );
@@ -193,7 +193,7 @@ void BedrockServer::sync(const SData& args,
193
193
194
194
// Now we jump into our main command processing loop.
195
195
uint64_t nextActivity = STimeNow ();
196
- BedrockCommandPtr command (nullptr );
196
+ unique_ptr<BedrockCommand> command (nullptr );
197
197
bool committingCommand = false ;
198
198
199
199
// 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,
400
400
try {
401
401
while (true ) {
402
402
// 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 );
404
404
command = syncNodeQueuedCommands.pop ();
405
405
if (command->initiatingClientID ) {
406
406
// This one came from a local client, so we can save it for later.
@@ -471,7 +471,7 @@ void BedrockServer::sync(const SData& args,
471
471
// If there are any completed commands to respond to, we'll do that first.
472
472
try {
473
473
while (true ) {
474
- BedrockCommandPtr completedCommand = server._completedCommands .pop ();
474
+ unique_ptr<BedrockCommand> completedCommand = server._completedCommands .pop ();
475
475
SAUTOPREFIX (completedCommand->request );
476
476
SASSERT (completedCommand->complete );
477
477
SASSERT (completedCommand->initiatingPeerID );
@@ -488,7 +488,7 @@ void BedrockServer::sync(const SData& args,
488
488
}
489
489
490
490
// 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 );
492
492
493
493
// Get the next sync node command to work on.
494
494
command = syncNodeQueuedCommands.pop ();
@@ -684,7 +684,7 @@ void BedrockServer::worker(const SData& args,
684
684
BedrockCore core (db, server);
685
685
686
686
// 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 );
688
688
689
689
// Which command queue do we use? The blockingCommit thread special and does blocking commits from the blocking queue.
690
690
BedrockCommandQueue& commandQueue = threadId ? server._commandQueue : server._blockingCommandQueue ;
@@ -699,7 +699,7 @@ void BedrockServer::worker(const SData& args,
699
699
});
700
700
701
701
// 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 );
703
703
704
704
// And get another one.
705
705
command = commandQueue.get (1000000 );
@@ -1061,7 +1061,7 @@ void BedrockServer::worker(const SData& args,
1061
1061
}
1062
1062
}
1063
1063
1064
- bool BedrockServer::_handleIfStatusOrControlCommand (BedrockCommandPtr & command) {
1064
+ bool BedrockServer::_handleIfStatusOrControlCommand (unique_ptr<BedrockCommand> & command) {
1065
1065
if (_isStatusCommand (command)) {
1066
1066
_status (command);
1067
1067
_reply (command);
@@ -1081,7 +1081,7 @@ bool BedrockServer::_handleIfStatusOrControlCommand(BedrockCommandPtr& command)
1081
1081
return false ;
1082
1082
}
1083
1083
1084
- bool BedrockServer::_wouldCrash (const BedrockCommandPtr & command) {
1084
+ bool BedrockServer::_wouldCrash (const unique_ptr<BedrockCommand> & command) {
1085
1085
// Get a shared lock so that all the workers can look at this map simultaneously.
1086
1086
shared_lock<decltype (_crashCommandMutex)> lock (_crashCommandMutex);
1087
1087
@@ -1516,7 +1516,7 @@ void BedrockServer::postPoll(fd_map& fdm, uint64_t& nextActivity) {
1516
1516
}
1517
1517
1518
1518
// Create a command.
1519
- BedrockCommandPtr command = make_unique<BedrockCommand>(request);
1519
+ unique_ptr<BedrockCommand> command = make_unique<BedrockCommand>(request);
1520
1520
1521
1521
// Get the source ip of the command.
1522
1522
char *ip = inet_ntoa (s->addr .sin_addr );
@@ -1622,7 +1622,7 @@ void BedrockServer::postPoll(fd_map& fdm, uint64_t& nextActivity) {
1622
1622
}
1623
1623
}
1624
1624
1625
- void BedrockServer::_reply (BedrockCommandPtr & command) {
1625
+ void BedrockServer::_reply (unique_ptr<BedrockCommand> & command) {
1626
1626
SAUTOLOCK (_socketIDMutex);
1627
1627
1628
1628
// 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
1707
1707
}
1708
1708
}
1709
1709
1710
- bool BedrockServer::_isStatusCommand (const BedrockCommandPtr & command) {
1710
+ bool BedrockServer::_isStatusCommand (const unique_ptr<BedrockCommand> & command) {
1711
1711
if (SIEquals (command->request .methodLine , STATUS_IS_SLAVE) ||
1712
1712
SIEquals (command->request .methodLine , STATUS_IS_FOLLOWER) ||
1713
1713
SIEquals (command->request .methodLine , STATUS_HANDLING_COMMANDS) ||
@@ -1759,7 +1759,7 @@ bool BedrockServer::isDetached() {
1759
1759
return _detach && _syncThreadComplete;
1760
1760
}
1761
1761
1762
- void BedrockServer::_status (BedrockCommandPtr & command) {
1762
+ void BedrockServer::_status (unique_ptr<BedrockCommand> & command) {
1763
1763
SData& request = command->request ;
1764
1764
SData& response = command->response ;
1765
1765
@@ -1917,7 +1917,7 @@ void BedrockServer::_status(BedrockCommandPtr& command) {
1917
1917
}
1918
1918
}
1919
1919
1920
- bool BedrockServer::_isControlCommand (const BedrockCommandPtr & command) {
1920
+ bool BedrockServer::_isControlCommand (const unique_ptr<BedrockCommand> & command) {
1921
1921
if (SIEquals (command->request .methodLine , " BeginBackup" ) ||
1922
1922
SIEquals (command->request .methodLine , " SuppressCommandPort" ) ||
1923
1923
SIEquals (command->request .methodLine , " ClearCommandPort" ) ||
@@ -1933,7 +1933,7 @@ bool BedrockServer::_isControlCommand(const BedrockCommandPtr& command) {
1933
1933
return false ;
1934
1934
}
1935
1935
1936
- void BedrockServer::_control (BedrockCommandPtr & command) {
1936
+ void BedrockServer::_control (unique_ptr<BedrockCommand> & command) {
1937
1937
SData& response = command->response ;
1938
1938
response.methodLine = " 200 OK" ;
1939
1939
if (SIEquals (command->request .methodLine , " BeginBackup" )) {
@@ -2078,7 +2078,7 @@ bool BedrockServer::shouldBackup() {
2078
2078
return _shouldBackup;
2079
2079
}
2080
2080
2081
- SData BedrockServer::_generateCrashMessage (const BedrockCommandPtr & command) {
2081
+ SData BedrockServer::_generateCrashMessage (const unique_ptr<BedrockCommand> & command) {
2082
2082
SData message (" CRASH_COMMAND" );
2083
2083
SData subMessage (command->request .methodLine );
2084
2084
for (auto & pair : command->crashIdentifyingValues ) {
@@ -2106,7 +2106,7 @@ void BedrockServer::onNodeLogin(SQLiteNode::Peer* peer)
2106
2106
SALERT (" Sending crash command " << p.first << " to node " << peer->name << " on login" );
2107
2107
SData command (p.first );
2108
2108
command.nameValueMap = table;
2109
- BedrockCommandPtr cmd = make_unique<BedrockCommand>(command);
2109
+ unique_ptr<BedrockCommand> cmd = make_unique<BedrockCommand>(command);
2110
2110
for (const auto & fields : command.nameValueMap ) {
2111
2111
cmd->crashIdentifyingValues .insert (fields.first );
2112
2112
}
@@ -2118,7 +2118,7 @@ void BedrockServer::onNodeLogin(SQLiteNode::Peer* peer)
2118
2118
}
2119
2119
}
2120
2120
2121
- void BedrockServer::_finishPeerCommand (BedrockCommandPtr & command) {
2121
+ void BedrockServer::_finishPeerCommand (unique_ptr<BedrockCommand> & command) {
2122
2122
// See if we're supposed to forget this command (because the follower is not listening for a response).
2123
2123
auto it = command->request .nameValueMap .find (" Connection" );
2124
2124
bool forget = it != command->request .nameValueMap .end () && SIEquals (it->second , " forget" );
@@ -2150,7 +2150,7 @@ void BedrockServer::_acceptSockets() {
2150
2150
}
2151
2151
}
2152
2152
2153
- void BedrockServer::waitForHTTPS (BedrockCommandPtr && command) {
2153
+ void BedrockServer::waitForHTTPS (unique_ptr<BedrockCommand> && command) {
2154
2154
lock_guard<mutex> lock (_httpsCommandMutex);
2155
2155
2156
2156
// 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
2187
2187
// I guess it's still here! Is it done?
2188
2188
if (commandPtr->areHttpsRequestsComplete ()) {
2189
2189
// 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));
2191
2191
_outstandingHTTPSCommands.erase (commandPtrIt);
2192
2192
commandsCompleted++;
2193
2193
}
0 commit comments