2022-09-13

int main(int argc, const char *argv[])
{
    double res = AddNumbers(1.0, 2.0);
    printf("%lf", res);
    return 0;
}
#include <iostream>
#include <string>
#include <queue>
#include <thread>
#include <chrono>
using namespace std;
using namespace chrono;

struct Order{
    string id;
    string name;
    int preTime; // second
    int64_t time; // finish time

    Order() {
        preTime = 0;
        time = 0;
        id = "";
        name = "";
    }
    Order(Order *order) {
        this->id = order->id;
        this->name = order->name;
        this->preTime = order->preTime;
        this->time = order->time;
    }
    bool operator < (const Order &od) const
    {
        return time < od.time; 
    }
    bool operator > (const Order &od) const
    {
        return time > od.time;
    }
};

class MyQueue {
public:
    virtual int Init(int cap) = 0;
    virtual void Deinit() = 0;
    virtual int Push(Order order) = 0;
    virtual Order GetFrontAndPop(void) = 0;
    virtual bool IsFull(void) = 0;
    virtual bool IsEmpty(void) = 0;
};

class Queue : public MyQueue {
public:
    int Init(int cap)
    {
        this->capicity = cap;
        pthread_mutex_init(&(this->mutex), NULL);
    }
    void Deinit()
    {
        // lock , free order
        pthread_mutex_lock(&(this->mutex));
        while (!this->que.empty()) {
            this->que.pop();
        }

        pthread_mutex_unlock(&(this->mutex));

        //
        pthread_mutex_destroy(&(this->mutex));
        return;
    }

    int Push(Order order)
    {
        cout<<"input order id: "<<order.id<<endl;
        if (this->que.size() >= this->capicity) {
            return -1;
        }
        this->que.push(order);
        return 0;
    }
    bool IsFull() {
        return this->que.size() == this->capicity;
    }
    bool IsEmpty() {
        return this->que.empty();
    }
    Order GetFrontAndPop() {
        while (this->que.empty()) {
            // error
            std::this_thread::sleep_for(1000ms);
            cout<<"que is empty\n";
        }
        Order order = this->que.front();
        this->que.pop();
        return order;
    }
private:
    int capicity;
    queue<Order> que;
    pthread_mutex_t mutex;
};
class ProQueue : public MyQueue {
public:
    int Init(int cap)
    {
        this->capicity = cap;
        pthread_mutex_init(&(this->mutex), NULL);
    }
    void Deinit()
    {
        // lock , free order
        pthread_mutex_lock(&(this->mutex));
        while (!this->que.empty()) {
            this->que.pop();
        }

        pthread_mutex_unlock(&(this->mutex));

        //
        pthread_mutex_destroy(&(this->mutex));
        return;
    }

    int Push(Order order)
    {
        if (this->que.size() >= this->capicity) {
            return -1;
        }
        this->que.push(order);
        return 0;
    }
    bool IsFull() {
        return this->que.size() == this->capicity;
    }
    bool IsEmpty() {
        return this->que.empty();
    }
    Order GetFrontAndPop() {
        while (this->que.empty()) {
            // error
            std::this_thread::sleep_for(1000ms);
            cout<<"que is empty\n";
        }
        Order order = this->que.top();
        this->que.pop();
        return order;
    }
private:
    int capicity;
    priority_queue<Order, vector<Order>, greater<Order>> que;
    pthread_mutex_t mutex;
};

class Input {
public:
    int Product(MyQueue *myque, void *args)
    {
        Order *order = (Order*)args;
        Order od(order); 
        int ret = myque->Push(order);
        return ret;
    }
};

class Dispatch {
public: 
    virtual int DispatchOrder(MyQueue *que) = 0;
    int CariesArrivedTime(int min, int max)
    {
        // rand from min to max, [min, max]

    }
    void AddFoodWait(int preTime)
    {
        this->foodwait += preTime;
    }
    int64_t GetFoodWait()
    {
        return foodwait;
    }
    void AddCariesWait(int wait)
    {
        this->carieswait += wait;
    }
    int64_t GetCariesWait()
    {
        return carieswait;
    }

private:
    int64_t foodwait;
    int64_t carieswait;
    int64_t orders;
};

class Matched : public Dispatch
{
public:
    int DispatchOrder(MyQueue *que)
    {
        Queue *q = (Queue*)que;
        
        Order order = q->GetFrontAndPop();

        AddFoodWait(order.preTime);
        cout<<"Matched Dispatch "<<order.name<<" "<<order.preTime<<" "<<order.time<<endl;


    }
};

