中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

【C/C++】ghost ddl腳本簡單實現

發布時間:2020-08-09 00:27:16 來源:ITPUB博客 閱讀:251 作者:風塵_NULL 欄目:編程語言

目的:本篇是自己用C++實現的ddl的簡單腳本(改寫自自己的shell,但是還有一部分沒完成),用來鍛煉自己寫C++的能力


頭文件exec_ddl.h

```

#include <regex>
#include <cstdlib>
#include <time.h>
#include <unistd.h>
#include <sys/wait.h>
size_t GetStrCurrTime(std::string &);
#ifndef header_cpp_fun_h
#define header_cpp_fun_h
class CDdlGhost {
private:
//數據庫賬號,端口,DDL用戶,密碼,
std::string host;
int port;
std::string user;
std::string password;
std::string database;
std::string tableName;
int threadRunning = 500;
int cthreadRunning = 500;
int maxLagMillis = 3000;
std::string cutOver = "default";
int chunkSize = 1000;
int lockSeconds = 60;
int retries = 3;
static CDdlGhost* instance;
CDdlGhost(std::string host,int port,std::string database,std::string tableName,std::string user,std::string password);

public:
static CDdlGhost* GetSingleInstance(std::string host,int port,std::string database,std::string tableName,std::string user,std::string password);
int GetGhostCmd(std::string sql,std::string &cmd);
int ExecDdlCmd(std::string &cmd);
};
#endif

```


exec_ddl.cpp

```

#include "exec_ddl.h"
//類中靜態變量為什么不在類中初始化,是因為靜態變量具有外部鏈接性,文件作用域
CDdlGhost* CDdlGhost::instance = nullptr;

//構造函數
CDdlGhost::CDdlGhost(std::string host,int port,std::string database,std::string tableName,std::string user,std::string password){
    //這里以后正則表達式做安全性過濾
    this->host = host;
    this->port = port;
    this->database = database;
    this->tableName = tableName;
    this->user = user;
    this->password = password;

}
//獲取類的單實例函數,這里為什么返回的是指針而不是引用是因為我要用空指針才判斷是否單實例
CDdlGhost* CDdlGhost::GetSingleInstance(std::string host,int port,std::string database,std::string tableName,std::string user,std::string password){
    if(nullptr == instance){
        instance = new CDdlGhost(host,port,database,tableName,user,password);
    }

    return instance;

}
//獲得表結構更改的命令字符串
int CDdlGhost::GetGhostCmd(std::string sql,std::string &ghostCmd){
    //獲取環境變量
    const char* pathEnv = std::getenv("PATH");
    std::string ghostLog;
    //這個變量用來獲取當前時間戳
    std::string strTime;
    size_t ret = GetStrCurrTime(strTime);
    if(ret <= 0){
        std::cout<<"獲取當前時間戳失敗"<<std::endl;
        return 0;
    }
    
    ghostLog=ghostLog+"/data1/upload/ghost_"+tableName+"_"+strTime+".log";
    ghostCmd="gh-ost --ok-to-drop-table --initially-drop-ghost-table --skip-foreign-key-checks --allow-on-master --switch-to-rbr --allow-master-master --exact-rowcount --verbose --initially-drop-old-table ";
    
    ghostCmd=ghostCmd + "--max-load=Threads_running="+std::to_string(threadRunning)+" --critical-load=Threads_running="+std::to_string(cthreadRunning)+" --chunk-size="+std::to_string(chunkSize)+" --cut-over="+cutOver+" --max-lag-millis="+std::to_string(maxLagMillis)+" --cut-over-lock-timeout-seconds="+std::to_string(lockSeconds)+" --default-retries="+std::to_string(retries)+" --host=\'"+host+"' --user='"+user+"' --password='"+password+"' --database='"+database+"'  --table='"+tableName+"' --alter='"+sql+"' --panic-flag-file=/tmp/"+tableName+".ghost.panic.flag --execute  > "+ghostLog+" 2>&1";    

    return 1;
    /*
    if(execl("/bin/sh","sh","-c",ghostCmd.c_str(),(char *) 0)<0){
        std::cout<<"執行ghostCmd失敗,語句為:"<<ghostCmd<<std::endl;
        return -2;

    }
    */

}
int CDdlGhost::ExecDdlCmd(std::string &ghostCmd){
    
    pid_t pidGhost;
    int GhostStatus;
    //這里我還要fork一個掃描ghost產生的日志的子進程,但是現在暫時沒打開
    //pid_t pidScan;
    
    if((pidGhost = fork()) < 0){
        std::cout<<"pidGhost子進程fork失敗"<<std::endl;
        return -2;

    }

    /*
    if((pidScan = fork()) < 0){
        std::cout<<"pidScan子進程fork失敗"<<std::endl;
        return -2;
        

    }
    */
    //子進程要執行修改表結構命令了
    if(0 == pidGhost){
        //為什么不用system,因為不想子進程fork子進程
        if(execl("/bin/sh","sh","-c",ghostCmd.c_str(),(char *) 0)<0){
            std::cout<<"臥槽,執行命令失敗了"<<std::endl;

        }
        _exit(127);

    }
    //另一個子進程,每一秒檢查下日志文件,看看是否有鎖,有鎖就kill,暫時沒啟用
    /*
    if(0 == pidScan ){
        while(1){
            int ret = ScanGhostLogLock(std::string &ghostLog);
            if(ret > 0){
                KillSleepOrLongQuery();
            }
            sleep(1);
    }
    */

    /*這里后面會通過一個函數掃描子進程執行的命令的日志,執行完后通知父進程*/     //等待子進程結束
    if(waitpid(pidGhost,&GhostStatus,0) < 0){
        std::cout<<"等待子進程出現異常"<<std::endl;
        return -1;

    }
        
    /*這里以后會通過函數向后臺掃描日志進程發送信號,通知其結束*/    

    if(WIFEXITED(GhostStatus)){
        return 0;

    }
    return -3;

}
//獲取格式化后的日期字符串
size_t GetStrCurrTime(std::string &strTime){
    time_t now = time(NULL);
    struct tm timeinfo = *localtime(&now);
    char buf[30];
    size_t ret = strftime(buf, sizeof(buf), "%Y%m%d%H%M%S", &timeinfo);
    std::string str(buf);
    strTime = str;
    return ret; }

```



