信號槽

以下代碼出自陳碩,是一個信號的槽的實現(xiàn)然磷。

#define _CRT_SECURE_NO_WARNINGS
#include <functional>
#include <iostream>
#include <memory>
#include <vector>
#include <algorithm>
#include <string>
#include <cassert>
#include <stdio.h>
using namespace std;

template<typename Signature>
class SignalTrivial;
using placeholders::_1;
using placeholders::_2;


template<typename Callback>
struct SlotImpl;

template<typename Callback>
struct SignalImpl 
{
    typedef std::vector<weak_ptr<SlotImpl<Callback> > > SlotList;

    SignalImpl()
        : slots_(new SlotList)
    {
    }

    void copyOnWrite()
    {
        //mutex_.assertLocked();
        if (!slots_.unique())
        {
            slots_.reset(new SlotList(*slots_));
        }
        assert(slots_.unique());
    }

    void clean()
    {
        //MutexLockGuard lock(mutex_);
        copyOnWrite();
        SlotList& list(*slots_);
        typename SlotList::iterator it(list.begin());
        while (it != list.end())
        {
            if (it->expired())
            {
                it = list.erase(it);
            }
            else
            {
                ++it;
            }
        }
    }

    //MutexLock mutex_;
    shared_ptr<SlotList> slots_;
};

template<typename Callback>
struct SlotImpl
{
    typedef SignalImpl<Callback> Data;
    SlotImpl(const shared_ptr<Data>& data, Callback&& cb)
        : data_(data), cb_(cb), tie_(), tied_(false)
    {
    }

    SlotImpl(const shared_ptr<Data>& data, Callback&& cb,
        const shared_ptr<void>& tie)
        : data_(data), cb_(cb), tie_(tie), tied_(true)
    {
    }

    ~SlotImpl()
    {
        printf("~SlotImpl\n");
        shared_ptr<Data> data(data_.lock());
        if (data)
        {
            data->clean();
        }
    }

    weak_ptr<Data> data_;
    Callback cb_;
    weak_ptr<void> tie_;
    bool tied_;
};

/// This is the handle for a slot
///
/// The slot will remain connected to the signal fot the life time of the
/// returned Slot object (and its copies).
typedef shared_ptr<void> Slot;

template<typename Signature>
class Signal;

template <typename RET, typename... ARGS>
class Signal<RET(ARGS...)>
{
public:
    typedef std::function<void(ARGS...)> Callback;
    typedef SignalImpl<Callback> SignalImpl;
    typedef SlotImpl<Callback> SlotImpl;

    Signal()
        : impl_(new SignalImpl)
    {
    }

    ~Signal()
    {
    }
    // connect 其實為寫shared_ptr<SignalImpl> impl_.slots_;
    Slot connect(Callback&& func)
    {
        shared_ptr<SlotImpl> slotImpl(
            new SlotImpl(impl_, std::forward<Callback>(func)));
        add(slotImpl);
        return slotImpl;
    }

    Slot connect(Callback&& func, const shared_ptr<void>& tie)
    {
        shared_ptr<SlotImpl> slotImpl(new SlotImpl(impl_, func, tie));
        add(slotImpl);
        return slotImpl;
    }
    // call 其實為讀shared_ptr<SignalImpl> impl_.slots_;
    void call(ARGS&&... args)
    {
        SignalImpl& impl(*impl_);
        shared_ptr<typename SignalImpl::SlotList> slots;
        {
            //MutexLockGuard lock(impl.mutex_);
            slots = impl.slots_;  // 防止寫這塊內(nèi)存;
        }
        typename SignalImpl::SlotList& s(*slots);
        for (typename SignalImpl::SlotList::const_iterator it = s.begin(); it != s.end(); ++it)
        {
            shared_ptr<SlotImpl> slotImpl = it->lock();
            if (slotImpl)
            {
                shared_ptr<void> guard;
                if (slotImpl->tied_)
                {
                    guard = slotImpl->tie_.lock();
                    if (guard)
                    {
                        slotImpl->cb_(args...);
                    }
                }
                else
                {
                    slotImpl->cb_(args...);
                }
            }
        }
    }

private:

