201 lines
6.0 KiB
Objective-C
201 lines
6.0 KiB
Objective-C
//
|
|
// MGMSIP.h
|
|
// VoiceBase
|
|
//
|
|
// Created by Mr. Gecko on 9/10/10.
|
|
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). http://mrgeckosmedia.com/
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
// with or without fee is hereby granted, provided that the above copyright notice
|
|
// and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
// FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
|
|
// OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
// DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
// ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
//
|
|
|
|
#if MGMSIPENABLED
|
|
#import <Foundation/Foundation.h>
|
|
#if !TARGET_OS_IPHONE
|
|
#import <SystemConfiguration/SystemConfiguration.h>
|
|
#endif
|
|
#import <pjsua-lib/pjsua.h>
|
|
|
|
@class MGMSIPAccount, MGMSIPCall;
|
|
|
|
extern NSString * const MGMSIPOutboundProxy;
|
|
extern NSString * const MGMSIPOutboundProxyPort;
|
|
extern NSString * const MGMSIPSTUN;
|
|
extern NSString * const MGMSIPSTUNPort;
|
|
extern NSString * const MGMSIPLogFile;
|
|
extern NSString * const MGMSIPLogLevel;
|
|
extern NSString * const MGMSIPConsoleLogLevel;
|
|
extern NSString * const MGMSIPVoiceActivityDetection;
|
|
extern NSString * const MGMSIPInteractiveConnectivityEstablishment;
|
|
extern NSString * const MGMSIPNameServersEnabled;
|
|
extern NSString * const MGMSIPEchoCacnellationEnabled;
|
|
extern NSString * const MGMSIPPort;
|
|
extern NSString * const MGMSIPPublicAddress;
|
|
extern NSString * const MGMSIPUserAgent;
|
|
extern NSString * const MGMSIPCodec;
|
|
|
|
extern NSString * const MGMNetworkConnectedNotification;
|
|
extern NSString * const MGMNetworkDisconnectedNotification;
|
|
|
|
extern NSString * const MGMSIPVolume;
|
|
extern NSString * const MGMSIPMicVolume;
|
|
extern NSString * const MGMSIPVolumeChangedNotification;
|
|
extern NSString * const MGMSIPMicVolumeChangedNotification;
|
|
|
|
extern NSString * const MGMSIPADeviceIdentifier;
|
|
extern NSString * const MGMSIPADeviceIndex;
|
|
extern NSString * const MGMSIPADeviceUID;
|
|
extern NSString * const MGMSIPADeviceName;
|
|
extern NSString * const MGMSIPADeviceInputCount;
|
|
extern NSString * const MGMSIPADeviceOutputCount;
|
|
extern NSString * const MGMSIPADeviceIsDefaultInput;
|
|
extern NSString * const MGMSIPADeviceIsDefaultOutput;
|
|
|
|
extern NSString * const MGMSIPACurrentInputDevice;
|
|
extern NSString * const MGMSIPACurrentOutputDevice;
|
|
extern NSString * const MGMSIPASystemDefault;
|
|
extern NSString * const MGMSIPAudioChangedNotification;
|
|
|
|
@protocol MGMSIPDelegate <NSObject>
|
|
- (void)SIPStarted;
|
|
- (void)SIPStopped;
|
|
- (void)accountLoggedIn:(MGMSIPAccount *)theAccount;
|
|
- (void)accountLoggedOut:(MGMSIPAccount *)theAccount;
|
|
- (void)receivedNewCall:(MGMSIPCall *)theCall;
|
|
- (void)startingNewCall:(MGMSIPCall *)theCall;
|
|
- (void)gotNewCall:(MGMSIPCall *)theCall;
|
|
@end
|
|
|
|
typedef enum {
|
|
MGMSIPNULLState = -1,
|
|
MGMSIPStoppedState = 0,
|
|
MGMSIPStartingState = 1,
|
|
MGMSIPStartedState = 2,
|
|
MGMSIPStoppingState = 3
|
|
} MGMSIPState;
|
|
|
|
typedef enum {
|
|
MGMSIPNATUnknownType = PJ_STUN_NAT_TYPE_UNKNOWN,
|
|
MGMSIPNATErrorUnknownType = PJ_STUN_NAT_TYPE_ERR_UNKNOWN,
|
|
MGMSIPNATOpen = PJ_STUN_NAT_TYPE_OPEN,
|
|
MGMSIPNATBlocked = PJ_STUN_NAT_TYPE_BLOCKED,
|
|
MGMSIPNATSymmetricUDP = PJ_STUN_NAT_TYPE_SYMMETRIC_UDP,
|
|
MGMSIPNATFullCone = PJ_STUN_NAT_TYPE_FULL_CONE,
|
|
MGMSIPNATSymmetric = PJ_STUN_NAT_TYPE_SYMMETRIC,
|
|
MGMSIPNATRestricted = PJ_STUN_NAT_TYPE_RESTRICTED,
|
|
MGMSIPNATPortRestricted = PJ_STUN_NAT_TYPE_PORT_RESTRICTED
|
|
} MGMSIPNATType;
|
|
|
|
@interface MGMSIP : NSObject {
|
|
id<MGMSIPDelegate> delegate;
|
|
NSLock *lock;
|
|
MGMSIPState state;
|
|
|
|
pj_pool_t *PJPool;
|
|
int port;
|
|
pjsua_media_config mediaConfig;
|
|
pjmedia_port *ringbackPort;
|
|
pjsua_conf_port_id ringbackSlot;
|
|
pjsua_transport_id UDPTransport;
|
|
pjsua_acc_id UDPAccount;
|
|
pjsua_transport_id TCPTransport;
|
|
pjsua_acc_id TCPAccount;
|
|
MGMSIPNATType NATType;
|
|
|
|
BOOL shouldRestart;
|
|
NSTimer *restartTimer;
|
|
|
|
unsigned int codecOriginalPriority;
|
|
NSMutableDictionary *codecsInfo;
|
|
|
|
NSMutableArray *accounts;
|
|
NSMutableArray *restartAccounts;
|
|
#if !TARGET_OS_IPHONE
|
|
NSArray *audioDevices;
|
|
int lastInputDevice;
|
|
int lastOutputDevice;
|
|
#endif
|
|
|
|
int ringbackCount;
|
|
|
|
#if !TARGET_OS_IPHONE
|
|
SCDynamicStoreRef store;
|
|
CFRunLoopSourceRef storeRunLoop;
|
|
#endif
|
|
}
|
|
+ (MGMSIP *)sharedSIP;
|
|
|
|
- (void)registerDefaults;
|
|
|
|
- (id<MGMSIPDelegate>)delegate;
|
|
- (void)setDelegate:(id)theDelegate;
|
|
|
|
- (MGMSIPState)state;
|
|
- (BOOL)isStarted;
|
|
- (pj_pool_t *)PJPool;
|
|
- (int)port;
|
|
- (void)setPort:(int)thePort;
|
|
- (pjsua_media_config)mediaConfig;
|
|
- (pjmedia_port *)ringbackPort;
|
|
- (pjsua_conf_port_id)ringbackSlot;
|
|
- (pjsua_transport_id)UDPTransport;
|
|
- (pjsua_acc_id)UDPAccount;
|
|
- (pjsua_transport_id)TCPTransport;
|
|
- (pjsua_acc_id)TCPAccount;
|
|
- (MGMSIPNATType)NATType;
|
|
- (void)setNATType:(MGMSIPNATType)theNATType;
|
|
|
|
- (void)start;
|
|
- (void)stop;
|
|
- (void)restart;
|
|
- (void)computerSleep;
|
|
- (void)computerWake;
|
|
|
|
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_4_0
|
|
- (void)keepAlive;
|
|
#endif
|
|
|
|
- (void)registerThread:(pj_thread_desc *)thePJThreadDesc;
|
|
|
|
- (void)setTopCodec:(NSString *)theCodec;
|
|
- (void)setPriority:(unsigned int)thePriority forCodec:(NSString *)theCodec;
|
|
- (NSDictionary *)codecs;
|
|
|
|
- (void)loginToAccount:(MGMSIPAccount *)theAccount;
|
|
- (void)logoutOfAccount:(MGMSIPAccount *)theAccount;
|
|
|
|
- (NSArray *)accounts;
|
|
- (pjsua_acc_id)accountIDForUserName:(NSString *)theUserName;
|
|
- (MGMSIPAccount *)accountWithIdentifier:(pjsua_acc_id)theIdentifier;
|
|
|
|
- (int)ringbackCount;
|
|
- (void)setRingbackCount:(int)theRingbackCount;
|
|
|
|
- (void)hangUpAllCalls;
|
|
|
|
- (float)volume;
|
|
- (void)setVolume:(float)theVolume;
|
|
- (float)micVolume;
|
|
- (void)setMicVolume:(float)theVolume;
|
|
|
|
#if !TARGET_OS_IPHONE
|
|
- (BOOL)setInputSoundDevice:(int)theInputDevice outputSoundDevice:(int)theOutputDevice;
|
|
- (BOOL)stopAudio;
|
|
- (void)updateAudioDevices;
|
|
- (NSArray *)audioDevices;
|
|
#endif
|
|
|
|
- (void)receivedNewCall:(MGMSIPCall *)theCall;
|
|
- (void)startingNewCall:(MGMSIPCall *)theCall;
|
|
- (NSArray *)calls;
|
|
- (MGMSIPCall *)callWithIdentifier:(pjsua_call_id)theIdentifier;
|
|
@end
|
|
#endif |