Changeset 214106 in webkit


Ignore:
Timestamp:
Mar 17, 2017, 8:57:23 AM (8 years ago)
Author:
achristensen@apple.com
Message:

Use completion handlers instead of return values for sending websocket data
https://bugs.webkit.org/show_bug.cgi?id=169802

Reviewed by Carlos Garcia Campos.

Source/WebCore:

No change in behavior, but this is a baby step towards making things more asynchronous.

  • Modules/websockets/WebSocketChannel.cpp:

(WebCore::WebSocketChannel::didOpenSocketStream):
(WebCore::WebSocketChannel::processOutgoingFrameQueue):
(WebCore::WebSocketChannel::sendFrame):

  • Modules/websockets/WebSocketChannel.h:
  • platform/network/SocketStreamHandle.cpp:

(WebCore::SocketStreamHandle::send):

  • platform/network/SocketStreamHandle.h:
  • platform/network/cf/SocketStreamHandleImpl.h:

Source/WebKit2:

  • UIProcess/InspectorServer/WebSocketServerConnection.cpp:

(WebKit::WebSocketServerConnection::sendWebSocketMessage):
(WebKit::WebSocketServerConnection::sendHTTPResponseHeader):
(WebKit::WebSocketServerConnection::sendRawData):

Location:
trunk/Source
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r214105 r214106  
     12017-03-16  Alex Christensen  <achristensen@webkit.org>
     2
     3        Use completion handlers instead of return values for sending websocket data
     4        https://bugs.webkit.org/show_bug.cgi?id=169802
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        No change in behavior, but this is a baby step towards making things more asynchronous.
     9
     10        * Modules/websockets/WebSocketChannel.cpp:
     11        (WebCore::WebSocketChannel::didOpenSocketStream):
     12        (WebCore::WebSocketChannel::processOutgoingFrameQueue):
     13        (WebCore::WebSocketChannel::sendFrame):
     14        * Modules/websockets/WebSocketChannel.h:
     15        * platform/network/SocketStreamHandle.cpp:
     16        (WebCore::SocketStreamHandle::send):
     17        * platform/network/SocketStreamHandle.h:
     18        * platform/network/cf/SocketStreamHandleImpl.h:
     19
    1202017-03-17  Zan Dobersek  <zdobersek@igalia.com>
    221
  • trunk/Source/WebCore/Modules/websockets/WebSocketChannel.cpp

    r214073 r214106  
    279279        InspectorInstrumentation::willSendWebSocketHandshakeRequest(m_document, m_identifier, m_handshake->clientHandshakeRequest());
    280280    CString handshakeMessage = m_handshake->clientHandshakeMessage();
    281     if (!handle.send(handshakeMessage.data(), handshakeMessage.length()))
    282         fail("Failed to send WebSocket handshake.");
     281    handle.send(handshakeMessage.data(), handshakeMessage.length(), [this, protectedThis = makeRef(*this)] (bool success) {
     282        if (!success)
     283            fail("Failed to send WebSocket handshake.");
     284    });
    283285}
    284286
     
    743745        switch (frame->frameType) {
    744746        case QueuedFrameTypeString: {
    745             if (!sendFrame(frame->opCode, frame->stringData.data(), frame->stringData.length()))
    746                 fail("Failed to send WebSocket frame.");
     747            sendFrame(frame->opCode, frame->stringData.data(), frame->stringData.length(), [this, protectedThis = makeRef(*this)] (bool success) {
     748                if (!success)
     749                    fail("Failed to send WebSocket frame.");
     750            });
    747751            break;
    748752        }
    749753
    750754        case QueuedFrameTypeVector:
    751             if (!sendFrame(frame->opCode, frame->vectorData.data(), frame->vectorData.size()))
    752                 fail("Failed to send WebSocket frame.");
     755            sendFrame(frame->opCode, frame->vectorData.data(), frame->vectorData.size(), [this, protectedThis = makeRef(*this)] (bool success) {
     756                if (!success)
     757                    fail("Failed to send WebSocket frame.");
     758            });
    753759            break;
    754760
     
    774780                m_blobLoader = nullptr;
    775781                m_blobLoaderStatus = BlobLoaderNotStarted;
    776                 if (!sendFrame(frame->opCode, static_cast<const char*>(result->data()), result->byteLength()))
    777                     fail("Failed to send WebSocket frame.");
     782                sendFrame(frame->opCode, static_cast<const char*>(result->data()), result->byteLength(), [this, protectedThis = makeRef(*this)] (bool success) {
     783                    if (!success)
     784                        fail("Failed to send WebSocket frame.");
     785                });
    778786                break;
    779787            }
     
    805813}
    806814
    807 bool WebSocketChannel::sendFrame(WebSocketFrame::OpCode opCode, const char* data, size_t dataLength)
     815void WebSocketChannel::sendFrame(WebSocketFrame::OpCode opCode, const char* data, size_t dataLength, Function<void(bool)> completionHandler)
    808816{
    809817    ASSERT(m_handle);
     
    816824    if (!deflateResult->succeeded()) {
    817825        fail(deflateResult->failureReason());
    818         return false;
     826        return completionHandler(false);
    819827    }
    820828
     
    822830    frame.makeFrameData(frameData);
    823831
    824     return m_handle->send(frameData.data(), frameData.size());
     832    m_handle->send(frameData.data(), frameData.size(), WTFMove(completionHandler));
    825833}
    826834
  • trunk/Source/WebCore/Modules/websockets/WebSocketChannel.h

    r214073 r214106  
    174174    // If you are going to send a hybi-10 frame, you need to use the outgoing frame queue
    175175    // instead of call sendFrame() directly.
    176     bool sendFrame(WebSocketFrame::OpCode, const char* data, size_t dataLength);
     176    void sendFrame(WebSocketFrame::OpCode, const char* data, size_t dataLength, Function<void(bool)> completionHandler);
    177177
    178178    enum BlobLoaderStatus {
  • trunk/Source/WebCore/platform/network/SocketStreamHandle.cpp

    r204512 r214106  
    3333
    3434#include "SocketStreamHandleClient.h"
     35#include <wtf/Function.h>
    3536
    3637namespace WebCore {
     
    5051}
    5152
    52 bool SocketStreamHandle::send(const char* data, size_t length)
     53void SocketStreamHandle::send(const char* data, size_t length, Function<void(bool)> completionHandler)
    5354{
    5455    if (m_state == Connecting || m_state == Closing)
    55         return false;
     56        return completionHandler(false);
    5657    if (!m_buffer.isEmpty()) {
    5758        if (m_buffer.size() + length > bufferSize) {
    5859            // FIXME: report error to indicate that buffer has no more space.
    59             return false;
     60            return completionHandler(false);
    6061        }
    6162        m_buffer.append(data, length);
    6263        m_client.didUpdateBufferedAmount(static_cast<SocketStreamHandle&>(*this), bufferedAmount());
    63         return true;
     64        return completionHandler(true);
    6465    }
    6566    size_t bytesWritten = 0;
     
    6869            bytesWritten = result.value();
    6970        else
    70             return false;
     71            return completionHandler(false);
    7172    }
    7273    if (m_buffer.size() + length - bytesWritten > bufferSize) {
    7374        // FIXME: report error to indicate that buffer has no more space.
    74         return false;
     75        return completionHandler(false);
    7576    }
    7677    if (bytesWritten < length) {
     
    7879        m_client.didUpdateBufferedAmount(static_cast<SocketStreamHandle&>(*this), bufferedAmount());
    7980    }
    80     return true;
     81    return completionHandler(true);
    8182}
    8283
  • trunk/Source/WebCore/platform/network/SocketStreamHandle.h

    r208985 r214106  
    4646    SocketStreamState state() const;
    4747
    48     bool send(const char* data, size_t length);
     48    void send(const char* data, size_t length, Function<void(bool)>);
    4949    void close(); // Disconnect after all data in buffer are sent.
    5050    void disconnect();
  • trunk/Source/WebCore/platform/network/cf/SocketStreamHandleImpl.h

    r211751 r214106  
    5151
    5252private:
    53     virtual std::optional<size_t> platformSend(const char* data, size_t length);
    54     virtual void platformClose();
     53    std::optional<size_t> platformSend(const char* data, size_t length) final;
     54    void platformClose() final;
    5555
    5656    WEBCORE_EXPORT SocketStreamHandleImpl(const URL&, SocketStreamHandleClient&, SessionID, const String& credentialPartition);
  • trunk/Source/WebKit2/ChangeLog

    r214104 r214106  
     12017-03-16  Alex Christensen  <achristensen@webkit.org>
     2
     3        Use completion handlers instead of return values for sending websocket data
     4        https://bugs.webkit.org/show_bug.cgi?id=169802
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * UIProcess/InspectorServer/WebSocketServerConnection.cpp:
     9        (WebKit::WebSocketServerConnection::sendWebSocketMessage):
     10        (WebKit::WebSocketServerConnection::sendHTTPResponseHeader):
     11        (WebKit::WebSocketServerConnection::sendRawData):
     12
    1132017-03-17  Tomas Popela  <tpopela@redhat.com>
    214
  • trunk/Source/WebKit2/UIProcess/InspectorServer/WebSocketServerConnection.cpp

    r214091 r214106  
    4040#include <WebCore/WebSocketChannel.h>
    4141#include <WebCore/WebSocketHandshake.h>
     42#include <wtf/Function.h>
    4243#include <wtf/text/CString.h>
    4344#include <wtf/text/StringBuilder.h>
     
    9293    frame.makeFrameData(frameData);
    9394
    94     m_socket->send(frameData.data(), frameData.size());
     95    m_socket->send(frameData.data(), frameData.size(), [](bool) { });
    9596}
    9697
     
    113114
    114115    CString header = builder.toString().latin1();
    115     m_socket->send(header.data(), header.length());
     116    m_socket->send(header.data(), header.length(), [](bool) { });
    116117}
    117118
    118119void WebSocketServerConnection::sendRawData(const char* data, size_t length)
    119120{
    120     m_socket->send(data, length);
     121    m_socket->send(data, length, [](bool) { });
    121122}
    122123
Note: See TracChangeset for help on using the changeset viewer.