aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/IOObject.h
blob: 532b1fd1bfce2d4ec53adf24eaa92e91bee50914 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//===-- IOObject.h ----------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef liblldb_Host_Common_IOObject_h_
#define liblldb_Host_Common_IOObject_h_

#include <stdarg.h>
#include <stdio.h>
#include <sys/types.h>

#include "lldb/lldb-private.h"

namespace lldb_private {

class IOObject
{
public:
    typedef enum
    {
        eFDTypeFile,        // Other FD requiring read/write
        eFDTypeSocket,      // Socket requiring send/recv
    } FDType;

    // TODO: On Windows this should be a HANDLE, and wait should use
    // WaitForMultipleObjects
    typedef int WaitableHandle;
    static const WaitableHandle kInvalidHandleValue;

    IOObject(FDType type, bool should_close)
        : m_fd_type(type)
        , m_should_close_fd(should_close)
    {
    }
    virtual ~IOObject() {}

    virtual Error Read (void *buf, size_t &num_bytes) = 0;
    virtual Error Write (const void *buf, size_t &num_bytes) = 0;
    virtual bool IsValid() const = 0;
    virtual Error Close() = 0;

    FDType GetFdType() const { return m_fd_type; }

    virtual WaitableHandle GetWaitableHandle() = 0;

protected:
    FDType m_fd_type;
    bool m_should_close_fd; // True if this class should close the file descriptor when it goes away.

private:
    DISALLOW_COPY_AND_ASSIGN (IOObject);
};

}

#endif