    void add(const shared_ptr<SlotImpl>& slot)
    {
        SignalImpl& impl(*impl_);
        {
            //MutexLockGuard lock(impl.mutex_);
            //impl.copyOnWrite();
            impl.slots_->push_back(slot);
        }
    }

    const shared_ptr<SignalImpl> impl_;
};

class String
{
public:
    String(const char* str)
    {
        printf("String ctor this %p\n", this);
    }

    String(const String& rhs)
    {
        printf("String copy ctor this %p, rhs %p\n", this, &rhs);
    }

    String(String&& rhs)
    {
        printf("String move ctor this %p, rhs %p\n", this, &rhs);
    }
};


class Foo 
{
public:
    ~Foo(){
        i = 0;
        printf("~Foo()\n");
    }
    void zero();
    void zeroc() const;
    void one(int);
    void oner(int&);
    void onec(int) const;
    void oneString(const String& str);
    // void oneStringRR(String&& str);
    static void szero();
    static void sone(int);
    static void soneString(const String& str);
private:
    int i = 2;
};

void Foo::zero()
{
    ++i;
    printf("Foo::zero() = %d\n",i);
}

void Foo::zeroc() const
{
    printf("Foo::zeroc()\n");
}

void Foo::szero()
{
    printf("Foo::szero()\n");
}

void Foo::one(int x)
{
    printf("Foo::one() x=%d\n", x);
}

void Foo::onec(int x) const
{
    printf("Foo::onec() x=%d\n", x);
}

void Foo::sone(int x)
{
    printf("Foo::sone() x=%d\n", x);
}

void Foo::oneString(const String& str)
{
    printf("Foo::oneString\n");
}

void Foo::soneString(const String& str)
{
    printf("Foo::soneString\n");
}


void testSignalSlotZero()
{
    Signal<void()> signal;

    printf("==== testSignalSlotZero ====\n");
    signal.call();

    Slot s1 = signal.connect(&Foo::szero);

    printf("========\n");
    signal.call();

    Foo f;
    Slot s2 = signal.connect(bind(&Foo::zero, &f));

    printf("========\n");
    signal.call();

    Slot s3 = signal.connect(bind(&Foo::one, &f, 42));

    printf("========\n");
    signal.call();

    const Foo cf;
    Slot s4 = signal.connect(bind(&Foo::zeroc, &cf));

    printf("========\n");
    signal.call();

    Slot s5 = signal.connect(bind(&Foo::onec, &cf, 128));

    printf("========\n");
    signal.call();

    s1 = Slot();
    printf("========\n");
    signal.call();


    s4 = s3 = s2 = Slot();
    printf("========\n");
    signal.call();

}

void testSignalSlotOne()
{
    Signal<void(int)> signal;

    printf("========\n");
    signal.call(50);

    Slot s4;
    {
        Slot s1 = signal.connect(&Foo::sone);

        printf("========\n");
        signal.call(51);

        Foo f;
        Slot s2 = signal.connect(bind(&Foo::one, &f, _1));

        printf("========\n");
        signal.call(52);

        const Foo cf;
        Slot s3 = signal.connect(bind(&Foo::onec, &cf, _1));

        printf("========\n");
        signal.call(53);

        s4 = s3;
    }

    printf("========\n");
    signal.call(54);
}

void testSignalSlotLife()
{
    Slot s1;
    {
        Signal<void()> signal;
        signal.connect(&Foo::szero);

        printf("========\n");
        signal.call();

        Foo f;
        function<void()> func = bind(&Foo::zero, &f);

        s1 = signal.connect(bind(&Foo::zero, &f));

        printf("========\n");
        signal.call();
    }
    
}

Signal<void(int)> signal;

class Test
{
public:
    Test()
    {
        s1 = signal.connect(bind(&Test::hello, this, _1));
        s2 = signal.connect(bind(&Test::hello1, this, _1));
    }

    ~Test()
    {
        printf("~Test()\n");
    }
    void hello(int n)
    {
        printf("Test::hello\n");
    }

    void hello1(int n)
    {
        printf("Test::hello1\n");
    }
private:
    Slot s1;
    Slot s2;
};

