Server IP : 104.21.38.3 / Your IP : 172.71.124.153 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/rapid/plugin/group_replication/src/ |
Upload File : |
/* Copyright (c) 2015, 2023, Oracle and/or its affiliates. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have included with MySQL. 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 General Public License, version 2.0, for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA */ #include "compatibility_module.h" Compatibility_module::Compatibility_module() : local_version(NULL) {} Compatibility_module::Compatibility_module(Member_version &local_version) { this->local_version= new Member_version(local_version.get_version()); } Member_version& Compatibility_module::get_local_version() { return *this->local_version; } void Compatibility_module::set_local_version(Member_version &local_version) { delete this->local_version; this->local_version= new Member_version(local_version.get_version()); } void Compatibility_module::add_incompatibility(Member_version &from, Member_version &to) { this->incompatibilities. insert(std::make_pair(from.get_version(), std::make_pair(to.get_version(), to.get_version()))); } void Compatibility_module::add_incompatibility(Member_version &from, Member_version &to_min, Member_version &to_max) { assert(to_min.get_version() <= to_max.get_version()); this->incompatibilities. insert(std::make_pair(from.get_version(), std::make_pair(to_min.get_version(), to_max.get_version()))); } Compatibility_type Compatibility_module::check_local_incompatibility(Member_version &to, bool is_lowest_version) { return check_incompatibility(get_local_version(), to, is_lowest_version); } bool Compatibility_module::check_version_range_incompatibility(Member_version &from, unsigned int to_min, unsigned int to_max) { unsigned int to_max_major_version= to_max >> 16; unsigned int to_min_major_version= to_min >> 16; // if it is outside the range of the major version if (from.get_major_version() > to_max_major_version || from.get_major_version() < to_min_major_version) return false; unsigned int to_max_minor_version= (to_max >> 8) & 0xff; unsigned int to_min_minor_version= (to_min >> 8) & 0xff; // if it is outside the range of the minor version if (from.get_minor_version() > to_max_minor_version || from.get_minor_version() < to_min_minor_version) return false; /* purecov: inspected */ unsigned int to_max_patch_version= to_max & 0xff; unsigned int to_min_patch_version= to_min & 0xff; // if it is outside the range of the patch version if (from.get_patch_version() > to_max_patch_version || from.get_patch_version() < to_min_patch_version) return false; return true; } Compatibility_type Compatibility_module::check_incompatibility(Member_version &from, Member_version &to, bool do_version_check) { //Check if they are the same... if (from == to) return COMPATIBLE; //Find if the values are present in the statically defined table... std::pair <std::multimap<unsigned int, std::pair<unsigned int, unsigned int> >::iterator, std::multimap<unsigned int, std::pair<unsigned int, unsigned int> >::iterator> search_its; search_its = this->incompatibilities.equal_range(from.get_version()); for (std::multimap<unsigned int, std::pair<unsigned int, unsigned int> >::iterator it= search_its.first; it != search_its.second; ++it) { if (check_version_range_incompatibility(to, it->second.first, it->second.second)) { return INCOMPATIBLE; } } //It was not deemed incompatible by the table rules: /* Version compatibility might only be against the lowest group version */ if(do_version_check) { /* If they belong to the same major version */ if (from.get_major_version() == to.get_major_version()) return COMPATIBLE; } else { return COMPATIBLE; } //If it has a higher major version then change to read mode if (from.get_major_version() > to.get_major_version()) return READ_COMPATIBLE; /* It is a lower version, so it is incompatible lower, meaning that by default it is not compatible, but user may ignore this decision. */ return INCOMPATIBLE_LOWER_VERSION; } Compatibility_module::~Compatibility_module() { delete this->local_version; }