summaryrefslogtreecommitdiff
path: root/src/mongo/client/init.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/client/init.cpp')
-rw-r--r--src/mongo/client/init.cpp66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/mongo/client/init.cpp b/src/mongo/client/init.cpp
new file mode 100644
index 00000000000..ffdd3d5797c
--- /dev/null
+++ b/src/mongo/client/init.cpp
@@ -0,0 +1,66 @@
+/* Copyright 2013 10gen Inc.
+ *
+ * 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 "mongo/platform/basic.h"
+
+#include "mongo/client/init.h"
+
+#include <cstdlib>
+
+#include "mongo/base/initializer.h"
+#include "mongo/client/connpool.h"
+#include "mongo/client/replica_set_monitor.h"
+#include "mongo/util/background.h"
+
+namespace mongo {
+namespace client {
+
+ namespace {
+ void callShutdownAtExit() {
+ // We can't really do anything of value if this returns a non-OK status.
+ mongo::client::shutdown(kDefaultShutdownGracePeriodMillis);
+ }
+ } // namespace
+
+ Status initialize(bool atexit) {
+
+ if (atexit) {
+ if (std::atexit(&callShutdownAtExit) != 0) {
+ return Status(
+ ErrorCodes::InternalError,
+ "Failed setting client driver atexit shutdown handler");
+ }
+ }
+
+ Status result = runGlobalInitializers(0, NULL, NULL);
+ if (!result.isOK())
+ return result;
+
+ // Setup default pool parameters
+ mongo::pool.setName("connection pool");
+ mongo::pool.setMaxPoolSize(50);
+
+ PeriodicTask::startRunningPeriodicTasks();
+
+ return Status::OK();
+ }
+
+ Status shutdown(int gracePeriodMillis) {
+ ReplicaSetMonitor::cleanup();
+ return PeriodicTask::stopRunningPeriodicTasks(gracePeriodMillis);
+ }
+
+} // namespace client
+} // namespace mongo