- 전체
- C/C++ 일반
- C/C++ 수학
- C/C++ 그래픽
- C/C++ 자료구조
- C/C++ 인공지능
- C/C++ 인터넷
- wxWidget
- GTK+
- UNIX or LINUX programming
- 리눅스 마스터 - 국가공인자격
- VC++/ MFC
- C#/CLI/.NET
- QT/기타UI
- Boost lib
- 오픈소스 C 분석자료
- MSA (마이크로서비스), Docker, kubernetes
- WSL(windows subsystem linux)
C/C++ 일반 Kigs Framework Introduction (6/8) - Signal, Slot, Notification
2020.02.28 23:28
Kigs Framework Introduction (6/8) - Signal, Slot, Notification

Table of Contents
Introduction
Now that we have seen how CoreModifiable methods (Kigs Framework Introduction (4/8) - Methods) works, we are going to see in this short article how to take advantage of this mechanism to easily connect instances together.
Signals and Slots
Signals
A list of signals can be declared at compile time for a given class using helper macro SIGNALS:
// CoreModifiable signals
SIGNALS(PreInit,
PostInit,
Uninit,
Destroy,
Update, // Called before the actual update
NotifyUpdate,
AddItem,
RemoveItem,
PrepareExport,
EndExport);
It is then possible to retrieve the list of declared signals for this class using method "GetSignalList" :
// get the list of SimpleClass signals
std::cout << "simpleclass instance has following signals available" << std::endl;
auto signallist=simpleclass->GetSignalList();
for (const auto& s : signallist)
{
#ifdef KEEP_NAME_AS_STRING
std::cout << s._id_name << std::endl;
#else
std::cout << s._id << std::endl;
#endif
}
Slots and Connections
A declared signal can be emitted using EmitSignal method:
// emit signal with two parameters
EmitSignal(Signals::SendSignal1,32,64);
It's also possible with the same mechanism to send undeclared signals:
// emit a "runtime" signal (not declared with the SIGNALS macro)
EmitSignal("doSomething");
Signals can be emitted with or without parameters.
For an instance to receive a signal from another one, a connection must be setup :
// connect this "MethodWithParams" to simpleclass instance "SendSignal1" signal
KigsCore::Connect(simpleclass.get(),"SendSignal1",this, "MethodWithParams");
// connect app undeclared doSomething signal to doSomething method
KigsCore::Connect(app, "doSomething", this, "doSomething");
"MethodWithParams" is a CoreModifiable method declared with WRAP_METHODS macro or with DECLARE_METHOD/COREMODIFIABLE_METHODS. See CoreModifiable method article in this series for details.
// Wrapped MethodWithParams
void MethodWithParams(float p1, float p2);
WRAP_METHODS(MethodWithParams);
// fixed prototype CoreModifiable method
DECLARE_METHOD(doSomething);
// list methods
COREMODIFIABLE_METHODS(doSomething);
To disconnect two instances, KigsCore::Disconnect method is also available :
// disconnect this so SendSignal1 will not be catched anymore
CoreModifiable* simplecass=GetInstanceByPath("simpleclass");
KigsCore::Disconnect(simplecass, "SendSignal1", this, "MethodWithParams");
Lambda Slots
It's also possible to connect signal to a lambda function directly:
// connect to lambda function
KigsCore::Connect(simpleclass.get(), "SendSignal2", this, "lambda", [this](int p1)
{
std::cout << "lambda received parameter " << p1 << std::endl;
});
Instance Factory Connection
It's possible to ask instance factory to create a connection for each created instance of a particular class:
// ask instance factory to add a connection on each created SimpleClass
// for the PreInit signal to call this OnSimpleClassPreInit
KigsCore::Instance()->GetInstanceFactory()->addModifiableCallback
("PreInit", this, "OnSimpleClassPreInit", "SimpleClass");
If the last parameter is not set, the connection is added for all types of created instances.
To remove the automatic connection:
// remove instance factory auto connection previously set
KigsCore::Instance()->GetInstanceFactory()->removeModifiableCallback
("PreInit", this, "OnSimpleClassPreInit");
Notifications
Another way to create connections is to use the NotificationCenter class. NotificationCenter can connect two instances like with signal/slot mechanism, but also notify an instance to listen for notification posted by any sender instance.
Observers
The NotificationCenter can register observer instances:
// register this as an observer on notification "doSomethingElseNotif"
// call method CatchNotifMethod when doSomethingElseNotif is received
KigsCore::GetNotificationCenter()->addObserver(this,"CatchNotifMethod","doSomethingElseNotif");
A fourth CoreModifiable* parameter is possible to listen to notifications only coming from the given sender instance.
To remove an observer:
// remove this as "doSomethingElseNotif" notification observer.
// a third parameter is needed if observer was set on a specific instance.
KigsCore::GetNotificationCenter()->removeObserver(this, "doSomethingElseNotif");
Post a Notification
A notification can then be sent using NotificationCenter "postNotificationName" method:
// post a notification "doSomethingElseNotif"
// a vector of CoreModifiable attributes can be set as second parameter :
// kstl::vector<CoreModifiableAttribute*>& params
// the sender can also be passed (as second or third parameter)
KigsCore::GetNotificationCenter()->postNotificationName("doSomethingElseNotif", this);
Serialization
A signal/slot connection can be set in XML adding this kind of item to an instance:
<Connect Si="SignalName" E="EmitterPath" SL="SlotName" R="ReceiverPath"/>
Emitter path and receiver path are classic CoreModifiable search paths. "this" or "self" can also be used to indicate owning instance.
An observer can also be set on an instance adding this item:
<OnE N="NotificationName" A="CalledMethod"/>
Find all the sample code from this wiki section in Sample6 project (browse the code).
Already Published in this Series
- Kigs Framework Introduction (1/8) - Overview
- Kigs Framework Introduction (2/8) - CoreModifiable
- Kigs Framework Introduction (3/8) - Attributes
- Kigs Framework Introduction (4/8) - Methods
- Kigs Framework Introduction (5/8) - CoreItem
- Kigs Framework Introduction (6/8) - Signal, Slot, Notification
History
- 26th February, 2020: Initial version
[출처] https://www.codeproject.com/Articles/5260113/Kigs-Framework-Introduction-6-8-Signal-Slot-Notifi
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
댓글 0
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|
| 12 |
[MSA] Istio Traffic management
| 졸리운_곰 | 2021.03.21 | 475 |
| 11 |
[MSA] Istio #4 - Istio 설치와 BookInfo 예제
| 졸리운_곰 | 2021.03.21 | 535 |
| 10 |
[MSA] Istio #3- Istio에 대한 소개
| 졸리운_곰 | 2021.03.21 | 586 |
| 9 |
[MSA] Istio #2 - Envoy proxy
| 졸리운_곰 | 2021.03.21 | 445 |
| 8 |
[MSA] Istio #1 - 마이크로 서비스와 서비스 매쉬
| 졸리운_곰 | 2021.03.21 | 441 |
| 7 |
[MSA][Python] Build and Deploy a REST API Microservice with Python Flask and Docker
| 졸리운_곰 | 2021.03.20 | 402 |
| 6 |
[MSA][KONG gateway] Kong, manage your APIs !
| 졸리운_곰 | 2021.03.20 | 1120 |
| 5 |
[MSA] Monitoring Your Synchronous Python Web Applications Using Prometheus
| 졸리운_곰 | 2021.03.20 | 466 |
| 4 |
[MSA, Docker, Kubernetes] Running Spark on Kubernetes
| 졸리운_곰 | 2021.03.04 | 349 |
| 3 |
[MSA, Docker, Kubernetes] Docker 개념, 관리, 이미지생성까지 한번에!!
| 졸리운_곰 | 2021.03.04 | 699 |
| 2 | 도커 시작하기 7 : Dockerfile을 이용한 이미지 생성 | 졸리운_곰 | 2021.03.04 | 346 |
| 1 |
[MAS, docker, kubernetes] [Container 시리즈] 03. Docker File, Docker Image - 도커파일 및 이미지에 대하여
| 졸리운_곰 | 2021.03.04 | 272 |