class FIFO : public Dispatch
{
public:
    int DispatchOrder(MyQueue *que)
    {
        ProQueue *q = (ProQueue*)que;
        Order order = q->GetFrontAndPop();
        auto now = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count();
        if (now < order.time) {
            q->Push(order);
            return -2;
        }
        cout<<"Match Dispatch "<<order.name<<" "<<order.preTime<<" "<<order.time<<endl;
        return 0;
    }

};

int DispatchMeth(MyQueue *que, Dispatch *dispatch)
{
    while (true) {
        if (que->IsEmpty()) {
            std::this_thread::sleep_for(1000ms);
            cout<<std::this_thread::get_id()<<"order is emtpy, sleep 1 s\n";
            continue;
        }
        if (dispatch->DispatchOrder(que) == -2) { // order not prepared
            std::this_thread::sleep_for(200ms);
            // cout<<std::this_thread::get_id()<<"order is not prepare, sleep 200 ms\n";
        }
    }
}


// 斷續(xù)讀取文件
int Read(const char* file, MyQueue *que)
{
    auto start = system_clock::now();
    auto end = system_clock::now();
    while (true) {
        std::this_thread::sleep_for(2000ms);
        auto end = system_clock::now();
        std::chrono::duration<double, std::milli> elapsed = end-start;
        //cout<<"read frome file: "<<file<<" tims: "<<elapsed.count()<<" ms"<<endl;
        while (que->IsFull()) {
            std::this_thread::sleep_for(1000ms);
            cout<<std::this_thread::get_id()<< "que is full\n";
        }
        static int64_t id = 0;
        for (int i = 0; i < 2; i++) {
            Order order;
            order.name = "rndNO" + to_string(id) + "*";
            order.id = to_string(id);
            id++;
            order.preTime = rand() % 15;
            order.time = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count() + order.preTime * 1000;
            que->Push(&order);
        }
    }
}


int main()
{
/*     Queue myque;
    myque.Init(10);
    Input input;
    //myque.Init(100);
    Matched match;

    thread read(Read, "/home/err", &myque);
    thread disp(DispatchMeth, &myque, &match);
    read.join();
    disp.join(); */

    ProQueue proque;
    proque.Init(10);
    FIFO fifo;

    thread read(Read, "/home/err", &proque);
    thread disp(DispatchMeth, &proque, &fifo);
    read.join();
    disp.join();


    cout<<"hello world\n";
}


cmake_minimum_required(VERSION 3.16)
project(SERVER)

include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/include
)
aux_source_directory(. DIR_SRCS)

add_executable(Server ${DIR_SRCS})

target_link_libraries(Server PUBLIC pthread)


最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市攘宙,隨后出現(xiàn)的幾起案子屯耸,更是在濱河造成了極大的恐慌,老刑警劉巖模聋,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件肩民,死亡現(xiàn)場離奇詭異,居然都是意外死亡链方,警方通過查閱死者的電腦和手機(jī)持痰,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來祟蚀,“玉大人工窍,你說我怎么就攤上這事割卖。” “怎么了患雏?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵鹏溯,是天一觀的道長。 經(jīng)常有香客問我淹仑,道長丙挽,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任匀借,我火速辦了婚禮颜阐,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘吓肋。我一直安慰自己凳怨,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布是鬼。 她就那樣靜靜地躺著肤舞,像睡著了一般。 火紅的嫁衣襯著肌膚如雪均蜜。 梳的紋絲不亂的頭發(fā)上李剖,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天,我揣著相機(jī)與錄音兆龙,去河邊找鬼杖爽。 笑死,一個(gè)胖子當(dāng)著我的面吹牛紫皇,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播腋寨,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼聪铺,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了萄窜?” 一聲冷哼從身側(cè)響起铃剔,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎查刻,沒想到半個(gè)月后键兜,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡穗泵,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年普气,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片佃延。...
    茶點(diǎn)故事閱讀 38,617評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡现诀,死狀恐怖夷磕,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情仔沿,我是刑警寧澤坐桩,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站封锉,受9級特大地震影響绵跷,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜成福,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一抖坪、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧闷叉,春花似錦擦俐、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至品擎,卻和暖如春埋合,著一層夾襖步出監(jiān)牢的瞬間募胃,已是汗流浹背蔓腐。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留辱姨,地道東北人秀菱。 一個(gè)月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓振诬,卻偏偏與公主長得像,于是被迫代替她去往敵國和親衍菱。 傳聞我的和親對象是個(gè)殘疾皇子赶么,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容