Server IP : 172.67.216.182 / Your IP : 172.68.164.13 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) 2013, 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 "pipeline_factory.h" #include "handlers/event_cataloger.h" #include "handlers/certification_handler.h" #include "handlers/applier_handler.h" #include "plugin_log.h" int get_pipeline(Handler_pipeline_type pipeline_type, Event_handler** pipeline) { DBUG_ENTER("get_pipeline(pipeline_type, pipeline)"); Handler_id* handler_list= NULL; int num_handlers= get_pipeline_configuration(pipeline_type, &handler_list); int error= configure_pipeline(pipeline, handler_list, num_handlers); if(handler_list != NULL) { delete[] handler_list; } //when there are no handlers, the pipeline is not valid DBUG_RETURN(error || num_handlers == 0); } int get_pipeline_configuration(Handler_pipeline_type pipeline_type, Handler_id** pipeline_conf) { DBUG_ENTER("get_pipeline_configuration"); /* When a new pipeline is defined the developer shall define here what are the handlers that belong to it and their order. */ switch (pipeline_type) { case STANDARD_GROUP_REPLICATION_PIPELINE: (*pipeline_conf)= new Handler_id[3]; (*pipeline_conf)[0]= CATALOGING_HANDLER; (*pipeline_conf)[1]= CERTIFICATION_HANDLER; (*pipeline_conf)[2]= SQL_THREAD_APPLICATION_HANDLER; DBUG_RETURN(3); default: log_message(MY_ERROR_LEVEL, "Unknown group replication applier pipeline" " requested"); /* purecov: inspected */ } DBUG_RETURN(0); /* purecov: inspected */ } int configure_pipeline(Event_handler** pipeline, Handler_id handler_list[], int num_handlers) { DBUG_ENTER("configure_pipeline(pipeline, handler_list[], num_handlers)"); int error= 0; for (int i= 0; i < num_handlers; ++i) { Event_handler* handler= NULL; /* When a new handler is define the developer shall insert it here */ switch (handler_list[i]) { case CATALOGING_HANDLER: handler= new Event_cataloger(); break; case CERTIFICATION_HANDLER: handler= new Certification_handler(); break; case SQL_THREAD_APPLICATION_HANDLER: handler= new Applier_handler(); break; default: error= 1; /* purecov: inspected */ log_message(MY_ERROR_LEVEL, "Unable to bootstrap group replication event handling " "infrastructure. Unknown handler type: %d", handler_list[i]); /* purecov: inspected */ } if (!handler) { /* purecov: begin inspected */ if (!error) //not an unknown handler but a initialization error { log_message(MY_ERROR_LEVEL, "One of the group replication applier handlers is null due" " to an initialization error"); } DBUG_RETURN(1); /* purecov: end */ } /* TODO: This kind of tests don't belong here. We need a way to do this in a static way before initialization. */ //Record the handler role if unique if (handler->is_unique()) { for (int z= 0; z < i; ++z) { DBUG_EXECUTE_IF("double_unique_handler", handler_list[z]= handler_list[i];); //Check to see if the handler was already used in this pipeline if (handler_list[i] == handler_list[z]) { log_message(MY_ERROR_LEVEL, "A group replication applier handler, marked as unique," " is already in use."); delete handler; DBUG_RETURN(1); } //check to see if no other handler has the same role Event_handler *handler_with_same_role= NULL; Event_handler::get_handler_by_role(*pipeline,handler->get_role(), &handler_with_same_role); if (handler_with_same_role != NULL) { /* purecov: begin inspected */ log_message(MY_ERROR_LEVEL, "A group replication applier handler role, " "that was marked as unique, is already in use."); delete handler; DBUG_RETURN(1); /* purecov: end */ } } } if ((error= handler->initialize())) { /* purecov: begin inspected */ log_message(MY_ERROR_LEVEL, "Error on group replication applier " "handler initialization"); DBUG_RETURN(error); /* purecov: end */ } //Add the handler to the pipeline Event_handler::append_handler(pipeline,handler); } DBUG_RETURN(0); }