Coding style.

This commit is contained in:
Jonathan Schleifer 2013-07-01 22:32:09 +02:00
parent fac12cfde9
commit ed5604447a
10 changed files with 60 additions and 60 deletions

View file

@ -55,13 +55,13 @@
selector: selector] autorelease]; selector: selector] autorelease];
} }
- initWithTarget: (id)target_ - initWithTarget: (id)target
selector: (SEL)selector_ selector: (SEL)selector
{ {
self = [super init]; self = [super init];
_target = [target_ retain]; _target = [target retain];
_selector = selector_; _selector = selector;
return self; return self;
} }

View file

@ -60,8 +60,8 @@
@interface XMPPConnection_ConnectThread: OFThread @interface XMPPConnection_ConnectThread: OFThread
{ {
OFThread *sourceThread; OFThread *_sourceThread;
XMPPConnection *connection; XMPPConnection *_connection;
} }
- initWithSourceThread: (OFThread*)sourceThread - initWithSourceThread: (OFThread*)sourceThread
@ -69,14 +69,14 @@
@end @end
@implementation XMPPConnection_ConnectThread @implementation XMPPConnection_ConnectThread
- initWithSourceThread: (OFThread*)sourceThread_ - initWithSourceThread: (OFThread*)sourceThread
connection: (XMPPConnection*)connection_ connection: (XMPPConnection*)connection
{ {
self = [super init]; self = [super init];
@try { @try {
sourceThread = [sourceThread_ retain]; _sourceThread = [sourceThread retain];
connection = [connection_ retain]; _connection = [connection retain];
} @catch (id e) { } @catch (id e) {
[self release]; [self release];
@throw e; @throw e;
@ -87,8 +87,8 @@
- (void)dealloc - (void)dealloc
{ {
[sourceThread release]; [_sourceThread release];
[connection release]; [_connection release];
[super dealloc]; [super dealloc];
} }
@ -97,17 +97,17 @@
{ {
[self join]; [self join];
[connection handleConnection]; [_connection handleConnection];
} }
- (id)main - (id)main
{ {
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
[connection connect]; [_connection connect];
[self performSelector: @selector(didConnect) [self performSelector: @selector(didConnect)
onThread: sourceThread onThread: _sourceThread
waitUntilDone: false]; waitUntilDone: false];
[pool release]; [pool release];
@ -237,21 +237,21 @@
return [[_server copy] autorelease]; return [[_server copy] autorelease];
} }
- (void)setDomain: (OFString*)domain_ - (void)setDomain: (OFString*)domain
{ {
OFString *oldDomain = _domain; OFString *oldDomain = _domain;
OFString *oldDomainToASCII = _domainToASCII; OFString *oldDomainToASCII = _domainToASCII;
if (domain_ != nil) { if (domain != nil) {
char *srv; char *srv;
Stringprep_rc rc; Stringprep_rc rc;
if ((rc = stringprep_profile([domain_ UTF8String], &srv, if ((rc = stringprep_profile([domain UTF8String], &srv,
"Nameprep", 0)) != STRINGPREP_OK) "Nameprep", 0)) != STRINGPREP_OK)
@throw [XMPPStringPrepFailedException @throw [XMPPStringPrepFailedException
exceptionWithConnection: self exceptionWithConnection: self
profile: @"Nameprep" profile: @"Nameprep"
string: domain_]; string: domain];
@try { @try {
_domain = [[OFString alloc] initWithUTF8String: srv]; _domain = [[OFString alloc] initWithUTF8String: srv];
@ -1201,18 +1201,18 @@
withObject: _JID]; withObject: _JID];
} }
- (OFString*)XMPP_IDNAToASCII: (OFString*)domain_ - (OFString*)XMPP_IDNAToASCII: (OFString*)domain
{ {
OFString *ret; OFString *ret;
char *cDomain; char *cDomain;
Idna_rc rc; Idna_rc rc;
if ((rc = idna_to_ascii_8z([domain_ UTF8String], if ((rc = idna_to_ascii_8z([domain UTF8String],
&cDomain, IDNA_USE_STD3_ASCII_RULES)) != IDNA_SUCCESS) &cDomain, IDNA_USE_STD3_ASCII_RULES)) != IDNA_SUCCESS)
@throw [XMPPIDNATranslationFailedException @throw [XMPPIDNATranslationFailedException
exceptionWithConnection: self exceptionWithConnection: self
operation: @"ToASCII" operation: @"ToASCII"
string: domain_]; string: domain];
@try { @try {
ret = [[OFString alloc] initWithUTF8String: cDomain]; ret = [[OFString alloc] initWithUTF8String: cDomain];

View file

@ -28,15 +28,15 @@
#import "XMPPRosterItem.h" #import "XMPPRosterItem.h"
@implementation XMPPContactManager @implementation XMPPContactManager
- initWithConnection: (XMPPConnection*)connection_ - initWithConnection: (XMPPConnection*)connection
roster: (XMPPRoster*)roster_ roster: (XMPPRoster*)roster
{ {
self = [super init]; self = [super init];
@try { @try {
_connection = connection_; _connection = connection;
[_connection addDelegate: self]; [_connection addDelegate: self];
_roster = roster_; _roster = roster;
[_roster addDelegate: self]; [_roster addDelegate: self];
_contacts = [[OFMutableDictionary alloc] init]; _contacts = [[OFMutableDictionary alloc] init];
_delegates = [[XMPPMulticastDelegate alloc] init]; _delegates = [[XMPPMulticastDelegate alloc] init];
@ -89,7 +89,7 @@
OF_GETTER(_contacts, true) OF_GETTER(_contacts, true)
} }
- (void)rosterWasReceived: (XMPPRoster*)roster_ - (void)rosterWasReceived: (XMPPRoster*)roster
{ {
OFEnumerator *contactEnumerator; OFEnumerator *contactEnumerator;
XMPPContact *contact; XMPPContact *contact;
@ -107,10 +107,10 @@
[_contacts release]; [_contacts release];
_contacts = [[OFMutableDictionary alloc] init]; _contacts = [[OFMutableDictionary alloc] init];
rosterItems = [roster_ rosterItems]; rosterItems = [roster rosterItems];
rosterItemEnumerator = [rosterItems keyEnumerator]; rosterItemEnumerator = [rosterItems keyEnumerator];
while ((bareJID = [rosterItemEnumerator nextObject]) != nil) { while ((bareJID = [rosterItemEnumerator nextObject]) != nil) {
contact = [[XMPPContact new] autorelease]; contact = [[[XMPPContact alloc] init] autorelease];
[contact XMPP_setRosterItem: [contact XMPP_setRosterItem:
[rosterItems objectForKey: bareJID]]; [rosterItems objectForKey: bareJID]];
[_contacts setObject: contact [_contacts setObject: contact
@ -141,7 +141,7 @@
} }
if (contact == nil) { if (contact == nil) {
contact = [[XMPPContact new] autorelease]; contact = [[[XMPPContact alloc] init] autorelease];
[contact XMPP_setRosterItem: rosterItem]; [contact XMPP_setRosterItem: rosterItem];
[_contacts setObject: contact [_contacts setObject: contact
forKey: bareJID]; forKey: bareJID];

View file

@ -51,7 +51,7 @@
node: nil]; node: nil];
@try { @try {
_discoNodes = [OFMutableDictionary new]; _discoNodes = [[OFMutableDictionary alloc] init];
_connection = connection; _connection = connection;
_capsNode = [capsNode copy]; _capsNode = [capsNode copy];

View file

@ -61,16 +61,16 @@
self = [super init]; self = [super init];
@try { @try {
if ((JID == nil) && if (JID == nil &&
![self isKindOfClass: [XMPPDiscoEntity class]]) ![self isKindOfClass: [XMPPDiscoEntity class]])
@throw [OFInvalidArgumentException exception]; @throw [OFInvalidArgumentException exception];
_JID = [JID copy]; _JID = [JID copy];
_node = [node copy]; _node = [node copy];
_name = [name copy]; _name = [name copy];
_identities = [OFSortedList new]; _identities = [[OFSortedList alloc] init];
_features = [OFSortedList new]; _features = [[OFSortedList alloc] init];
_childNodes = [OFMutableDictionary new]; _childNodes = [[OFMutableDictionary alloc] init];
[self addFeature: XMPP_NS_DISCO_ITEMS]; [self addFeature: XMPP_NS_DISCO_ITEMS];
[self addFeature: XMPP_NS_DISCO_INFO]; [self addFeature: XMPP_NS_DISCO_INFO];

View file

@ -55,14 +55,14 @@
self = [super init]; self = [super init];
@try { @try {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
_file = [file copy]; _file = [file copy];
@try { @try {
_data = [[[OFDataArray dataArrayWithContentsOfFile: _data = [[[OFDataArray dataArrayWithContentsOfFile:
file] messagePackValue] retain]; file] messagePackValue] retain];
} @catch (id e) { } @catch (id e) {
_data = [OFMutableDictionary new]; _data = [[OFMutableDictionary alloc] init];
} }
[pool release]; [pool release];
@ -134,7 +134,7 @@
- (void)setStringValue: (OFString*)string - (void)setStringValue: (OFString*)string
forPath: (OFString*)path forPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
[self XMPP_setObject: string [self XMPP_setObject: string
forPath: path]; forPath: path];
@ -144,7 +144,7 @@
- (OFString*)stringValueForPath: (OFString*)path - (OFString*)stringValueForPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
OFString *string; OFString *string;
string = [self XMPP_objectForPath: path]; string = [self XMPP_objectForPath: path];
@ -157,7 +157,7 @@
- (void)setBooleanValue: (bool)boolean - (void)setBooleanValue: (bool)boolean
forPath: (OFString*)path forPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
[self XMPP_setObject: [OFNumber numberWithBool: boolean] [self XMPP_setObject: [OFNumber numberWithBool: boolean]
forPath: path]; forPath: path];
@ -167,7 +167,7 @@
- (bool)booleanValueForPath: (OFString*)path - (bool)booleanValueForPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
bool boolean; bool boolean;
boolean = [[self XMPP_objectForPath: path] boolValue]; boolean = [[self XMPP_objectForPath: path] boolValue];
@ -180,7 +180,7 @@
- (void)setIntegerValue: (intmax_t)integer - (void)setIntegerValue: (intmax_t)integer
forPath: (OFString*)path forPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
[self XMPP_setObject: [OFNumber numberWithIntMax: integer] [self XMPP_setObject: [OFNumber numberWithIntMax: integer]
forPath: path]; forPath: path];
@ -190,7 +190,7 @@
- (intmax_t)integerValueForPath: (OFString*)path - (intmax_t)integerValueForPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
intmax_t integer; intmax_t integer;
integer = [[self XMPP_objectForPath: path] intMaxValue]; integer = [[self XMPP_objectForPath: path] intMaxValue];
@ -203,7 +203,7 @@
- (void)setArray: (OFArray*)array - (void)setArray: (OFArray*)array
forPath: (OFString*)path forPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
[self XMPP_setObject: array [self XMPP_setObject: array
forPath: path]; forPath: path];
@ -213,7 +213,7 @@
- (OFArray*)arrayForPath: (OFString*)path - (OFArray*)arrayForPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
OFArray *array; OFArray *array;
array = [self XMPP_objectForPath: path]; array = [self XMPP_objectForPath: path];
@ -226,7 +226,7 @@
- (void)setDictionary: (OFDictionary*)dictionary - (void)setDictionary: (OFDictionary*)dictionary
forPath: (OFString*)path forPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
[self XMPP_setObject: dictionary [self XMPP_setObject: dictionary
forPath: path]; forPath: path];
@ -236,7 +236,7 @@
- (OFDictionary*)dictionaryForPath: (OFString*)path - (OFDictionary*)dictionaryForPath: (OFString*)path
{ {
OFAutoreleasePool *pool = [OFAutoreleasePool new]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
OFDictionary *dictionary; OFDictionary *dictionary;
dictionary = [self XMPP_objectForPath: path]; dictionary = [self XMPP_objectForPath: path];

View file

@ -64,7 +64,7 @@
return ret; return ret;
} }
- (XMPPIQ*)errorIQWithType: (OFString*)type_ - (XMPPIQ*)errorIQWithType: (OFString*)type
condition: (OFString*)condition condition: (OFString*)condition
text: (OFString*)text text: (OFString*)text
{ {
@ -75,7 +75,7 @@
namespace: XMPP_NS_CLIENT]; namespace: XMPP_NS_CLIENT];
[error addAttributeWithName: @"type" [error addAttributeWithName: @"type"
stringValue: type_]; stringValue: type];
[error addChild: [OFXMLElement elementWithName: condition [error addChild: [OFXMLElement elementWithName: condition
namespace: XMPP_NS_STANZAS]]; namespace: XMPP_NS_STANZAS]];
if (text) if (text)
@ -91,10 +91,10 @@
return ret; return ret;
} }
- (XMPPIQ*)errorIQWithType: (OFString*)type_ - (XMPPIQ*)errorIQWithType: (OFString*)type
condition: (OFString*)condition condition: (OFString*)condition
{ {
return [self errorIQWithType: type_ return [self errorIQWithType: type
condition: condition condition: condition
text: nil]; text: nil];
} }

View file

@ -40,13 +40,13 @@
#import "namespaces.h" #import "namespaces.h"
@implementation XMPPRoster @implementation XMPPRoster
- initWithConnection: (XMPPConnection*)connection_ - initWithConnection: (XMPPConnection*)connection
{ {
self = [super init]; self = [super init];
@try { @try {
_rosterItems = [[OFMutableDictionary alloc] init]; _rosterItems = [[OFMutableDictionary alloc] init];
_connection = connection_; _connection = connection;
[_connection addDelegate: self]; [_connection addDelegate: self];
_delegates = [[XMPPMulticastDelegate alloc] init]; _delegates = [[XMPPMulticastDelegate alloc] init];
_dataStorage = [_connection dataStorage]; _dataStorage = [_connection dataStorage];
@ -355,7 +355,7 @@
![[element namespace] isEqual: XMPP_NS_ROSTER]) ![[element namespace] isEqual: XMPP_NS_ROSTER])
continue; continue;
pool = [OFAutoreleasePool new]; pool = [[OFAutoreleasePool alloc] init];
rosterItem = [self XMPP_rosterItemWithXMLElement: element]; rosterItem = [self XMPP_rosterItemWithXMLElement: element];
[self XMPP_updateRosterItem: rosterItem]; [self XMPP_updateRosterItem: rosterItem];

View file

@ -114,8 +114,8 @@
- (OFString*)XMPP_genNonce; - (OFString*)XMPP_genNonce;
- (uint8_t*)XMPP_HMACWithKey: (OFDataArray*)key - (uint8_t*)XMPP_HMACWithKey: (OFDataArray*)key
data: (OFDataArray*)data; data: (OFDataArray*)data;
- (OFDataArray*)XMPP_hiWithData: (OFDataArray *)str - (OFDataArray*)XMPP_hiWithData: (OFDataArray*)str
salt: (OFDataArray *)salt_ salt: (OFDataArray*)salt
iterationCount: (intmax_t)i; iterationCount: (intmax_t)i;
- (OFDataArray*)XMPP_parseServerFirstMessage: (OFDataArray*)data; - (OFDataArray*)XMPP_parseServerFirstMessage: (OFDataArray*)data;
- (OFDataArray*)XMPP_parseServerFinalMessage: (OFDataArray*)data; - (OFDataArray*)XMPP_parseServerFinalMessage: (OFDataArray*)data;

View file

@ -474,8 +474,8 @@
return [[hashO autorelease] digest]; return [[hashO autorelease] digest];
} }
- (OFDataArray*)XMPP_hiWithData: (OFDataArray *)str - (OFDataArray*)XMPP_hiWithData: (OFDataArray*)str
salt: (OFDataArray *)salt_ salt: (OFDataArray*)salt
iterationCount: (intmax_t)i iterationCount: (intmax_t)i
{ {
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
@ -489,7 +489,7 @@
@try { @try {
memset(result, 0, digestSize); memset(result, 0, digestSize);
salty = [[salt_ copy] autorelease]; salty = [[salt copy] autorelease];
[salty addItems: "\0\0\0\1" [salty addItems: "\0\0\0\1"
count: 4]; count: 4];
@ -500,7 +500,7 @@
result[j] ^= uOld[j]; result[j] ^= uOld[j];
for (j = 0; j < i - 1; j++) { for (j = 0; j < i - 1; j++) {
tmp = [OFDataArray new]; tmp = [[OFDataArray alloc] init];
[tmp addItems: uOld [tmp addItems: uOld
count: digestSize]; count: digestSize];