1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
|
# Copyright (C) 2014-2017 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.
require 'mongo/server/description/features'
require 'mongo/server/description/inspector'
module Mongo
class Server
# Represents a description of the server, populated by the result of the
# ismaster command.
#
# @since 2.0.0
class Description
# Constant for reading arbiter info from config.
#
# @since 2.0.0
ARBITER = 'arbiterOnly'.freeze
# Constant for reading arbiters info from config.
#
# @since 2.0.0
ARBITERS = 'arbiters'.freeze
# Constant for reading hidden info from config.
#
# @since 2.0.0
HIDDEN = 'hidden'.freeze
# Constant for reading hosts info from config.
#
# @since 2.0.0
HOSTS = 'hosts'.freeze
# Constant for the key for the message value.
#
# @since 2.0.0
MESSAGE = 'msg'.freeze
# Constant for the message that indicates a sharded cluster.
#
# @since 2.0.0
MONGOS_MESSAGE = 'isdbgrid'.freeze
# Constant for determining ghost servers.
#
# @since 2.0.0
REPLICA_SET = 'isreplicaset'.freeze
# Constant for reading max bson size info from config.
#
# @since 2.0.0
MAX_BSON_OBJECT_SIZE = 'maxBsonObjectSize'.freeze
# Constant for reading max message size info from config.
#
# @since 2.0.0
MAX_MESSAGE_BYTES = 'maxMessageSizeBytes'.freeze
# Constant for the max wire version.
#
# @since 2.0.0
MAX_WIRE_VERSION = 'maxWireVersion'.freeze
# Constant for min wire version.
#
# @since 2.0.0
MIN_WIRE_VERSION = 'minWireVersion'.freeze
# Constant for reading max write batch size.
#
# @since 2.0.0
MAX_WRITE_BATCH_SIZE = 'maxWriteBatchSize'.freeze
# Constant for the lastWrite subdocument.
#
# @since 2.4.0
LAST_WRITE = 'lastWrite'.freeze
# Constant for the lastWriteDate field in the lastWrite subdocument.
#
# @since 2.4.0
LAST_WRITE_DATE = 'lastWriteDate'.freeze
# Constant for reading the me field.
#
# @since 2.1.0
ME = 'me'.freeze
# Default max write batch size.
#
# @since 2.0.0
DEFAULT_MAX_WRITE_BATCH_SIZE = 1000.freeze
# The legacy wire protocol version.
#
# @since 2.0.0
LEGACY_WIRE_VERSION = 0.freeze
# Constant for reading passive info from config.
#
# @since 2.0.0
PASSIVE = 'passive'.freeze
# Constant for reading the passive server list.
#
# @since 2.0.0
PASSIVES = 'passives'.freeze
# Constant for reading primary info from config.
#
# @since 2.0.0
PRIMARY = 'ismaster'.freeze
# Constant for reading primary host field from config.
#
# @since 2.5.0
PRIMARY_HOST = 'primary'.freeze
# Constant for reading secondary info from config.
#
# @since 2.0.0
SECONDARY = 'secondary'.freeze
# Constant for reading replica set name info from config.
#
# @since 2.0.0
SET_NAME = 'setName'.freeze
# Constant for reading tags info from config.
#
# @since 2.0.0
TAGS = 'tags'.freeze
# Constant for reading electionId info from config.
#
# @since 2.1.0
ELECTION_ID = 'electionId'.freeze
# Constant for reading setVersion info from config.
#
# @since 2.2.2
SET_VERSION = 'setVersion'.freeze
# Constant for reading localTime info from config.
#
# @since 2.1.0
LOCAL_TIME = 'localTime'.freeze
# Constant for reading operationTime info from config.
#
# @since 2.5.0
OPERATION_TIME = 'operationTime'.freeze
# Constant for reading logicalSessionTimeoutMinutes info from config.
#
# @since 2.5.0
LOGICAL_SESSION_TIMEOUT_MINUTES = 'logicalSessionTimeoutMinutes'.freeze
# Fields to exclude when comparing two descriptions.
#
# @since 2.0.6
EXCLUDE_FOR_COMPARISON = [ LOCAL_TIME,
LAST_WRITE,
OPERATION_TIME,
Operation::CLUSTER_TIME ].freeze
# @return [ Address ] address The server's address.
attr_reader :address
# @return [ Hash ] The actual result from the ismaster command.
attr_reader :config
# @return [ Features ] features The features for the server.
attr_reader :features
# @return [ Float ] The moving average time the ismaster call took to complete.
attr_reader :average_round_trip_time
# Will return true if the server is an arbiter.
#
# @example Is the server an arbiter?
# description.arbiter?
#
# @return [ true, false ] If the server is an arbiter.
#
# @since 2.0.0
def arbiter?
!!config[ARBITER] && !replica_set_name.nil?
end
# Get a list of all arbiters in the replica set.
#
# @example Get the arbiters in the replica set.
# description.arbiters
#
# @return [ Array<String> ] The arbiters in the set.
#
# @since 2.0.0
def arbiters
@arbiters ||= (config[ARBITERS] || []).map { |s| s.downcase }
end
# Is the server a ghost in a replica set?
#
# @example Is the server a ghost?
# description.ghost?
#
# @return [ true, false ] If the server is a ghost.
#
# @since 2.0.0
def ghost?
!!config[REPLICA_SET]
end
# Will return true if the server is hidden.
#
# @example Is the server hidden?
# description.hidden?
#
# @return [ true, false ] If the server is hidden.
#
# @since 2.0.0
def hidden?
!!config[HIDDEN]
end
# Get a list of all servers in the replica set.
#
# @example Get the servers in the replica set.
# description.hosts
#
# @return [ Array<String> ] The servers in the set.
#
# @since 2.0.0
def hosts
@hosts ||= (config[HOSTS] || []).map { |s| s.downcase }
end
# Instantiate the new server description from the result of the ismaster
# command.
#
# @example Instantiate the new description.
# Description.new(address, { 'ismaster' => true }, 0.5)
#
# @param [ Address ] address The server address.
# @param [ Hash ] config The result of the ismaster command.
# @param [ Float ] average_round_trip_time The moving average time (sec) the ismaster
# call took to complete.
#
# @since 2.0.0
def initialize(address, config = {}, average_round_trip_time = 0)
@address = address
@config = config
@features = Features.new(wire_versions, me || @address.to_s)
@average_round_trip_time = average_round_trip_time
end
# Inspect the server description.
#
# @example Inspect the server description
# description.inspect
#
# @return [ String ] The inspection.
#
# @since 2.0.0
def inspect
"#<Mongo::Server:Description:0x#{object_id} config=#{config} average_round_trip_time=#{average_round_trip_time}>"
end
# Get the max BSON object size for this server version.
#
# @example Get the max BSON object size.
# description.max_bson_object_size
#
# @return [ Integer ] The maximum object size in bytes.
#
# @since 2.0.0
def max_bson_object_size
config[MAX_BSON_OBJECT_SIZE]
end
# Get the max message size for this server version.
#
# @example Get the max message size.
# description.max_message_size
#
# @return [ Integer ] The maximum message size in bytes.
#
# @since 2.0.0
def max_message_size
config[MAX_MESSAGE_BYTES]
end
# Get the maximum batch size for writes.
#
# @example Get the max batch size.
# description.max_write_batch_size
#
# @return [ Integer ] The max batch size.
#
# @since 2.0.0
def max_write_batch_size
config[MAX_WRITE_BATCH_SIZE] || DEFAULT_MAX_WRITE_BATCH_SIZE
end
# Get the maximum wire version.
#
# @example Get the max wire version.
# description.max_wire_version
#
# @return [ Integer ] The max wire version supported.
#
# @since 2.0.0
def max_wire_version
config[MAX_WIRE_VERSION] || LEGACY_WIRE_VERSION
end
# Get the minimum wire version.
#
# @example Get the min wire version.
# description.min_wire_version
#
# @return [ Integer ] The min wire version supported.
#
# @since 2.0.0
def min_wire_version
config[MIN_WIRE_VERSION] || LEGACY_WIRE_VERSION
end
# Get the me field value.
#
# @example Get the me field value.
# description.me
#
# @return [ String ] The me field.
#
# @since 2.1.0
def me
config[ME]
end
# Get the tags configured for the server.
#
# @example Get the tags.
# description.tags
#
# @return [ Hash ] The tags of the server.
#
# @since 2.0.0
def tags
config[TAGS] || {}
end
# Get the electionId from the config.
#
# @example Get the electionId.
# description.election_id
#
# @return [ BSON::ObjectId ] The election id.
#
# @since 2.1.0
def election_id
config[ELECTION_ID]
end
# Get the setVersion from the config.
#
# @example Get the setVersion.
# description.set_version
#
# @return [ Integer ] The set version.
#
# @since 2.2.2
def set_version
config[SET_VERSION]
end
# Get the lastWriteDate from the lastWrite subdocument in the config.
#
# @example Get the lastWriteDate value.
# description.last_write_date
#
# @return [ Time ] The last write date.
#
# @since 2.4.0
def last_write_date
config[LAST_WRITE][LAST_WRITE_DATE] if config[LAST_WRITE]
end
# Get the logicalSessionTimeoutMinutes from the config.
#
# @example Get the logicalSessionTimeoutMinutes value in minutes.
# description.logical_session_timeout
#
# @return [ Integer, nil ] The logical session timeout in minutes.
#
# @since 2.5.0
def logical_session_timeout
config[LOGICAL_SESSION_TIMEOUT_MINUTES] if config[LOGICAL_SESSION_TIMEOUT_MINUTES]
end
# Is the server a mongos?
#
# @example Is the server a mongos?
# description.mongos?
#
# @return [ true, false ] If the server is a mongos.
#
# @since 2.0.0
def mongos?
config[MESSAGE] == MONGOS_MESSAGE
end
# Is the description of type other.
#
# @example Is the description of type other.
# description.other?
#
# @return [ true, false ] If the description is other.
#
# @since 2.0.0
def other?
(!primary? && !secondary? && !passive? && !arbiter?) ||
(hidden? && !replica_set_name.nil?)
end
# Will return true if the server is passive.
#
# @example Is the server passive?
# description.passive?
#
# @return [ true, false ] If the server is passive.
#
# @since 2.0.0
def passive?
!!config[PASSIVE]
end
# Get a list of the passive servers in the cluster.
#
# @example Get the passives.
# description.passives
#
# @return [ Array<String> ] The list of passives.
#
# @since 2.0.0
def passives
@passives ||= (config[PASSIVES] || []).map { |s| s.downcase }
end
# Will return true if the server is a primary.
#
# @example Is the server a primary?
# description.primary?
#
# @return [ true, false ] If the server is a primary.
#
# @since 2.0.0
def primary?
!!config[PRIMARY] &&
(config[PRIMARY_HOST].nil? || config[PRIMARY_HOST] == address.to_s) &&
!replica_set_name.nil?
end
# Get the name of the replica set the server belongs to, returns nil if
# none.
#
# @example Get the replica set name.
# description.replica_set_name
#
# @return [ String, nil ] The name of the replica set.
#
# @since 2.0.0
def replica_set_name
config[SET_NAME]
end
# Get a list of all servers known to the cluster.
#
# @example Get all servers.
# description.servers
#
# @return [ Array<String> ] The list of all servers.
#
# @since 2.0.0
def servers
hosts + arbiters + passives
end
# Will return true if the server is a secondary.
#
# @example Is the server a secondary?
# description.secondary?
#
# @return [ true, false ] If the server is a secondary.
#
# @since 2.0.0
def secondary?
!!config[SECONDARY] && !replica_set_name.nil?
end
# Returns the server type as a symbol.
#
# @example Get the server type.
# description.server_type
#
# @return [ Symbol ] The server type.
#
# @since 2.4.0
def server_type
return :arbiter if arbiter?
return :ghost if ghost?
return :sharded if mongos?
return :primary if primary?
return :secondary if secondary?
return :standalone if standalone?
:unknown
end
# Is this server a standalone server?
#
# @example Is the server standalone?
# description.standalone?
#
# @return [ true, false ] If the server is standalone.
#
# @since 2.0.0
def standalone?
replica_set_name.nil? && !mongos? && !ghost? && !unknown?
end
# Is the server description currently unknown?
#
# @example Is the server description unknown?
# description.unknown?
#
# @return [ true, false ] If the server description is unknown.
#
# @since 2.0.0
def unknown?
config.empty? || (config[Operation::Result::OK] &&
config[Operation::Result::OK] != 1)
end
# A result from another server's ismaster command before this server has
# refreshed causes the need for this description to become unknown before
# the next refresh.
#
# @example Force an unknown state.
# description.unknown!
#
# @return [ true ] Always true.
#
# @since 2.0.0
def unknown!
@config = {} and true
end
# Get the range of supported wire versions for the server.
#
# @example Get the wire version range.
# description.wire_versions
#
# @return [ Range ] The wire version range.
#
# @since 2.0.0
def wire_versions
min_wire_version..max_wire_version
end
# Is this description from the given server.
#
# @example Check if the description is from a given server.
# description.is_server?(server)
#
# @return [ true, false ] If the description is from the server.
#
# @since 2.0.6
def is_server?(server)
address == server.address
end
# Is a server included in this description's list of servers.
#
# @example Check if a server is in the description list of servers.
# description.lists_server?(server)
#
# @return [ true, false ] If a server is in the description's list
# of servers.
#
# @since 2.0.6
def lists_server?(server)
servers.include?(server.address.to_s)
end
# Does this description correspond to a replica set member.
#
# @example Check if the description is from a replica set member.
# description.replica_set_member?
#
# @return [ true, false ] If the description is from a replica set
# member.
#
# @since 2.0.6
def replica_set_member?
!(standalone? || mongos?)
end
# Check if there is a mismatch between the address host and the me field.
#
# @example Check if there is a mismatch.
# description.me_mismatch?
#
# @return [ true, false ] If there is a mismatch between the me field and the address host.
#
# @since 2.0.6
def me_mismatch?
!!(address.to_s != me if me)
end
# Check equality of two descriptions.
#
# @example Check description equality.
# description == other
#
# @param [ Object ] other The other description.
#
# @return [ true, false ] Whether the objects are equal.
#
# @since 2.0.6
def ==(other)
return false if self.class != other.class
return false if unknown? || other.unknown?
compare_config(other)
end
alias_method :eql?, :==
private
def compare_config(other)
config.keys.all? do |k|
config[k] == other.config[k] || EXCLUDE_FOR_COMPARISON.include?(k)
end
end
end
end
end
|