mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
243 lines
8.5 KiB
Objective-C
243 lines
8.5 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "SSKEnvironment.h"
|
|
#import "AppContext.h"
|
|
#import "OWSPrimaryStorage.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
static SSKEnvironment *sharedSSKEnvironment;
|
|
|
|
@interface SSKEnvironment ()
|
|
|
|
@property (nonatomic) id<ContactsManagerProtocol> contactsManager;
|
|
@property (nonatomic) OWSMessageSender *messageSender;
|
|
@property (nonatomic) id<ProfileManagerProtocol> profileManager;
|
|
@property (nonatomic) OWSPrimaryStorage *primaryStorage;
|
|
@property (nonatomic) ContactsUpdater *contactsUpdater;
|
|
@property (nonatomic) TSNetworkManager *networkManager;
|
|
@property (nonatomic) OWSMessageManager *messageManager;
|
|
@property (nonatomic) OWSBlockingManager *blockingManager;
|
|
@property (nonatomic) OWSIdentityManager *identityManager;
|
|
@property (nonatomic) id<OWSUDManager> udManager;
|
|
@property (nonatomic) OWSMessageDecrypter *messageDecrypter;
|
|
@property (nonatomic) OWSBatchMessageProcessor *batchMessageProcessor;
|
|
@property (nonatomic) OWSMessageReceiver *messageReceiver;
|
|
@property (nonatomic) TSSocketManager *socketManager;
|
|
@property (nonatomic) TSAccountManager *tsAccountManager;
|
|
@property (nonatomic) OWS2FAManager *ows2FAManager;
|
|
@property (nonatomic) OWSDisappearingMessagesJob *disappearingMessagesJob;
|
|
@property (nonatomic) ContactDiscoveryService *contactDiscoveryService;
|
|
@property (nonatomic) OWSReadReceiptManager *readReceiptManager;
|
|
@property (nonatomic) OWSOutgoingReceiptManager *outgoingReceiptManager;
|
|
@property (nonatomic) id<OWSSyncManagerProtocol> syncManager;
|
|
@property (nonatomic) id<SSKReachabilityManager> reachabilityManager;
|
|
@property (nonatomic) id<OWSTypingIndicators> typingIndicators;
|
|
@property (nonatomic) OWSAttachmentDownloads *attachmentDownloads;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation SSKEnvironment
|
|
|
|
@synthesize callMessageHandler = _callMessageHandler;
|
|
@synthesize notificationsManager = _notificationsManager;
|
|
@synthesize objectReadWriteConnection = _objectReadWriteConnection;
|
|
@synthesize sessionStoreDBConnection = _sessionStoreDBConnection;
|
|
@synthesize migrationDBConnection = _migrationDBConnection;
|
|
@synthesize analyticsDBConnection = _analyticsDBConnection;
|
|
|
|
- (instancetype)initWithContactsManager:(id<ContactsManagerProtocol>)contactsManager
|
|
messageSender:(OWSMessageSender *)messageSender
|
|
messageSenderJobQueue:(SSKMessageSenderJobQueue *)messageSenderJobQueue
|
|
profileManager:(id<ProfileManagerProtocol>)profileManager
|
|
primaryStorage:(OWSPrimaryStorage *)primaryStorage
|
|
contactsUpdater:(ContactsUpdater *)contactsUpdater
|
|
networkManager:(TSNetworkManager *)networkManager
|
|
messageManager:(OWSMessageManager *)messageManager
|
|
blockingManager:(OWSBlockingManager *)blockingManager
|
|
identityManager:(OWSIdentityManager *)identityManager
|
|
udManager:(id<OWSUDManager>)udManager
|
|
messageDecrypter:(OWSMessageDecrypter *)messageDecrypter
|
|
batchMessageProcessor:(OWSBatchMessageProcessor *)batchMessageProcessor
|
|
messageReceiver:(OWSMessageReceiver *)messageReceiver
|
|
socketManager:(TSSocketManager *)socketManager
|
|
tsAccountManager:(TSAccountManager *)tsAccountManager
|
|
ows2FAManager:(OWS2FAManager *)ows2FAManager
|
|
disappearingMessagesJob:(OWSDisappearingMessagesJob *)disappearingMessagesJob
|
|
contactDiscoveryService:(ContactDiscoveryService *)contactDiscoveryService
|
|
readReceiptManager:(OWSReadReceiptManager *)readReceiptManager
|
|
outgoingReceiptManager:(OWSOutgoingReceiptManager *)outgoingReceiptManager
|
|
reachabilityManager:(id<SSKReachabilityManager>)reachabilityManager
|
|
syncManager:(id<OWSSyncManagerProtocol>)syncManager
|
|
typingIndicators:(id<OWSTypingIndicators>)typingIndicators
|
|
attachmentDownloads:(OWSAttachmentDownloads *)attachmentDownloads
|
|
{
|
|
self = [super init];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
OWSAssertDebug(contactsManager);
|
|
OWSAssertDebug(messageSender);
|
|
OWSAssertDebug(messageSenderJobQueue);
|
|
OWSAssertDebug(profileManager);
|
|
OWSAssertDebug(primaryStorage);
|
|
OWSAssertDebug(contactsUpdater);
|
|
OWSAssertDebug(networkManager);
|
|
OWSAssertDebug(messageManager);
|
|
OWSAssertDebug(blockingManager);
|
|
OWSAssertDebug(identityManager);
|
|
OWSAssertDebug(udManager);
|
|
OWSAssertDebug(messageDecrypter);
|
|
OWSAssertDebug(batchMessageProcessor);
|
|
OWSAssertDebug(messageReceiver);
|
|
OWSAssertDebug(socketManager);
|
|
OWSAssertDebug(tsAccountManager);
|
|
OWSAssertDebug(ows2FAManager);
|
|
OWSAssertDebug(disappearingMessagesJob);
|
|
OWSAssertDebug(contactDiscoveryService);
|
|
OWSAssertDebug(readReceiptManager);
|
|
OWSAssertDebug(outgoingReceiptManager);
|
|
OWSAssertDebug(syncManager);
|
|
OWSAssertDebug(reachabilityManager);
|
|
OWSAssertDebug(typingIndicators);
|
|
OWSAssertDebug(attachmentDownloads);
|
|
|
|
_contactsManager = contactsManager;
|
|
_messageSender = messageSender;
|
|
_messageSenderJobQueue = messageSenderJobQueue;
|
|
_profileManager = profileManager;
|
|
_primaryStorage = primaryStorage;
|
|
_contactsUpdater = contactsUpdater;
|
|
_networkManager = networkManager;
|
|
_messageManager = messageManager;
|
|
_blockingManager = blockingManager;
|
|
_identityManager = identityManager;
|
|
_udManager = udManager;
|
|
_messageDecrypter = messageDecrypter;
|
|
_batchMessageProcessor = batchMessageProcessor;
|
|
_messageReceiver = messageReceiver;
|
|
_socketManager = socketManager;
|
|
_tsAccountManager = tsAccountManager;
|
|
_ows2FAManager = ows2FAManager;
|
|
_disappearingMessagesJob = disappearingMessagesJob;
|
|
_contactDiscoveryService = contactDiscoveryService;
|
|
_readReceiptManager = readReceiptManager;
|
|
_outgoingReceiptManager = outgoingReceiptManager;
|
|
_syncManager = syncManager;
|
|
_reachabilityManager = reachabilityManager;
|
|
_typingIndicators = typingIndicators;
|
|
_attachmentDownloads = attachmentDownloads;
|
|
|
|
return self;
|
|
}
|
|
|
|
+ (instancetype)shared
|
|
{
|
|
OWSAssertDebug(sharedSSKEnvironment);
|
|
|
|
return sharedSSKEnvironment;
|
|
}
|
|
|
|
+ (void)setShared:(SSKEnvironment *)env
|
|
{
|
|
OWSAssertDebug(env);
|
|
OWSAssertDebug(!sharedSSKEnvironment || CurrentAppContext().isRunningTests);
|
|
|
|
sharedSSKEnvironment = env;
|
|
}
|
|
|
|
+ (void)clearSharedForTests
|
|
{
|
|
sharedSSKEnvironment = nil;
|
|
}
|
|
|
|
#pragma mark - Mutable Accessors
|
|
|
|
- (nullable id<OWSCallMessageHandler>)callMessageHandler
|
|
{
|
|
@synchronized(self) {
|
|
OWSAssertDebug(_callMessageHandler);
|
|
|
|
return _callMessageHandler;
|
|
}
|
|
}
|
|
|
|
- (void)setCallMessageHandler:(nullable id<OWSCallMessageHandler>)callMessageHandler
|
|
{
|
|
@synchronized(self) {
|
|
OWSAssertDebug(callMessageHandler);
|
|
OWSAssertDebug(!_callMessageHandler);
|
|
|
|
_callMessageHandler = callMessageHandler;
|
|
}
|
|
}
|
|
|
|
- (nullable id<NotificationsProtocol>)notificationsManager
|
|
{
|
|
@synchronized(self) {
|
|
OWSAssertDebug(_notificationsManager);
|
|
|
|
return _notificationsManager;
|
|
}
|
|
}
|
|
|
|
- (void)setNotificationsManager:(nullable id<NotificationsProtocol>)notificationsManager
|
|
{
|
|
@synchronized(self) {
|
|
OWSAssertDebug(notificationsManager);
|
|
OWSAssertDebug(!_notificationsManager);
|
|
|
|
_notificationsManager = notificationsManager;
|
|
}
|
|
}
|
|
|
|
- (BOOL)isComplete
|
|
{
|
|
return (self.callMessageHandler != nil && self.notificationsManager != nil);
|
|
}
|
|
|
|
- (YapDatabaseConnection *)objectReadWriteConnection
|
|
{
|
|
@synchronized(self) {
|
|
if (!_objectReadWriteConnection) {
|
|
_objectReadWriteConnection = self.primaryStorage.newDatabaseConnection;
|
|
}
|
|
return _objectReadWriteConnection;
|
|
}
|
|
}
|
|
|
|
- (YapDatabaseConnection *)sessionStoreDBConnection {
|
|
@synchronized(self) {
|
|
if (!_sessionStoreDBConnection) {
|
|
_sessionStoreDBConnection = self.primaryStorage.newDatabaseConnection;
|
|
}
|
|
return _sessionStoreDBConnection;
|
|
}
|
|
}
|
|
|
|
- (YapDatabaseConnection *)migrationDBConnection {
|
|
@synchronized(self) {
|
|
if (!_migrationDBConnection) {
|
|
_migrationDBConnection = self.primaryStorage.newDatabaseConnection;
|
|
}
|
|
return _migrationDBConnection;
|
|
}
|
|
}
|
|
|
|
- (YapDatabaseConnection *)analyticsDBConnection {
|
|
@synchronized(self) {
|
|
if (!_analyticsDBConnection) {
|
|
_analyticsDBConnection = self.primaryStorage.newDatabaseConnection;
|
|
}
|
|
return _analyticsDBConnection;
|
|
}
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|