aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Core/StreamFile.h
blob: 781f0a59949371864b95f2576ac62619893d041e (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//===-- StreamFile.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_StreamFile_h_
#define liblldb_StreamFile_h_

// C Includes
// C++ Includes

#include <string>

// Other libraries and framework includes
// Project includes

#include "lldb/Core/Stream.h"
#include "lldb/Host/File.h"

namespace lldb_private {

class StreamFile : public Stream
{
public:
    //------------------------------------------------------------------
    // Constructors and Destructors
    //------------------------------------------------------------------
    StreamFile ();

    StreamFile (uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order);

    StreamFile (int fd, bool transfer_ownership);

    StreamFile (const char *path);

    StreamFile (const char *path,
                uint32_t options,
                uint32_t permissions = lldb::eFilePermissionsFileDefault);

    StreamFile (FILE *fh, bool transfer_ownership);

    ~StreamFile() override;

    File &
    GetFile ()
    {
        return m_file;
    }

    const File &
    GetFile () const
    {
        return m_file;
    }

    void
    Flush () override;

    size_t
    Write (const void *s, size_t length) override;

protected:
    //------------------------------------------------------------------
    // Classes that inherit from StreamFile can see and modify these
    //------------------------------------------------------------------
    File m_file;
    
private:
    DISALLOW_COPY_AND_ASSIGN (StreamFile);
};

} // namespace lldb_private

#endif // liblldb_StreamFile_h_