-
Notifications
You must be signed in to change notification settings - Fork 27
/
ConnectionProcessor.cpp
1258 lines (1067 loc) · 38.8 KB
/
ConnectionProcessor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "ConnectionProcessor.hpp"
#include "ch/GuiUpdateSink.hpp"
#include "Mail/MailboxModel.hpp"
#include <bts/application.hpp>
#include <bts/bitchat/bitchat_private_message.hpp>
#include <fc/log/logger.hpp>
#include <fc/reflect/variant.hpp>
#include <fc/thread/thread.hpp>
#include <QObject>
#include <atomic>
#include <mutex>
namespace
{
/// Helper class to be base for all notification implementations holding theirs specific data.
class ANotification
{
public:
/// Sends a notification to the actual sink and destroys current object.
virtual void Notify() = 0;
protected:
ANotification(IGuiUpdateSink& sink) : Sink(sink) {}
virtual ~ANotification() {}
/// Class attributes:
protected:
IGuiUpdateSink& Sink;
};
/// The object receiving a signal sent by TThreadSafeGuiNotifier
class TReceiver : public QObject
{
Q_OBJECT
public:
virtual ~TReceiver() {}
public slots:
void notificationReceived(ANotification* notification)
{
notification->Notify();
}
};
} /// namespace anonymous
///////////////////////////////////////////////////////////////////////////////////////////////////
/// TConnectionProcessor::TThreadSafeGuiNotifier ///
///////////////////////////////////////////////////////////////////////////////////////////////////
/** Helper GUI update sink implementation sending notifications to the actual sink object after
switching to the GUI thread.
To do it utilizes QT signal/slot mechanism.
*/
class TConnectionProcessor::TThreadSafeGuiNotifier : public QObject,
public IGuiUpdateSink
{
Q_OBJECT
public:
explicit TThreadSafeGuiNotifier(IGuiUpdateSink& actualUpdateSink) :
Sink(actualUpdateSink)
{
/// Leave it as autoconnction to decide by QT engine how signal transmission should be done
connect(this, SIGNAL(notificationSent(ANotification*)), &Receiver,
SLOT(notificationReceived(ANotification*)), Qt::ConnectionType::QueuedConnection);
}
virtual ~TThreadSafeGuiNotifier() {}
/// IGuiUpdateSink interface implementation:
/// \see IGuiUpdateSink interface description.
virtual void OnReceivedChatMessage(const TContact& sender, const TChatMessage& msg,
const TTime& timeSent) override;
/// \see IGuiUpdateSink interface description.
virtual void OnReceivedAuthorizationMessage(const TAuthorizationMessage& msg,
const TStoredMailMessage& header) override;
/// \see IGuiUpdateSink interface description.
virtual void OnReceivedMailMessage(const TStoredMailMessage& msg, const bool spam) override;
/// \see IGuiUpdateSink interface description.
virtual void OnReceivedUnsupportedMessage(const TDecryptedMessage& msg) override;
/// \see IGuiUpdateSink interface description.
virtual void OnMessageSaving() override;
/// \see IGuiUpdateSink interface description.
virtual void OnMessageSaved(const TStoredMailMessage& msg,
const TStoredMailMessage* overwrittenOne) override;
/// \see IGuiUpdateSink interface description.
virtual void OnMessageGroupPending(unsigned int count) override;
/// \see IGuiUpdateSink interface description.
virtual void OnMessagePending(const TStoredMailMessage& msg,
const TStoredMailMessage* savedDraftMsg) override;
/// \see IGuiUpdateSink interface description.
virtual void OnMessageGroupPendingEnd() override;
/// \see IGuiUpdateSink interface description.
virtual void OnMessageSendingStart() override;
/// \see IGuiUpdateSink interface description.
virtual void OnMessageSent(const TStoredMailMessage& pendingMsg,
const TStoredMailMessage& sentMsg, const TDigest& digest) override;
/// \see IGuiUpdateSink interface description.
virtual void OnMessageSendingEnd() override;
/// \see IGuiUpdateSink interface description.
virtual void OnMissingSenderIdentity(const TRecipientPublicKey& senderId,
const TPhysicalMailMessage& msg) override;
private:
class TReceivedChatMsg : public ANotification
{
public:
static ANotification* Create(const TContact& sender, const TChatMessage& msg, const TTime& timeSent,
IGuiUpdateSink& sink)
{
return new TReceivedChatMsg(sender, msg, timeSent, sink);
}
/// ANotification class reimplementation:
virtual void Notify()
{
Sink.OnReceivedChatMessage(Sender, Msg, TimeSent);
delete this;
}
private:
TReceivedChatMsg(const TContact& sender, const TChatMessage& msg, const TTime& timeSent,
IGuiUpdateSink& sink) : ANotification(sink), Sender(sender), Msg(msg), TimeSent(timeSent) {}
virtual ~TReceivedChatMsg() {}
private:
TContact Sender;
TChatMessage Msg;
TTime TimeSent;
};
class TReceivedAuthorizationMsg : public ANotification
{
public:
static ANotification* Create(const TAuthorizationMessage& msg, const TStoredMailMessage& header,
IGuiUpdateSink& sink)
{
return new TReceivedAuthorizationMsg(msg, header, sink);
}
/// ANotification class reimplementation:
virtual void Notify()
{
Sink.OnReceivedAuthorizationMessage(Msg, Header);
delete this;
}
private:
TReceivedAuthorizationMsg(const TAuthorizationMessage& msg, const TStoredMailMessage& header,
IGuiUpdateSink& sink) : ANotification(sink), Msg(msg), Header(header) {}
virtual ~TReceivedAuthorizationMsg() {}
private:
TAuthorizationMessage Msg;
TStoredMailMessage Header;
};
class TReceivedMailMsg : public ANotification
{
public:
static ANotification* Create(const TStoredMailMessage& msg, const bool spam, IGuiUpdateSink& sink)
{
return new TReceivedMailMsg(msg, spam, sink);
}
/// ANotification class reimplementation:
virtual void Notify()
{
Sink.OnReceivedMailMessage(Msg, Spam);
delete this;
}
private:
TReceivedMailMsg(const TStoredMailMessage& msg, const bool spam, IGuiUpdateSink& sink) :
ANotification(sink), Msg(msg), Spam(spam) {}
virtual ~TReceivedMailMsg() {}
private:
TStoredMailMessage Msg;
bool Spam;
};
class TReceivedUnsupportedMsg : public ANotification
{
public:
static ANotification* Create(const TDecryptedMessage& msg, IGuiUpdateSink& sink)
{
return new TReceivedUnsupportedMsg(msg, sink);
}
/// ANotification class reimplementation:
virtual void Notify()
{
Sink.OnReceivedUnsupportedMessage(Msg);
delete this;
}
private:
TReceivedUnsupportedMsg(const TDecryptedMessage& msg, IGuiUpdateSink& sink) :
ANotification(sink), Msg(msg) {}
virtual ~TReceivedUnsupportedMsg() {}
private:
TDecryptedMessage Msg;
};
class TNoDataNotification : public ANotification
{
public:
typedef std::function<void()> TOperation;
static ANotification* Create(const TOperation& op, IGuiUpdateSink& sink)
{
return new TNoDataNotification(op, sink);
}
/// ANotification class reimplementation:
virtual void Notify()
{
Op();
delete this;
}
private:
TNoDataNotification(const TOperation& op, IGuiUpdateSink& sink) :
ANotification(sink), Op(op) {}
virtual ~TNoDataNotification() {}
private:
TOperation Op;
};
class TPendingOrSavedMailMessage : public ANotification
{
public:
static ANotification* Create(const TStoredMailMessage& msg,
const TStoredMailMessage* overwrittenOne, bool saved, IGuiUpdateSink& sink)
{
return new TPendingOrSavedMailMessage(msg, overwrittenOne, saved, sink);
}
/// ANotification class reimplementation:
virtual void Notify()
{
if(Saved)
Sink.OnMessageSaved(Msg, OverwrittenOnePtr);
else
Sink.OnMessagePending(Msg, OverwrittenOnePtr);
delete this;
}
private:
TPendingOrSavedMailMessage(const TStoredMailMessage& msg,
const TStoredMailMessage* overwrittenOne, bool saved, IGuiUpdateSink& sink) :
ANotification(sink),
Msg(msg),
OverwrittenOnePtr(nullptr),
Saved(saved)
{
if(overwrittenOne != nullptr)
{
OverwrittenOne = *overwrittenOne;
OverwrittenOnePtr = &OverwrittenOne;
}
}
virtual ~TPendingOrSavedMailMessage() {}
/// Class attributes:
private:
TStoredMailMessage Msg;
TStoredMailMessage OverwrittenOne;
const TStoredMailMessage* OverwrittenOnePtr;
bool Saved;
};
class TPendingMessageGroup : public ANotification
{
public:
static ANotification* Create(unsigned int count, IGuiUpdateSink& sink)
{
return new TPendingMessageGroup(count, sink);
}
/// ANotification class reimplementation:
virtual void Notify()
{
Sink.OnMessageGroupPending(Count);
delete this;
}
private:
TPendingMessageGroup(unsigned int count, IGuiUpdateSink& sink) : ANotification(sink),
Count(count) {}
virtual ~TPendingMessageGroup() {}
/// Class attributes:
private:
unsigned int Count;
};
class TSentMailMessage : public ANotification
{
public:
static ANotification* Create(const TStoredMailMessage& pendingMsg,
const TStoredMailMessage& sentMsg, const TDigest& digest, IGuiUpdateSink& sink)
{
return new TSentMailMessage(pendingMsg, sentMsg, digest, sink);
}
/// ANotification class reimplementation:
virtual void Notify()
{
Sink.OnMessageSent(PendingMsg, SentMsg, Digest);
delete this;
}
private:
TSentMailMessage(const TStoredMailMessage& pendingMsg, const TStoredMailMessage& sentMsg,
const TDigest& digest, IGuiUpdateSink& sink) : ANotification(sink),
PendingMsg(pendingMsg),
SentMsg(sentMsg),
Digest(digest) {}
virtual ~TSentMailMessage() {}
/// Class attributes:
private:
TStoredMailMessage PendingMsg;
TStoredMailMessage SentMsg;
TDigest Digest;
};
class TMissingSenderIdentity : public ANotification
{
public:
static ANotification* Create(const TRecipientPublicKey& senderId,
const TPhysicalMailMessage& msg, IGuiUpdateSink& sink)
{
return new TMissingSenderIdentity(senderId, msg, sink);
}
/// ANotification class reimplementation:
virtual void Notify()
{
Sink.OnMissingSenderIdentity(SenderId, Msg);
delete this;
}
private:
TMissingSenderIdentity(const TRecipientPublicKey& senderId, const TPhysicalMailMessage& msg,
IGuiUpdateSink& sink) : ANotification(sink),
SenderId(senderId),
Msg(msg) {}
virtual ~TMissingSenderIdentity() {}
/// Class attributes:
private:
TRecipientPublicKey SenderId;
TPhysicalMailMessage Msg;
};
Q_SIGNALS:
/// Emmitted when some GUI notification should be propagated across threads.
void notificationSent(ANotification* notification);
private:
IGuiUpdateSink& Sink;
TReceiver Receiver;
};
void TConnectionProcessor::TThreadSafeGuiNotifier::OnReceivedChatMessage(const TContact& sender,
const TChatMessage& msg, const TTime& timeSent)
{
ANotification* n = TReceivedChatMsg::Create(sender, msg, timeSent, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnReceivedAuthorizationMessage(
const TAuthorizationMessage& msg, const TStoredMailMessage& header)
{
ANotification* n = TReceivedAuthorizationMsg::Create(msg, header, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnReceivedMailMessage(const TStoredMailMessage& msg, const bool spam)
{
ANotification* n = TReceivedMailMsg::Create(msg, spam, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnReceivedUnsupportedMessage(const bts::bitchat::decrypted_message& msg)
{
ANotification* n = TReceivedUnsupportedMsg::Create(msg, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnMessageSaving()
{
ANotification* n = TNoDataNotification::Create([=]() {Sink.OnMessageSaving();}, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnMessageSaved(const TStoredMailMessage& msg,
const TStoredMailMessage* overwrittenOne)
{
ANotification* n = TPendingOrSavedMailMessage::Create(msg, overwrittenOne, true, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnMessageGroupPending(unsigned int count)
{
ANotification* n = TPendingMessageGroup::Create(count, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnMessagePending(const TStoredMailMessage& msg,
const TStoredMailMessage* savedDraftMsg)
{
ANotification* n = TPendingOrSavedMailMessage::Create(msg, savedDraftMsg, false, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnMessageGroupPendingEnd()
{
ANotification* n = TNoDataNotification::Create([=]() {Sink.OnMessageGroupPendingEnd();}, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnMessageSendingStart()
{
ANotification* n = TNoDataNotification::Create([=]() {Sink.OnMessageSendingStart();}, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnMessageSent(const TStoredMailMessage& pendingMsg,
const TStoredMailMessage& sentMsg, const TDigest& digest)
{
ANotification* n = TSentMailMessage::Create(pendingMsg, sentMsg, digest, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnMessageSendingEnd()
{
ANotification* n = TNoDataNotification::Create([=]() {Sink.OnMessageSendingEnd();}, Sink);
emit notificationSent(n);
}
void TConnectionProcessor::TThreadSafeGuiNotifier::OnMissingSenderIdentity(
const TRecipientPublicKey& senderId, const TPhysicalMailMessage& msg)
{
ANotification* n = TMissingSenderIdentity::Create(senderId, msg, Sink);
emit notificationSent(n);
}
///////////////////////////////////////////////////////////////////////////////////////////////////
/// TConnectionProcessor::TOutboxQueue ///
///////////////////////////////////////////////////////////////////////////////////////////////////
class TConnectionProcessor::TOutboxQueue
{
public:
TOutboxQueue(TConnectionProcessor& processor, const bts::profile_ptr& profile) :
Processor(processor)
{
Profile = profile;
App = bts::application::instance();
Outbox = profile->get_pending_db();
Sent = profile->get_sent_db();
CancelPromise = new fc::promise<void>;
checkForAvailableConnection();
}
/** Allows to add new pending message to the sending queue.
\param senderId - identity chosen to be specified as mail sender,
\param msg - mail message to be sent,
\param msg_type - message type: Normal, Forward, Reply
\param savedDraftMsg - optional, can be nullptr. If not null, it means that previously saved
draft message is about to send (it should be removed from Draft
folder).
*/
void AddPendingMessage(const TIdentity& senderId, const TPhysicalMailMessage& msg,
const TMsgType msg_type, const TStoredMailMessage* savedDraftMsg);
/** Allows to add new pending message to the sending queue.
\param senderId - identity chosen to be specified as maessage sender,
\param msg - authorization message to be sent,
*/
void AddPendingAuthoMsg(const TIdentity& senderId, const TRequestMessage& msg);
bool AnyOperationsPending() const;
/// Returns length of the queue.
unsigned int GetLength() const;
bool isTransmissionLoopActive() const
{
return TransferLoopComplete.valid() && TransferLoopComplete.ready() == false;
}
/// Method dedicated to cancel any transmission ie just before quiting the app.
void StopTransmission()
{
bool transferActive = isTransmissionLoopActive();
bool connectionActive = ConnectionCheckComplete.valid() &&
ConnectionCheckComplete.ready() == false;
if(transferActive || connectionActive)
{
CancelPromise->set_value();
if(ConnectionCheckComplete.valid())
{
ConnectionCheckComplete.cancel_and_wait();
}
if(TransferLoopComplete.valid())
{
TransferLoopComplete.cancel_and_wait();
}
}
}
void Release()
{
StopTransmission();
assert(AnyOperationsPending() == false);
delete this;
}
private:
virtual ~TOutboxQueue() {}
void transmissionLoop();
bool isConnected() const
{
auto network = App->get_network();
return static_cast<unsigned int>(network->get_connections().size()) > 0;
}
bool isMailConnected() const
{
return App->is_mail_connected();
}
void connectionCheckingLoop();
void startTransmission()
{
if(!TransferLoopComplete.valid() || TransferLoopComplete.ready())
TransferLoopComplete = fc::async([=]{ transmissionLoop(); });
}
void checkForAvailableConnection()
{
if(ConnectionCheckComplete.valid() == false || ConnectionCheckComplete.ready())
ConnectionCheckComplete = fc::async([=]{ connectionCheckingLoop(); });
}
bool isCancelled() const
{
return CancelPromise->ready();
}
bool fetchNextMessage(TStoredMailMessage* storedMsg, TPhysicalMailMessage* mail_msg,
TRequestMessage* auth_msg, bool* auth_flag);
bool transferMessage(const TRecipientPublicKey& senderId, const TPhysicalMailMessage& msg);
bool transferAuthMsg(const TRecipientPublicKey& senderId, const TRequestMessage& auth_msg);
void sendMail(const TPhysicalMailMessage& email, const TRecipientPublicKey& to,
const fc::ecc::private_key& from);
void sendAuthMsg(const TRequestMessage& auth_msg, const TRecipientPublicKey& to,
const fc::ecc::private_key& from);
/** Allows to get identity associated to given public key. Returns false if there is no
associated identity to given public key.
*/
bool findIdentity(const TRecipientPublicKey& senderId, TIdentity* identity) const;
/** Allows to get private key associated to given public key (held by one of defined identities).
Returns false if there is no associated identity to given public key.
*/
bool findIdentityPrivateKey(const TRecipientPublicKey& senderId,
bts::extended_private_key* key) const;
/// Allows to move already sent message from Outbox DB into Sent DB.
void moveMsgToSentDB(const TStoredMailMessage& storedMsg, const TPhysicalMailMessage& sentMsg);
private:
TConnectionProcessor& Processor;
bts::profile_ptr Profile;
bts::application_ptr App;
TMessageDB Outbox;
TMessageDB Sent;
fc::future<void> TransferLoopComplete;
fc::future<void> ConnectionCheckComplete;
fc::promise<void>::ptr CancelPromise;
mutable std::mutex OutboxDbLock;
};
void TConnectionProcessor::TOutboxQueue::AddPendingMessage(const TIdentity& senderId,
const TPhysicalMailMessage& msg, const TMsgType msg_type, const TStoredMailMessage* savedDraftMsg)
{
std::lock_guard<std::mutex> guard(OutboxDbLock);
TStorableMessage storableMsg;
Processor.PrepareStorableMessage(senderId, msg, &storableMsg);
TStoredMailMessage storedMsg = Outbox->store_message(storableMsg, nullptr);
switch (msg_type)
{
case TMsgType::Reply:
storedMsg.setTempReply();
break;
case TMsgType::Forward:
storedMsg.setTempForwa();
break;
default:
storedMsg.clearTemp();
break;
}
Outbox->store_message_header(storedMsg);
Processor.Sink->OnMessagePending(storedMsg, savedDraftMsg);
/// Try to start thread checking connection and next potential transmission
checkForAvailableConnection();
}
void TConnectionProcessor::TOutboxQueue::AddPendingAuthoMsg(const TIdentity& senderId, const TRequestMessage& msg)
{
std::lock_guard<std::mutex> guard(OutboxDbLock);
TStorableMessage storableMsg;
Processor.PrepareStorableAuthMsg(senderId, msg, &storableMsg);
TStoredMailMessage storedMsg = Outbox->store_message(storableMsg, nullptr);
/// Try to start thread checking connection and next potential transmission
checkForAvailableConnection();
}
bool TConnectionProcessor::TOutboxQueue::AnyOperationsPending() const
{
bool transferLoopActive = isTransmissionLoopActive();
std::lock_guard<std::mutex> guard(OutboxDbLock);
return transferLoopActive ? Outbox->fetch_headers(TPhysicalMailMessage::type).empty() : false;
}
unsigned int TConnectionProcessor::TOutboxQueue::GetLength() const
{
bool transferLoopCompleted = TransferLoopComplete.valid() == false || TransferLoopComplete.ready();
std::lock_guard<std::mutex> guard(OutboxDbLock);
return transferLoopCompleted ? 0 : Outbox->fetch_headers(TPhysicalMailMessage::type).size();
}
void TConnectionProcessor::TOutboxQueue::transmissionLoop()
{
bool notificationSent = false;
TPhysicalMailMessage mail_msg;
TRequestMessage auth_msg;
TStoredMailMessage storedMsg;
bool auth_flag = false;
while(!isCancelled() && fetchNextMessage(&storedMsg, &mail_msg, &auth_msg, &auth_flag))
{
if(!notificationSent)
{
Processor.Sink->OnMessageSendingStart();
notificationSent = true;
}
if(auth_flag)
{
if(transferAuthMsg(storedMsg.from_key, auth_msg))
Outbox->remove_message(storedMsg);
}
else
{
if(transferMessage(storedMsg.from_key, mail_msg))
moveMsgToSentDB(storedMsg, mail_msg);
}
if(isCancelled())
break;
fc::usleep(fc::milliseconds(250));
}
if(notificationSent)
Processor.Sink->OnMessageSendingEnd();
}
void TConnectionProcessor::TOutboxQueue::connectionCheckingLoop()
{
do
{
if(isMailConnected())
{
startTransmission();
return;
}
fc::usleep(fc::milliseconds(250));
}
while(CancelPromise->ready() == false);
}
bool TConnectionProcessor::TOutboxQueue::fetchNextMessage(TStoredMailMessage* storedMsg,
TPhysicalMailMessage* mail_msg, TRequestMessage* auth_msg, bool* auth_flag)
{
assert(storedMsg != nullptr);
assert(mail_msg != nullptr);
assert(auth_msg != nullptr);
std::lock_guard<std::mutex> guard(OutboxDbLock);
try
{
/// FIXME - message_db interface is terrible - there should be a way to query just for 1 object
auto pendingMsgHeaders = Outbox->fetch_headers(TPhysicalMailMessage::type);
auto pendingAuthHeaders = Outbox->fetch_headers(TRequestMessage::type);
if(pendingMsgHeaders.empty() && pendingAuthHeaders.empty())
return false;
if(!pendingMsgHeaders.empty())
{
*storedMsg = pendingMsgHeaders.front();
auto rawData = Outbox->fetch_data(storedMsg->digest);
*mail_msg = fc::raw::unpack<TPhysicalMailMessage>(rawData);
*auth_flag = false;
}
else if(!pendingAuthHeaders.empty())
{
*storedMsg = pendingAuthHeaders.front();
auto rawData = Outbox->fetch_data(storedMsg->digest);
*auth_msg = fc::raw::unpack<TRequestMessage>(rawData);
*auth_flag = true;
}
return true;
}
catch(const fc::exception& e)
{
elog("${e}", ("e", e.to_detail_string()));
return false;
}
}
bool TConnectionProcessor::TOutboxQueue::transferMessage(const TRecipientPublicKey& senderId,
const TPhysicalMailMessage& msg)
{
bool sendStatus = false;
try
{
bts::extended_private_key senderPrivKey;
if(findIdentityPrivateKey(senderId, &senderPrivKey))
{
TPhysicalMailMessage msgToSend(msg);
TRecipientPublicKeys bccList(msg.bcc_list);
/// \warning Message to be sent must have cleared bcc list.
msgToSend.bcc_list.clear();
size_t totalRecipientCount = msgToSend.to_list.size() + msgToSend.cc_list.size() + bccList.size();
for(const auto& public_key : msgToSend.to_list)
{
if(isCancelled())
return false;
sendMail(msgToSend, public_key, senderPrivKey);
}
for(const auto& public_key : msgToSend.cc_list)
{
if(isCancelled())
return false;
sendMail(msgToSend, public_key, senderPrivKey);
}
for(const auto& public_key : bccList)
{
if(isCancelled())
return false;
sendMail(msgToSend, public_key, senderPrivKey);
}
sendStatus = true;
}
else
{
Processor.Sink->OnMissingSenderIdentity(senderId, msg);
sendStatus = false;
}
}
catch(const fc::exception& e)
{
sendStatus = false;
elog("${e}", ("e", e.to_detail_string()));
/// Probably connection related error, try to start it again
checkForAvailableConnection();
}
return sendStatus;
}
bool TConnectionProcessor::TOutboxQueue::transferAuthMsg(const TRecipientPublicKey& senderId,
const TRequestMessage& auth_msg)
{
bool sendStatus = false;
try
{
bts::extended_private_key senderPrivKey;
if(findIdentityPrivateKey(senderId, &senderPrivKey))
sendAuthMsg(auth_msg, auth_msg.recipient, senderPrivKey);
sendStatus = true;
}
catch(const fc::exception& e)
{
sendStatus = false;
elog("${e}", ("e", e.to_detail_string()));
/// Probably connection related error, try to start it again
checkForAvailableConnection();
}
return sendStatus;
}
inline
void TConnectionProcessor::TOutboxQueue::sendMail(const TPhysicalMailMessage& email,
const TRecipientPublicKey& to, const fc::ecc::private_key& from)
{
if(isMailConnected())
{
App->send_email(email, to, from);
return;
}
FC_THROW("No connection to execute send_email");
}
inline
void TConnectionProcessor::TOutboxQueue::sendAuthMsg(const TRequestMessage& auth_msg,
const TRecipientPublicKey& to, const fc::ecc::private_key& from)
{
if(isMailConnected())
{
App->send_contact_request(auth_msg, to, from);
return;
}
FC_THROW("No connection to execute send_contact_request");
}
inline
bool TConnectionProcessor::TOutboxQueue::findIdentity(const TRecipientPublicKey& senderId,
TIdentity* identity) const
{
*identity = TIdentity();
for(const TIdentity& id : Profile->identities())
{
if(id.public_key == senderId)
{
*identity = id;
return true;
}
}
return false;
}
inline
bool TConnectionProcessor::TOutboxQueue::findIdentityPrivateKey(const TRecipientPublicKey& senderId,
bts::extended_private_key* key) const
{
*key = bts::extended_private_key();
TIdentity id;
if(findIdentity(senderId, &id))
{
*key = Profile->get_keychain().get_identity_key(id.dac_id_string);
return true;
}
return false;
}
void TConnectionProcessor::TOutboxQueue::moveMsgToSentDB(const TStoredMailMessage& pendingMsg,
const TPhysicalMailMessage& sentMsg)
{
try
{
TIdentity id;
bool result = findIdentity(pendingMsg.from_key, &id);
assert(result);
TStorableMessage storableMsg;
Processor.PrepareStorableMessage(id, sentMsg, &storableMsg);
TStoredMailMessage savedMsg = Sent->store_message(storableMsg, nullptr);
savedMsg.setRead();
Sent->store_message_header(savedMsg);
Processor.Sink->OnMessageSent(pendingMsg, savedMsg, sentMsg.src_msg_id);
std::lock_guard<std::mutex> guard(OutboxDbLock);
Outbox->remove_message(pendingMsg);
}
catch(const fc::exception& e)
{
elog("${e}", ("e", e.to_detail_string()));
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////
/// TConnectionProcessor ///
///////////////////////////////////////////////////////////////////////////////////////////////////
TConnectionProcessor::TConnectionProcessor(IGuiUpdateSink& updateSink,
const bts::profile_ptr& loadedProfile) :
Profile(loadedProfile),
TransmissionCancelled(false),
ReceivingMail(false)
{
Sink = new TThreadSafeGuiNotifier(updateSink);
App = bts::application::instance();
App->set_application_delegate(this);
Drafts = Profile->get_draft_db();
OutboxQueue = new TOutboxQueue(*this, Profile);
updateOptions();
}
TConnectionProcessor::~TConnectionProcessor()
{
App->set_application_delegate(nullptr);
delete Sink;
Sink = nullptr;
OutboxQueue->Release();
OutboxQueue = nullptr;
}
void TConnectionProcessor::Send(const TIdentity& senderId, const TPhysicalMailMessage& msg,
const TMsgType msg_type, const TStoredMailMessage* savedDraftMsg)
{
OutboxQueue->AddPendingMessage(senderId, msg, msg_type, savedDraftMsg);
}
IMailProcessor::TStoredMailMessage
TConnectionProcessor::Save(const TIdentity& senderId, const TPhysicalMailMessage& sourceMsg,
const TMsgType msg_type, const TStoredMailMessage* msgBeingReplaced)
{
Sink->OnMessageSaving();
TStorableMessage storableMsg;
PrepareStorableMessage(senderId, sourceMsg, &storableMsg);
//Modify digest by updating signature time for the draft email.
//Note that signature time is not true signature time of send, but
//time when this version of draft email is being saved.
storableMsg.sig_time = fc::time_point::now();
TStoredMailMessage savedMsg = Drafts->store_message(storableMsg,msgBeingReplaced);
switch (msg_type)
{
case TMsgType::Reply:
savedMsg.setTempReply();
break;
case TMsgType::Forward:
savedMsg.setTempForwa();
break;
default:
savedMsg.clearTemp();
break;
}
Drafts->store_message_header(savedMsg);
Sink->OnMessageSaved(savedMsg, msgBeingReplaced);
return savedMsg;
}
unsigned int TConnectionProcessor::GetPeerConnectionCount() const
{
return static_cast<unsigned int>(App->get_network()->get_connections().size());
}
bool TConnectionProcessor::IsMailConnected() const
{
return App->is_mail_connected();
}