Github user ben-craig commented on a diff in the pull request:

    https://github.com/apache/thrift/pull/357#discussion_r23505627
  
    --- Diff: lib/cpp/src/thrift/transport/THeaderTransport.h ---
    @@ -0,0 +1,308 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements. See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership. The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + * with the License. You may obtain a copy of the License at
    + *
    + *   http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing,
    + * software distributed under the License is distributed on an
    + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + * KIND, either express or implied. See the License for the
    + * specific language governing permissions and limitations
    + * under the License.
    + */
    +
    +#ifndef THRIFT_TRANSPORT_THEADERTRANSPORT_H_
    +#define THRIFT_TRANSPORT_THEADERTRANSPORT_H_ 1
    +
    +#include <tr1/functional>
    +
    +#include <thrift/protocol/TBinaryProtocol.h>
    +#include <thrift/protocol/TProtocolTypes.h>
    +#include <thrift/transport/TBufferTransports.h>
    +#include <thrift/transport/TTransport.h>
    +#include <thrift/transport/TVirtualTransport.h>
    +
    +#include <bitset>
    +#include "boost/scoped_array.hpp"
    +#include <pwd.h>
    +#include <unistd.h>
    +
    +// Don't include the unknown client.
    +#define CLIENT_TYPES_LEN 4
    +
    +enum CLIENT_TYPE {
    +  THRIFT_HEADER_CLIENT_TYPE = 0,
    +  THRIFT_FRAMED_DEPRECATED = 1,
    +  THRIFT_UNFRAMED_DEPRECATED = 2,
    +  THRIFT_UNKNOWN_CLIENT_TYPE = 4,
    +};
    +
    +namespace apache { namespace thrift { namespace transport {
    +
    +using apache::thrift::protocol::T_COMPACT_PROTOCOL;
    +
    +/**
    + * Header transport. All writes go into an in-memory buffer until flush is
    + * called, at which point the transport writes the length of the entire
    + * binary chunk followed by the data payload. This allows the receiver on 
the
    + * other end to always do fixed-length reads.
    + *
    + * Subclass TFramedTransport because most of the read/write methods are 
similar
    --- End diff --
    
    I don't think I like subclassing TFramedTransport.  Some of your members 
call TBufferBase methods, while others call TFramedTransport.  
    In addition, by subclassing TFramedTransport, you allow THeaderTransports 
to be passed to functions expecting a TFramedTransport.  That could cause some 
hard to diagnose bugs, as TFramedTransport's wire layout is different from 
THeaderTransport's.
    
    If you want to continue to get code reuse from TFramedTransport, then 
that's great, and you can do so by using containment instead of inheritance.  
Make a member TFramedTransport, and forward calls to the member.  In the case 
where you want to call into TBufferBase versions of methods, you can do so like 
this:
    framedTransport.TBufferBase::readAll(buf, len);


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to