Subversion Repositories SmartDukaan

Rev

Rev 30 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 ashish 1
/*
2
 * Licensed to the Apache Software Foundation (ASF) under one
3
 * or more contributor license agreements. See the NOTICE file
4
 * distributed with this work for additional information
5
 * regarding copyright ownership. The ASF licenses this file
6
 * to you under the Apache License, Version 2.0 (the
7
 * "License"); you may not use this file except in compliance
8
 * with the License. You may obtain a copy of the License at
9
 *
10
 *   http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing,
13
 * software distributed under the License is distributed on an
14
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
 * KIND, either express or implied. See the License for the
16
 * specific language governing permissions and limitations
17
 * under the License.
18
 */
19
 
20
#ifndef _THRIFT_TRANSPORT_TFDTRANSPORT_H_
21
#define _THRIFT_TRANSPORT_TFDTRANSPORT_H_ 1
22
 
23
#include <string>
24
#include <sys/time.h>
25
 
26
#include "TTransport.h"
27
#include "TServerSocket.h"
28
 
29
namespace apache { namespace thrift { namespace transport {
30
 
31
/**
32
 * Dead-simple wrapper around a file descriptor.
33
 *
34
 */
35
class TFDTransport : public TTransport {
36
 public:
37
  enum ClosePolicy
38
  { NO_CLOSE_ON_DESTROY = 0
39
  , CLOSE_ON_DESTROY = 1
40
  };
41
 
42
  TFDTransport(int fd, ClosePolicy close_policy = NO_CLOSE_ON_DESTROY)
43
    : fd_(fd)
44
    , close_policy_(close_policy)
45
  {}
46
 
47
  ~TFDTransport() {
48
    if (close_policy_ == CLOSE_ON_DESTROY) {
49
      close();
50
    }
51
  }
52
 
53
  bool isOpen() { return fd_ >= 0; }
54
 
55
  void open() {}
56
 
57
  void close();
58
 
59
  uint32_t read(uint8_t* buf, uint32_t len);
60
 
61
  void write(const uint8_t* buf, uint32_t len);
62
 
63
  void setFD(int fd) { fd_ = fd; }
64
  int getFD() { return fd_; }
65
 
66
 protected:
67
  int fd_;
68
  ClosePolicy close_policy_;
69
};
70
 
71
}}} // apache::thrift::transport
72
 
73
#endif // #ifndef _THRIFT_TRANSPORT_TFDTRANSPORT_H_