summaryrefslogtreecommitdiff
path: root/include/desktop/crashreport.hxx
blob: b9bbb7ce01bf760aad6ca18f0160771652a4c9b3 (plain)
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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef INCLUDED_DESKTOP_CRASHREPORT_HXX
#define INCLUDED_DESKTOP_CRASHREPORT_HXX

#include <desktop/dllapi.h>

#include <rtl/ustring.hxx>
#include <osl/mutex.hxx>

#include <config_features.h>

#include <map>

/**
 * Provides access to the crash reporter service.
 *
 * Valid keys are:
 *      * AdapterVendorId
 *      * AdapterDeviceId
 *
 */
class CRASHREPORT_DLLPUBLIC CrashReporter
{
public:
    static void AddKeyValue(const OUString& rKey, const OUString& rValue);

    static const char* getIniFileName();

private:

    static osl::Mutex maMutex;
};

// Add dummy methods for the non-breakpad case. That allows us to use
// the code without linking to the lib and without adding HAVE_FEATURE_BREAKPAD
// everywhere we want to log something to the crash report system.
#if HAVE_FEATURE_BREAKPAD
#else
inline void CrashReporter::AddKeyValue(const OUString& /*rKey*/, const OUString& /*rValue*/)
{
}
#endif


#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */