# Copyright (C) 2014-2015 MongoDB, 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. module Mongo class Cluster module Topology # Defines behaviour for when a cluster is in single topology. # # @since 2.0.0 class Single # @return [ String ] seed The seed address. attr_reader :seed # The display name for the topology. # # @since 2.0.0 NAME = 'Single'.freeze # Get the display name. # # @example Get the display name. # Single.display_name # # @return [ String ] The display name. # # @since 2.0.0 def display_name NAME end # Elect a primary server within this topology. # # @example Elect a primary server. # topology.elect_primary(description, servers) # # @param [ Server::Description ] description The description of the # elected primary. # @param [ Array ] servers The list of known servers to the # cluster. # # @return [ Single ] The topology. def elect_primary(description, servers); self; end # Initialize the topology with the options. # # @example Initialize the topology. # Single.new(options) # # @param [ Hash ] options The options. # # @since 2.0.0 def initialize(options, seeds = []) @options = options @seed = seeds.first end # A single topology is not a replica set. # # @example Is the topology a replica set? # Single.replica_set? # # @return [ false ] Always false. # # @since 2.0.0 def replica_set?; false; end # Single topologies have no replica set name. # # @example Get the replica set name. # single.replica_set_name # # @return [ nil ] Always nil. # # @since 2.0.0 def replica_set_name; nil; end # Select appropriate servers for this topology. # # @example Select the servers. # Single.servers(servers, 'test') # # @param [ Array ] servers The known servers. # # @return [ Array ] The single servers. # # @since 2.0.0 def servers(servers, name = nil) [ servers.detect { |server| !server.unknown? } ] end # A single topology is not sharded. # # @example Is the topology sharded? # Single.sharded? # # @return [ false ] Always false. # # @since 2.0.0 def sharded?; false; end # A single topology is single. # # @example Is the topology single? # Single.single? # # @return [ true ] Always true. # # @since 2.0.0 def single?; true; end # An single topology is not unknown. # # @example Is the topology unknown? # Single.unknown? # # @return [ false ] Always false. # # @since 2.0.0 def unknown?; false; end end end end end