Overview
Comment: | Port to ObjC1. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7f37e545cfcebaba2be9b426cdd4fc2c |
User & Date: | js on 2012-10-30 20:27:20 |
Other Links: | manifest | tags |
Context
2012-11-08
| ||
15:57 | Revert "Adjust to new async API." check-in: 52008e00b1 user: js tags: trunk | |
2012-10-30
| ||
20:27 | Port to ObjC1. check-in: 7f37e545cf user: js tags: trunk | |
19:07 | Adjust to new async API. check-in: 0c43f5d8ca user: js tags: trunk | |
Changes
Modified src/IRCChannel.h from [4f359bd195] to [7174780e91].
︙ | ︙ | |||
27 28 29 30 31 32 33 34 | @interface IRCChannel: OFObject { OFString *name; OFMutableSet *users; } @property (readonly) OFString *name; | > | > > > | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | @interface IRCChannel: OFObject { OFString *name; OFMutableSet *users; } #ifdef OF_HAVE_PROPERTIES @property (readonly) OFString *name; @property (readonly, copy) OFSet *users; #endif + channelWithName: (OFString*)name; - initWithName: (OFString*)name; - (OFString*)name; - (OFSet*)users; - (void)IRC_addUser: (OFString*)user; - (void)IRC_removeUser: (OFString*)user; @end |
Modified src/IRCChannel.m from [16d8144689] to [76bba49af6].
︙ | ︙ | |||
18 19 20 21 22 23 24 25 26 27 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #import <ObjFW/OFString.h> #import "IRCChannel.h" @implementation IRCChannel | > > < < | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #import <ObjFW/OFString.h> #import <ObjFW/macros.h> #import "IRCChannel.h" @implementation IRCChannel + channelWithName: (OFString*)name { return [[[self alloc] initWithName: name] autorelease]; } - initWithName: (OFString*)name_ { |
︙ | ︙ | |||
50 51 52 53 54 55 56 57 58 59 | - (void)dealloc { [name release]; [users release]; [super dealloc]; } - (OFString*)description { | > > > > > > > > > > | | 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 | - (void)dealloc { [name release]; [users release]; [super dealloc]; } - (OFString*)name { OF_GETTER(name, YES) } - (OFSet*)users { return [[users copy] autorelease]; } - (OFString*)description { return [[name copy] autorelease]; } - (void)IRC_addUser: (OFString*)user { [users addObject: user]; } - (void)IRC_removeUser: (OFString*)user { [users removeObject: user]; } @end |
Modified src/IRCConnection.h from [13e6df650f] to [daa560876d].
︙ | ︙ | |||
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | @class OFString; @class OFMutableDictionary; @class OFTCPSocket; @class IRCConnection; @class IRCUser; @class IRCChannel; @protocol IRCConnectionDelegate @optional - (void)connection: (IRCConnection*)connection didReceiveLine: (OFString*)line; - (void)connection: (IRCConnection*)connection didSendLine: (OFString*)line; - (void)connectionWasEstablished: (IRCConnection*)connection; - (void)connection: (IRCConnection*)connection didSeeUser: (IRCUser*)user | > > > > > > | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | @class OFString; @class OFMutableDictionary; @class OFTCPSocket; @class IRCConnection; @class IRCUser; @class IRCChannel; #ifndef IRC_CONNECTION_M @protocol IRCConnectionDelegate <OFObject> #else @protocol IRCConnectionDelegate #endif #ifdef OF_HAVE_OPTIONAL_PROTOCOLS @optional #endif - (void)connection: (IRCConnection*)connection didReceiveLine: (OFString*)line; - (void)connection: (IRCConnection*)connection didSendLine: (OFString*)line; - (void)connectionWasEstablished: (IRCConnection*)connection; - (void)connection: (IRCConnection*)connection didSeeUser: (IRCUser*)user |
︙ | ︙ | |||
76 77 78 79 80 81 82 | @interface IRCConnection: OFObject { OFTCPSocket *sock; OFString *server; uint16_t port; OFString *nickname, *username, *realname; OFMutableDictionary *channels; | | > | | > > > > > > > > > > > > > > | 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 | @interface IRCConnection: OFObject { OFTCPSocket *sock; OFString *server; uint16_t port; OFString *nickname, *username, *realname; OFMutableDictionary *channels; id <IRCConnectionDelegate> delegate; } #ifdef OF_HAVE_PROPERTIES @property (copy) OFString *server; @property (assign) uint16_t port; @property (copy) OFString *nickname, *username, *realname; @property (assign) id <IRCConnectionDelegate> delegate; @property (readonly, retain, getter=socket) OFTCPSocket *sock; #endif - (void)setServer: (OFString*)server; - (OFString*)server; - (void)setPort: (uint16_t)port; - (uint16_t)port; - (void)setNickname: (OFString*)nickname; - (OFString*)nickname; - (void)setUsername: (OFString*)username; - (OFString*)username; - (void)setRealname: (OFString*)realname; - (OFString*)realname; - (void)setDelegate: (id <IRCConnectionDelegate>)delegate; - (id <IRCConnectionDelegate>)delegate; - (OFTCPSocket*)socket; - (void)sendLine: (OFString*)line; - (void)sendLineWithFormat: (OFConstantString*)line, ...; - (void)connect; - (void)disconnect; - (void)disconnectWithReason: (OFString*)reason; - (void)joinChannel: (OFString*)channelName; - (void)leaveChannel: (IRCChannel*)channel; |
︙ | ︙ | |||
109 110 111 112 113 114 115 | - (void)kickUser: (OFString*)user fromChannel: (IRCChannel*)channel withReason: (OFString*)reason; - (void)changeNicknameTo: (OFString*)nickname; - (void)processLine: (OFString*)line; - (void)handleConnection; @end | > > > | 130 131 132 133 134 135 136 137 138 139 | - (void)kickUser: (OFString*)user fromChannel: (IRCChannel*)channel withReason: (OFString*)reason; - (void)changeNicknameTo: (OFString*)nickname; - (void)processLine: (OFString*)line; - (void)handleConnection; @end @interface OFObject (IRCConnectionDelegate) <IRCConnectionDelegate> @end |
Modified src/IRCConnection.m from [b8818aed8f] to [42cd345c04].
︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include <stdarg.h> #import <ObjFW/OFString.h> #import <ObjFW/OFArray.h> #import <ObjFW/OFMutableDictionary.h> #import <ObjFW/OFTCPSocket.h> #import <ObjFW/OFAutoreleasePool.h> #import <ObjFW/OFInvalidEncodingException.h> #import <ObjFW/macros.h> #import "IRCConnection.h" #import "IRCUser.h" #import "IRCChannel.h" @implementation IRCConnection | > > < < > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #define IRC_CONNECTION_M #include <stdarg.h> #import <ObjFW/OFString.h> #import <ObjFW/OFArray.h> #import <ObjFW/OFMutableDictionary.h> #import <ObjFW/OFTCPSocket.h> #import <ObjFW/OFAutoreleasePool.h> #import <ObjFW/OFInvalidEncodingException.h> #import <ObjFW/macros.h> #import "IRCConnection.h" #import "IRCUser.h" #import "IRCChannel.h" @implementation IRCConnection - init { self = [super init]; @try { channels = [[OFMutableDictionary alloc] init]; port = 6667; } @catch (id e) { [self release]; @throw e; } return self; } - (void)setServer: (OFString*)server_ { OF_SETTER(server, server_, YES, YES) } - (OFString*)server { OF_GETTER(server, YES) } - (void)setPort: (uint16_t)port_ { port = port_; } - (uint16_t)port { return port; } - (void)setNickname: (OFString*)nickname_ { OF_SETTER(nickname, nickname_, YES, YES) } - (OFString*)nickname { OF_GETTER(nickname, YES) } - (void)setUsername: (OFString*)username_ { OF_SETTER(username, username_, YES, YES) } - (OFString*)username { OF_GETTER(username, YES) } - (void)setRealname: (OFString*)realname_ { OF_SETTER(realname, realname_, YES, YES) } - (OFString*)realname { OF_GETTER(realname, YES) } - (void)setDelegate: (id <IRCConnectionDelegate>)delegate_ { delegate = delegate_; } - (id <IRCConnectionDelegate>)delegate { return delegate; } - (OFTCPSocket*)socket { OF_GETTER(sock, YES) } - (void)connect { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; sock = [[OFTCPSocket alloc] init]; [sock connectToHost: server |
︙ | ︙ | |||
92 93 94 95 96 97 98 | withReason: nil]; } - (void)leaveChannel: (IRCChannel*)channel withReason: (OFString*)reason { if (reason == nil) | | | > | < | | | 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 | withReason: nil]; } - (void)leaveChannel: (IRCChannel*)channel withReason: (OFString*)reason { if (reason == nil) [self sendLineWithFormat: @"PART %@", [channel name]]; else [self sendLineWithFormat: @"PART %@ :%@", [channel name], reason]; [channels removeObjectForKey: [channel name]]; } - (void)sendLine: (OFString*)line { [delegate connection: self didSendLine: line]; [sock writeLine: line]; } - (void)sendLineWithFormat: (OFConstantString*)format, ... { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; |
︙ | ︙ | |||
127 128 129 130 131 132 133 | [pool release]; } - (void)sendMessage: (OFString*)msg toChannel: (IRCChannel*)channel { | | | | | < | < < | | | > | | | < < | < < | | | | | < < | | | < | > > | > < | | | | | | | > | < < | | < | | | | | | | | | < < < | | | | < | | | | | | | | | | | < < < | | | | | < | | > | > > | | | | > | < < | | | < | | | > > | | | | | > | | < < | | | < | | | | | | > | < < < | | | | | < < < < | | | | < < | | | | | | > | < < < < | | | | | < < < | | | | > | > | > > > | > | > | | | 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 | [pool release]; } - (void)sendMessage: (OFString*)msg toChannel: (IRCChannel*)channel { [self sendLineWithFormat: @"PRIVMSG %@ :%@", [channel name], msg]; } - (void)sendMessage: (OFString*)msg toUser: (OFString*)user { [self sendLineWithFormat: @"PRIVMSG %@ :%@", user, msg]; } - (void)sendNotice: (OFString*)notice toUser: (OFString*)user { [self sendLineWithFormat: @"NOTICE %@ :%@", user, notice]; } - (void)sendNotice: (OFString*)notice toChannel: (IRCChannel*)channel { [self sendLineWithFormat: @"NOTICE %@ :%@", [channel name], notice]; } - (void)kickUser: (OFString*)user fromChannel: (IRCChannel*)channel withReason: (OFString*)reason { [self sendLineWithFormat: @"KICK %@ %@ :%@", [channel name], user, reason]; } - (void)changeNicknameTo: (OFString*)nickname_ { [self sendLineWithFormat: @"NICK %@", nickname_]; } - (void)IRC_processLine: (OFString*)line { OFArray *components; OFString *action = nil; [delegate connection: self didReceiveLine: line]; components = [line componentsSeparatedByString: @" "]; /* PING */ if ([components count] == 2 && [[components firstObject] isEqual: @"PING"]) { OFMutableString *s = [[line mutableCopy] autorelease]; [s replaceOccurrencesOfString: @"PING" withString: @"PONG"]; [self sendLine: s]; return; } action = [[components objectAtIndex: 1] uppercaseString]; /* Connected */ if ([action isEqual: @"001"] && [components count] >= 4) { [delegate connectionWasEstablished: self]; return; } /* JOIN */ if ([action isEqual: @"JOIN"] && [components count] == 3) { OFString *who = [components objectAtIndex: 0]; OFString *where = [components objectAtIndex: 2]; IRCUser *user; IRCChannel *channel; who = [who substringWithRange: of_range(1, [who length] - 1)]; user = [IRCUser IRCUserWithString: who]; if ([who hasPrefix: [nickname stringByAppendingString: @"!"]]) { channel = [IRCChannel channelWithName: where]; [channels setObject: channel forKey: where]; } else channel = [channels objectForKey: where]; [channel IRC_addUser: [user nickname]]; [delegate connection: self didSeeUser: user joinChannel: channel]; return; } /* NAMES reply */ if ([action isEqual: @"353"] && [components count] >= 6) { IRCChannel *channel; OFArray *users; size_t pos; OFEnumerator *enumerator; OFString *user; channel = [channels objectForKey: [components objectAtIndex: 4]]; if (channel == nil) { /* We did not request that */ return; } pos = [[components objectAtIndex: 0] length] + [[components objectAtIndex: 1] length] + [[components objectAtIndex: 2] length] + [[components objectAtIndex: 3] length] + [[components objectAtIndex: 4] length] + 6; users = [[line substringWithRange: of_range(pos, [line length] - pos)] componentsSeparatedByString: @" "]; enumerator = [users objectEnumerator]; while ((user = [enumerator nextObject]) != nil) { if ([user hasPrefix: @"@"] || [user hasPrefix: @"+"] || [user hasPrefix: @"%"] || [user hasPrefix: @"*"]) user = [user substringWithRange: of_range(1, [user length] - 1)]; [channel IRC_addUser: user]; } [delegate connection: self didReceiveNamesForChannel: channel]; return; } /* PART */ if ([action isEqual: @"PART"] && [components count] >= 3) { OFString *who = [components objectAtIndex: 0]; OFString *where = [components objectAtIndex: 2]; IRCUser *user; IRCChannel *channel; OFString *reason = nil; size_t pos = [who length] + 1 + [[components objectAtIndex: 1] length] + 1 + [where length]; who = [who substringWithRange: of_range(1, [who length] - 1)]; user = [IRCUser IRCUserWithString: who]; channel = [channels objectForKey: where]; if ([components count] > 3) reason = [line substringWithRange: of_range(pos + 2, [line length] - pos - 2)]; [channel IRC_removeUser: [user nickname]]; [delegate connection: self didSeeUser: user leaveChannel: channel withReason: reason]; return; } /* KICK */ if ([action isEqual: @"KICK"] && [components count] >= 4) { OFString *who = [components objectAtIndex: 0]; OFString *where = [components objectAtIndex: 2]; OFString *whom = [components objectAtIndex: 3]; IRCUser *user; IRCChannel *channel; OFString *reason = nil; size_t pos = [who length] + 1 + [[components objectAtIndex: 1] length] + 1 + [where length] + 1 + [whom length]; who = [who substringWithRange: of_range(1, [who length] - 1)]; user = [IRCUser IRCUserWithString: who]; channel = [channels objectForKey: where]; if ([components count] > 4) reason = [line substringWithRange: of_range(pos + 2, [line length] - pos - 2)]; [channel IRC_removeUser: [user nickname]]; [delegate connection: self didSeeUser: user kickUser: whom fromChannel: channel withReason: reason]; return; } /* QUIT */ if ([action isEqual: @"QUIT"] && [components count] >= 2) { OFString *who = [components objectAtIndex: 0]; IRCUser *user; OFString *reason = nil; size_t pos = [who length] + 1 + [[components objectAtIndex: 1] length]; OFEnumerator *enumerator; IRCChannel *channel; who = [who substringWithRange: of_range(1, [who length] - 1)]; user = [IRCUser IRCUserWithString: who]; if ([components count] > 2) reason = [line substringWithRange: of_range(pos + 2, [line length] - pos - 2)]; enumerator = [channels keyEnumerator]; while ((channel = [enumerator nextObject]) != nil) [channel IRC_removeUser: [user nickname]]; [delegate connection: self didSeeUserQuit: user withReason: reason]; return; } /* NICK */ if ([action isEqual: @"NICK"] && [components count] == 3) { OFString *who = [components objectAtIndex: 0]; OFString *newNickname = [components objectAtIndex: 2]; IRCUser *user; OFEnumerator *enumerator; IRCChannel *channel; who = [who substringWithRange: of_range(1, [who length] - 1)]; newNickname = [newNickname substringWithRange: of_range(1, [newNickname length] - 1)]; user = [IRCUser IRCUserWithString: who]; if ([[user nickname] isEqual: nickname]) { [nickname release]; nickname = [[user nickname] copy]; } enumerator = [channels keyEnumerator]; while ((channel = [enumerator nextObject]) != nil) { if ([[channel users] containsObject: [user nickname]]) { [channel IRC_removeUser: [user nickname]]; [channel IRC_addUser: newNickname]; } } [delegate connection: self didSeeUser: user changeNicknameTo: newNickname]; return; } /* PRIVMSG */ if ([action isEqual: @"PRIVMSG"] && [components count] >= 4) { OFString *from = [components objectAtIndex: 0]; OFString *to = [components objectAtIndex: 2]; IRCUser *user; OFString *msg; size_t pos = [from length] + 1 + [[components objectAtIndex: 1] length] + 1 + [to length]; from = [from substringWithRange: of_range(1, [from length] - 1)]; msg = [line substringWithRange: of_range(pos + 2, [line length] - pos - 2)]; user = [IRCUser IRCUserWithString: from]; if (![to isEqual: nickname]) { IRCChannel *channel; channel = [channels objectForKey: to]; [delegate connection: self didReceiveMessage: msg fromUser: user inChannel: channel]; } else [delegate connection: self didReceivePrivateMessage: msg fromUser: user]; return; } /* NOTICE */ if ([action isEqual: @"NOTICE"] && [components count] >= 4) { OFString *from = [components objectAtIndex: 0]; OFString *to = [components objectAtIndex: 2]; IRCUser *user = nil; OFString *notice; size_t pos = [from length] + 1 + [[components objectAtIndex: 1] length] + 1 + [to length]; from = [from substringWithRange: of_range(1, [from length] - 1)]; notice = [line substringWithRange: of_range(pos + 2, [line length] - pos - 2)]; if (![from containsString: @"!"] || [to isEqual: @"*"]) { /* System message - ignore for now */ return; } user = [IRCUser IRCUserWithString: from]; if (![to isEqual: nickname]) { IRCChannel *channel; channel = [channels objectForKey: to]; [delegate connection: self didReceiveNotice: notice fromUser: user inChannel: channel]; } else [delegate connection: self didReceiveNotice: notice fromUser: user]; return; } } - (void)processLine: (OFString*)line { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; [self IRC_processLine: line]; [pool release]; } - (BOOL)connection: (OFTCPSocket*)connection didReceiveISO88591Line: (OFString*)line context: (id)context exception: (OFException*)exception { if (line != nil) { [self IRC_processLine: line]; [sock asyncReadLineWithTarget: self selector: @selector(connection: didReceiveLine:context: exception:) context: nil]; } return NO; } - (BOOL)connection: (OFTCPSocket*)connection didReceiveLine: (OFString*)line context: (id)context exception: (OFException*)exception { if (line != nil) { [self IRC_processLine: line]; return YES; } if ([exception isKindOfClass: [OFInvalidEncodingException class]]) [sock asyncReadLineWithEncoding: OF_STRING_ENCODING_ISO_8859_1 target: self selector: @selector(connection: |
︙ | ︙ | |||
537 538 539 540 541 542 543 544 545 | [server release]; [nickname release]; [username release]; [realname release]; [channels release]; [super dealloc]; } @end | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | [server release]; [nickname release]; [username release]; [realname release]; [channels release]; [super dealloc]; } @end @implementation OFObject (IRCConnectionDelegate) - (void)connection: (IRCConnection*)connection didReceiveLine: (OFString*)line { } - (void)connection: (IRCConnection*)connection didSendLine: (OFString*)line { } - (void)connectionWasEstablished: (IRCConnection*)connection { } - (void)connection: (IRCConnection*)connection didSeeUser: (IRCUser*)user joinChannel: (IRCChannel*)channel { } - (void)connection: (IRCConnection*)connection didSeeUser: (IRCUser*)user leaveChannel: (IRCChannel*)channel withReason: (OFString*)reason { } - (void)connection: (IRCConnection*)connection didSeeUser: (IRCUser*)user changeNicknameTo: (OFString*)nickname { } - (void)connection: (IRCConnection*)connection didSeeUser: (IRCUser*)user kickUser: (OFString*)kickedUser fromChannel: (IRCChannel*)channel withReason: (OFString*)reason { } - (void)connection: (IRCConnection*)connection didSeeUserQuit: (IRCUser*)user withReason: (OFString*)reason { } - (void)connection: (IRCConnection*)connection didReceiveMessage: (OFString*)msg fromUser: (IRCUser*)user inChannel: (IRCChannel*)channel { } - (void)connection: (IRCConnection*)connection didReceivePrivateMessage: (OFString*)msg fromUser: (IRCUser*)user { } - (void)connection: (IRCConnection*)connection didReceiveNotice: (OFString*)notice fromUser: (IRCUser*)user { } - (void)connection: (IRCConnection*)connection didReceiveNotice: (OFString*)notice fromUser: (IRCUser*)user inChannel: (IRCChannel*)channel { } - (void)connection: (IRCConnection*)connection didReceiveNamesForChannel: (IRCChannel*)channel { } - (void)connectionWasClosed: (IRCConnection*)connection { } @end |
Modified src/IRCUser.h from [cfc77d4ee2] to [08c1937320].
︙ | ︙ | |||
25 26 27 28 29 30 31 32 33 34 35 36 | @interface IRCUser: OFObject <OFCopying> { OFString *nickname; OFString *username; OFString *hostname; } @property (copy, readonly) OFString *nickname, *username, *hostname; + IRCUserWithString: (OFString*)string; - initWithString: (OFString*)string; @end | > > > > > | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | @interface IRCUser: OFObject <OFCopying> { OFString *nickname; OFString *username; OFString *hostname; } #ifdef OF_HAVE_PROPERTIES @property (copy, readonly) OFString *nickname, *username, *hostname; #endif + IRCUserWithString: (OFString*)string; - initWithString: (OFString*)string; - (OFString*)nickname; - (OFString*)username; - (OFString*)hostname; @end |
Modified src/IRCUser.m from [1b330b60e2] to [6c1d6f5f3a].
︙ | ︙ | |||
24 25 26 27 28 29 30 31 32 33 | #include <string.h> #import <ObjFW/OFString.h> #import <ObjFW/OFInvalidFormatException.h> #import <ObjFW/OFOutOfMemoryException.h> #import "IRCUser.h" @implementation IRCUser | > > < | | | | 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 | #include <string.h> #import <ObjFW/OFString.h> #import <ObjFW/OFInvalidFormatException.h> #import <ObjFW/OFOutOfMemoryException.h> #import <ObjFW/macros.h> #import "IRCUser.h" @implementation IRCUser + IRCUserWithString: (OFString*)string { return [[[self alloc] initWithString: string] autorelease]; } - initWithString: (OFString*)string { char *tmp2 = NULL; self = [super init]; @try { char *tmp; if ((tmp2 = strdup([string UTF8String])) == NULL) @throw [OFOutOfMemoryException exceptionWithClass: [self class] requestedSize: [string UTF8StringLength]]; if ((tmp = strchr(tmp2, '@')) == NULL) @throw [OFInvalidFormatException exceptionWithClass: [self class]]; *tmp = '\0'; hostname = [[OFString alloc] initWithUTF8String: tmp + 1]; if ((tmp = strchr(tmp2, '!')) == NULL) @throw [OFInvalidFormatException exceptionWithClass: [self class]]; *tmp = '\0'; username = [[OFString alloc] initWithUTF8String: tmp + 1]; nickname = [[OFString alloc] initWithUTF8String: tmp2]; } @catch (id e) { [self release]; |
︙ | ︙ | |||
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | { [nickname release]; [username release]; [hostname release]; [super dealloc]; } - copy { return [self retain]; } - (OFString*)description { return [OFString stringWithFormat: @"%@!%@@%@", nickname, username, hostname]; } @end | > > > > > > > > > > > > > > > | 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 | { [nickname release]; [username release]; [hostname release]; [super dealloc]; } - (OFString*)username { OF_GETTER(username, YES) } - (OFString*)nickname { OF_GETTER(nickname, YES) } - (OFString*)hostname { OF_GETTER(hostname, YES) } - copy { return [self retain]; } - (OFString*)description { return [OFString stringWithFormat: @"%@!%@@%@", nickname, username, hostname]; } @end |
Modified tests/test.m from [bf66f3f82c] to [3268827b82].
︙ | ︙ | |||
24 25 26 27 28 29 30 | #import <ObjFW/OFApplication.h> #import <ObjFW/OFFile.h> #import "IRCConnection.h" #import "IRCUser.h" #import "IRCChannel.h" | | | | | | | | 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 | #import <ObjFW/OFApplication.h> #import <ObjFW/OFFile.h> #import "IRCConnection.h" #import "IRCUser.h" #import "IRCChannel.h" @interface TestApp: OFObject @end OF_APPLICATION_DELEGATE(TestApp) @implementation TestApp - (void)applicationDidFinishLaunching { IRCConnection *connection = [[IRCConnection alloc] init]; [connection setServer: @"irc.freenode.net"]; [connection setNickname: @"ObjIRC"]; [connection setUsername: @"ObjIRC"]; [connection setRealname: @"ObjIRC"]; [connection setDelegate: self]; [connection connect]; [connection handleConnection]; } - (void)connection: (IRCConnection*)connection didReceiveLine: (OFString*)line |
︙ | ︙ | |||
132 133 134 135 136 137 138 | { of_log(@"NOTICE: [%@] %@: %@", channel, user, notice); } - (void)connection: (IRCConnection*)connection didReceiveNamesForChannel: (IRCChannel*)channel { | | | 132 133 134 135 136 137 138 139 140 141 | { of_log(@"NOTICE: [%@] %@: %@", channel, user, notice); } - (void)connection: (IRCConnection*)connection didReceiveNamesForChannel: (IRCChannel*)channel { of_log(@"Users in %@: %@", channel, [channel users]); } @end |