int main()
{
    shared_ptr<Test>  p(make_shared<Test>());
    p.reset();
    signal.call(4);
    testSignalSlotZero();
    testSignalSlotOne();
    testSignalSlotLife();
    getchar();
    return 0;
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末下隧,一起剝皮案震驚了整個濱河市容劳,隨后出現(xiàn)的幾起案子缴饭,更是在濱河造成了極大的恐慌奥帘,老刑警劉巖制跟,帶你破解...
    沈念sama閱讀 212,454評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件舅桩,死亡現(xiàn)場離奇詭異,居然都是意外死亡雨膨,警方通過查閱死者的電腦和手機擂涛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來聊记,“玉大人撒妈,你說我怎么就攤上這事∨偶啵” “怎么了狰右?”我有些...
    開封第一講書人閱讀 157,921評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長社露。 經(jīng)常有香客問我挟阻,道長,這世上最難降的妖魔是什么峭弟? 我笑而不...
    開封第一講書人閱讀 56,648評論 1 284
  • 正文 為了忘掉前任附鸽,我火速辦了婚禮,結(jié)果婚禮上瞒瘸,老公的妹妹穿的比我還像新娘坷备。我一直安慰自己,他們只是感情好情臭,可當我...
    茶點故事閱讀 65,770評論 6 386
  • 文/花漫 我一把揭開白布省撑。 她就那樣靜靜地躺著,像睡著了一般俯在。 火紅的嫁衣襯著肌膚如雪竟秫。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,950評論 1 291
  • 那天跷乐,我揣著相機與錄音肥败,去河邊找鬼。 笑死,一個胖子當著我的面吹牛馒稍,可吹牛的內(nèi)容都是我干的皿哨。 我是一名探鬼主播,決...
    沈念sama閱讀 39,090評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼纽谒,長吁一口氣:“原來是場噩夢啊……” “哼证膨!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起鼓黔,我...
    開封第一講書人閱讀 37,817評論 0 268
  • 序言:老撾萬榮一對情侶失蹤脊僚,失蹤者是張志新(化名)和其女友劉穎制妄,沒想到半個月后递胧,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體荚藻,經(jīng)...
    沈念sama閱讀 44,275評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡刊殉,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,592評論 2 327
  • 正文 我和宋清朗相戀三年由境,在試婚紗的時候發(fā)現(xiàn)自己被綠了颖变。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片咸产。...
    茶點故事閱讀 38,724評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡盖高,死狀恐怖慎陵,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情喻奥,我是刑警寧澤席纽,帶...
    沈念sama閱讀 34,409評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站撞蚕,受9級特大地震影響润梯,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜甥厦,卻給世界環(huán)境...
    茶點故事閱讀 40,052評論 3 316
  • 文/蒙蒙 一纺铭、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧刀疙,春花似錦舶赔、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至疚鲤,卻和暖如春锥累,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背集歇。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評論 1 266
  • 我被黑心中介騙來泰國打工桶略, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 46,503評論 2 361
  • 正文 我出身青樓删性,卻偏偏與公主長得像亏娜,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子蹬挺,可洞房花燭夜當晚...
    茶點故事閱讀 43,627評論 2 350

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

  • 快速創(chuàng)建qt工程 當我們熟悉基本的從空項目創(chuàng)建qt應用程序后维贺,以后我們可以直接從模板中創(chuàng)建一個qt工程 注意,本節(jié)...
    zhangzq閱讀 368評論 0 0
  • 信號和槽(Signals and Slots) Qt庫第一個認識到在幾乎所有情況下巴帮,程序員不需要或甚至不想知道所有...
    珞珈村下山閱讀 9,814評論 0 23
  • PyQt5:PyQt5 信號與槽(PyQt5的事件處理機制) 一溯泣、事件 在事件模型,有三個參與者:事件源榕茧、事件目標...
    gongdiwudu閱讀 671評論 0 0
  • 信號和槽是用于對象之間的通信的垃沦,這是Qt的核心。為此Qt引入了一些關鍵字用押,他們是slots肢簿、signals、emi...
    詩人和酒閱讀 609評論 0 2
  • 1蜻拨、概述 信號槽是 Qt 框架引以為豪的機制之一池充。所謂信號槽,實際就是觀察者模式缎讼。當某個事件發(fā)生之后收夸,比如,按鈕檢...
    你的社交帳號昵閱讀 45,261評論 0 9