5 // Created by Jens Alfke on 5/18/08.
6 // Copyright 2008 Jens Alfke. All rights reserved.
10 #import "BLIPWriter.h"
11 #import "BLIP_Internal.h"
14 #define kDefaultFrameSize 4096
17 @implementation BLIPWriter
28 [_outBox makeObjectsPerformSelector: @selector(_connectionClosed) withObject: nil];
33 @synthesize numQueriesSent=_numQueriesSent;
38 return _outBox.count>0 || [super isBusy];
42 - (void) _queueMessage: (BLIPMessage*)msg isNew: (BOOL)isNew
44 int n = _outBox.count, index;
45 if( msg.urgent && n > 1 ) {
46 // High-priority gets queued after the last existing high-priority message,
47 // leaving one regular-priority message in between if possible.
48 for( index=n-1; index>0; index-- ) {
49 BLIPMessage *otherMsg = [_outBox objectAtIndex: index];
50 if( [otherMsg urgent] ) {
51 index = MIN(index+2, n);
53 } else if( isNew && otherMsg._bytesWritten==0 ) {
54 // But have to keep message starts in order
62 // Regular priority goes at the end of the queue:
66 _outBox = [[NSMutableArray alloc] init];
67 [_outBox insertObject: msg atIndex: index];
70 LogTo(BLIP,@"%@ queuing outgoing %@ at index %i",self,msg,index);
77 - (BOOL) sendMessage: (BLIPMessage*)message
80 Warn(@"%@: Attempt to send a message after the connection has started closing",self);
83 Assert(!message.sent,@"message has already been sent");
84 [self _queueMessage: message isNew: YES];
89 - (BOOL) sendRequest: (BLIPRequest*)q response: (BLIPResponse*)response
92 [q _assignedNumber: ++_numQueriesSent];
94 [response _assignedNumber: _numQueriesSent];
95 [(BLIPReader*)self.reader _addPendingResponse: response];
98 return [self sendMessage: q];
102 - (void) queueIsEmpty
104 if( _outBox.count > 0 ) {
105 // Pop first message in queue:
106 BLIPMessage *msg = [[_outBox objectAtIndex: 0] retain];
107 [_outBox removeObjectAtIndex: 0];
109 // As an optimization, allow message to send a big frame unless there's a higher-priority
110 // message right behind it:
111 size_t frameSize = kDefaultFrameSize;
112 if( msg.urgent || _outBox.count==0 || ! [[_outBox objectAtIndex: 0] urgent] )
115 if( [msg _writeFrameTo: self maxSize: frameSize] ) {
116 // add it back so it can send its next frame later:
117 [self _queueMessage: msg isNew: NO];
121 LogTo(BLIPVerbose,@"%@: no more work for writer",self);
131 Copyright (c) 2008, Jens Alfke <jens@mooseyard.com>. All rights reserved.
133 Redistribution and use in source and binary forms, with or without modification, are permitted
134 provided that the following conditions are met:
136 * Redistributions of source code must retain the above copyright notice, this list of conditions
137 and the following disclaimer.
138 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions
139 and the following disclaimer in the documentation and/or other materials provided with the
142 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
143 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
144 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRI-
145 BUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
146 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
147 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
148 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
149 THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.