ddl_main.cpp

```

#include <iostream>
#include "exec_ddl.h"
int main(){
    int i=0,ret;
    CDdlGhost *pDdlGhost=CDdlGhost::GetSingleInstance("10.17.4.23",3306,"test","test1","zaixinyuan","test123456");
    if (pDdlGhost == nullptr){
        std::cout<<"分配對象內存失敗"<<std::endl;
        return 1;
    }
    std::string ghostCmd;
    i = pDdlGhost->GetGhostCmd("add index cname(c)",ghostCmd);
    ret = pDdlGhost->ExecDdlCmd(ghostCmd);
    std::cout<<"返回結果是:"<<i<<"|"<<ghostCmd<<"|"<<ret<<std::endl;
    if(ret <0){
        std::cout<<"更改表結構失敗"<<std::endl;
    }

    delete pDdlGhost;
}

```

編譯命令

```

g++ -std=gnu++11 -o ddl_ghost ddl_main.cpp exec_ddl.cpp

```


執行結果:

程序返回結果

【C/C++】ghost ddl腳本簡單實現


數據庫查看結果

【C/C++】ghost ddl腳本簡單實現


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

华池县| 甘谷县| 贺州市| 泽州县| 苍山县| 凌云县| 汝州市| 兰溪市| 周宁县| 双辽市| 莫力| 淅川县| 平谷区| 广宁县| 东光县| 板桥市| 奉化市| 台前县| 汉源县| 左权县| 赤壁市| 潮安县| 镇坪县| 锡林浩特市| 平罗县| 青龙| 格尔木市| 前郭尔| 马关县| 台南县| 比如县| 宜川县| 区。| 从江县| 高青县| 双柏县| 陇川县| 从化市| 香河县| 镇远县| 漠河县|