summaryrefslogtreecommitdiff
path: root/src/mongo/db/server_options_helpers.h
diff options
context:
space:
mode:
authorShaun Verch <shaun.verch@10gen.com>2013-10-31 18:35:31 -0400
committerShaun Verch <shaun.verch@10gen.com>2013-11-04 17:25:41 -0500
commit44680ab9835615856f144e9f027d91ef5b16682d (patch)
treeca51d4b316596d546d705cab17a1c7ef4d4f833f /src/mongo/db/server_options_helpers.h
parent607c5a8364dcc14f6b775622f391240f66d7a8e5 (diff)
downloadmongo-44680ab9835615856f144e9f027d91ef5b16682d.tar.gz
SERVER-11538: Create library for socket code and fix dependencies of libserver_options.a
Diffstat (limited to 'src/mongo/db/server_options_helpers.h')
-rw-r--r--src/mongo/db/server_options_helpers.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/mongo/db/server_options_helpers.h b/src/mongo/db/server_options_helpers.h
new file mode 100644
index 00000000000..85d09de0e32
--- /dev/null
+++ b/src/mongo/db/server_options_helpers.h
@@ -0,0 +1,59 @@
+/*
+ * Copyright (C) 2013 10gen Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * 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
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * 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 GNU Affero General 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.
+ */
+
+#pragma once
+
+#include "mongo/base/status.h"
+#include "mongo/util/options_parser/environment.h"
+#include "mongo/util/options_parser/option_section.h"
+
+namespace mongo {
+
+ namespace optionenvironment {
+ class OptionSection;
+ class Environment;
+ } // namespace optionenvironment
+
+ namespace moe = mongo::optionenvironment;
+
+ Status addGeneralServerOptions(moe::OptionSection* options);
+
+ Status addWindowsServerOptions(moe::OptionSection* options);
+
+ Status addSSLServerOptions(moe::OptionSection* options);
+
+ Status storeServerOptions(const moe::Environment& params,
+ const std::vector<std::string>& args);
+
+ void printCommandLineOpts();
+
+ // This function should eventually go away, but needs to be here now because we have a lot of
+ // code that is shared between mongod and mongos that must know at runtime which binary it is in
+ bool isMongos();
+
+} // namespace mongo