Coverage Report

Created: 2026-05-16 09:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/vcl/workben/dxffuzzer.cxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
5
 * This Source Code Form is subject to the terms of the Mozilla Public
6
 * License, v. 2.0. If a copy of the MPL was not distributed with this
7
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
 */
9
10
#include <tools/stream.hxx>
11
#include <vcl/FilterConfigItem.hxx>
12
#include "commonfuzzer.hxx"
13
#include <filter/DxfReader.hxx>
14
15
#include <config_features.h>
16
#include <osl/detail/component-mapping.h>
17
18
extern "C" {
19
void com_sun_star_i18n_LocaleDataImpl_get_implementation( void );
20
void com_sun_star_i18n_BreakIterator_Unicode_get_implementation( void );
21
void com_sun_star_i18n_BreakIterator_get_implementation( void );
22
void com_sun_star_i18n_NativeNumberSupplier_get_implementation( void );
23
void com_sun_star_i18n_NumberFormatCodeMapper_get_implementation( void );
24
}
25
26
const lib_to_factory_mapping *
27
lo_get_factory_map(void)
28
0
{
29
0
    static lib_to_factory_mapping map[] = {
30
0
        { 0, 0 }
31
0
    };
32
33
0
    return map;
34
0
}
35
36
const lib_to_constructor_mapping *
37
lo_get_constructor_map(void)
38
279k
{
39
279k
    static lib_to_constructor_mapping map[] = {
40
279k
        { "com_sun_star_i18n_LocaleDataImpl_get_implementation", com_sun_star_i18n_LocaleDataImpl_get_implementation },
41
279k
        { "com_sun_star_i18n_BreakIterator_Unicode_get_implementation", com_sun_star_i18n_BreakIterator_Unicode_get_implementation },
42
279k
        { "com_sun_star_i18n_BreakIterator_get_implementation", com_sun_star_i18n_BreakIterator_get_implementation },
43
279k
        { "com_sun_star_i18n_NativeNumberSupplier_get_implementation", com_sun_star_i18n_NativeNumberSupplier_get_implementation },
44
279k
        { "com_sun_star_i18n_NumberFormatCodeMapper_get_implementation", com_sun_star_i18n_NumberFormatCodeMapper_get_implementation },
45
279k
        { 0, 0 }
46
279k
    };
47
48
279k
    return map;
49
279k
}
50
51
extern "C" void* lo_get_custom_widget_func(const char*)
52
0
{
53
0
    return nullptr;
54
0
}
55
56
extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv)
57
94
{
58
94
    TypicalFuzzerInitialize(argc, argv);
59
94
    return 0;
60
94
}
61
62
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
63
416k
{
64
416k
    SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ);
65
416k
    ImportOutput aImportOutput;
66
416k
    (void)ImportDxfGraphic(aStream, aImportOutput);
67
416k
    return 0;
68
416k
}
69
70
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */