/* Copyright 2016 The TensorFlow Authors. All Rights Reserved. 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 "tensorflow/core/distributed_runtime/server_lib.h" #include #include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/platform/mutex.h" namespace tensorflow { namespace { mutex* get_server_factory_lock() { static mutex server_factory_lock(LINKER_INITIALIZED); return &server_factory_lock; } typedef std::unordered_map ServerFactories; ServerFactories* server_factories() { static ServerFactories* factories = new ServerFactories; return factories; } } // namespace /* static */ void ServerFactory::Register(const string& server_type, ServerFactory* factory) { mutex_lock l(*get_server_factory_lock()); if (!server_factories()->insert({server_type, factory}).second) { LOG(ERROR) << "Two server factories are being registered under " << server_type; } } /* static */ Status ServerFactory::GetFactory(const ServerDef& server_def, ServerFactory** out_factory) { mutex_lock l(*get_server_factory_lock()); // TODO(mrry): Improve the error reporting here. for (const auto& server_factory : *server_factories()) { if (server_factory.second->AcceptsOptions(server_def)) { *out_factory = server_factory.second; return Status::OK(); } } return errors::NotFound( "No server factory registered for the given ServerDef: ", server_def.DebugString()); } // Creates a server based on the given `server_def`, and stores it in // `*out_server`. Returns OK on success, otherwise returns an error. Status NewServer(const ServerDef& server_def, std::unique_ptr* out_server) { ServerFactory* factory; TF_RETURN_IF_ERROR(ServerFactory::GetFactory(server_def, &factory)); return factory->NewServer(server_def, out_server); } } // namespace tensorflow