Github user sohami commented on a diff in the pull request:

    https://github.com/apache/drill/pull/809#discussion_r115557153
  
    --- Diff: contrib/native/client/src/clientlib/drillClientImpl.cpp ---
    @@ -854,75 +990,328 @@ void DrillClientImpl::waitForResults(){
         }
     }
     
    -status_t DrillClientImpl::readMsg(ByteBuf_t _buf,
    -        AllocatedBufferPtr* allocatedBuffer,
    +/*
    + *  Decode the length of the message from bufWithLen and then read entire 
message from the socket.
    + *  Parameters:
    + *      bufWithLen          - in param  - buffer containing the bytes 
which has length of the RPC message/encrypted chunk
    + *      bufferWithLenBytes  - out param - buffer pointer which points to 
memory allocated in this function and has the
    + *                                        entire one RPC message / 
encrypted chunk along with the length of the message
    + *      lengthBytesLength   - out param - bytes of bufWithLen which 
contains the length of the entire RPC message or
    + *                                        encrypted chunk
    + *      lengthDecodeHandler - in param  - function pointer with length 
decoder to use. For encrypted chunk we use
    + *                                        lengthDecode and for plain RPC 
message we use rpcLengthDecode.
    + *  Return:
    + *      status_t    - QRY_SUCCESS    - In case of success.
    + *                  - 
QRY_COMM_ERROR/QRY_INTERNAL_ERROR/QRY_CLIENT_OUTOFMEM - In cases of error.
    + */
    +status_t DrillClientImpl::readLenBytesFromSocket(ByteBuf_t bufWithLen, 
AllocatedBufferPtr* bufferWithLenBytes,
    +           uint32_t& lengthBytesLength, lengthDecoder lengthDecodeHandler) 
{
    +
    +    uint32_t rmsgLen = 0;
    +    size_t bytes_read = 0;
    +    size_t leftover = 0;
    +    boost::system::error_code error;
    +    *bufferWithLenBytes = NULL;
    +    size_t bufferWithLenBytesSize = 0;
    +
    +    bytes_read = (this->*lengthDecodeHandler)(bufWithLen, rmsgLen);
    --- End diff --
    
    _lengthDecoder_ is a function pointer signature that accepts function of 
DrillClientImpl class with that signature.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to