~dpm/reminders-app/evernote-api-plugin

« back to all changes in this revision

Viewing changes to 3rdParty/libthrift/transport/TFDTransport.h

  • Committer: Michael Zanetti
  • Date: 2013-11-14 20:19:11 UTC
  • Revision ID: michael.zanetti@canonical.com-20131114201911-pc2rlni3akrqxlgn
first try to connect to evernote

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
#ifdef HAVE_SYS_TIME_H
 
25
#include <sys/time.h>
 
26
#endif
 
27
 
 
28
#include "TTransport.h"
 
29
#include "TVirtualTransport.h"
 
30
 
 
31
namespace apache { namespace thrift { namespace transport {
 
32
 
 
33
/**
 
34
 * Dead-simple wrapper around a file descriptor.
 
35
 *
 
36
 */
 
37
class TFDTransport : public TVirtualTransport<TFDTransport> {
 
38
 public:
 
39
  enum ClosePolicy
 
40
  { NO_CLOSE_ON_DESTROY = 0
 
41
  , CLOSE_ON_DESTROY = 1
 
42
  };
 
43
 
 
44
  TFDTransport(int fd, ClosePolicy close_policy = NO_CLOSE_ON_DESTROY)
 
45
    : fd_(fd)
 
46
    , close_policy_(close_policy)
 
47
  {}
 
48
 
 
49
  ~TFDTransport() {
 
50
    if (close_policy_ == CLOSE_ON_DESTROY) {
 
51
      close();
 
52
    }
 
53
  }
 
54
 
 
55
  bool isOpen() { return fd_ >= 0; }
 
56
 
 
57
  void open() {}
 
58
 
 
59
  void close();
 
60
 
 
61
  uint32_t read(uint8_t* buf, uint32_t len);
 
62
 
 
63
  void write(const uint8_t* buf, uint32_t len);
 
64
 
 
65
  void setFD(int fd) { fd_ = fd; }
 
66
  int getFD() { return fd_; }
 
67
 
 
68
 protected:
 
69
  int fd_;
 
70
  ClosePolicy close_policy_;
 
71
};
 
72
 
 
73
}}} // apache::thrift::transport
 
74
 
 
75
#endif // #ifndef _THRIFT_TRANSPORT_TFDTRANSPORT_H_