aboutsummaryrefslogtreecommitdiff
path: root/tools/lldb-server/LLDBServerUtilities.cpp
blob: 438d9f127d634dcc7e472d207637bb66cbe412ab (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
//===-- LLDBServerUtilities.cpp ---------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "LLDBServerUtilities.h"

#include "lldb/Core/Log.h"
#include "lldb/Core/StreamFile.h"
#include "lldb/Core/StreamString.h"
#include "lldb/Interpreter/Args.h"

#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"

using namespace lldb;
using namespace lldb_private::lldb_server;
using namespace llvm;

bool
LLDBServerUtilities::SetupLogging(const std::string& log_file,
	                              const StringRef& log_channels,
	                              uint32_t log_options)
{
    lldb::StreamSP log_stream_sp;
    if (log_file.empty())
    {
        log_stream_sp.reset(new StreamFile(stdout, false));
    }
    else
    {
        uint32_t options = File::eOpenOptionWrite | File::eOpenOptionCanCreate |
                           File::eOpenOptionCloseOnExec | File::eOpenOptionAppend;
        if (!(log_options & LLDB_LOG_OPTION_APPEND))
            options |= File::eOpenOptionTruncate;

        log_stream_sp.reset(new StreamFile(log_file.c_str(), options));
    }

    SmallVector<StringRef, 32> channel_array;
    log_channels.split(channel_array, ":", /*MaxSplit*/ -1, /*KeepEmpty*/ false);
    for (auto channel_with_categories : channel_array)
    {
        StreamString error_stream;
        Args channel_then_categories(channel_with_categories);
        std::string channel(channel_then_categories.GetArgumentAtIndex(0));
        channel_then_categories.Shift (); // Shift off the channel

        bool success = Log::EnableLogChannel(log_stream_sp,
                                             log_options,
                                             channel.c_str(),
                                             channel_then_categories.GetConstArgumentVector(),
                                             error_stream);
        if (!success)
        {
            fprintf(stderr, "Unable to open log file '%s' for channel \"%s\"\n",
                    log_file.c_str(),
                    channel_with_categories.str().c_str());
            return false;
        }
    }
    return true;
}