Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / vcl / workben / epsfuzzer.cxx
blobeffb05193aa1ac6f69ae544108a91d9733567c68
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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 */
10 #include <tools/stream.hxx>
11 #include <vcl/FilterConfigItem.hxx>
12 #include "commonfuzzer.hxx"
14 #include <config_features.h>
15 #include <osl/detail/component-mapping.h>
17 extern "C" {
18 void * com_sun_star_i18n_LocaleDataImpl_get_implementation( void *, void * );
19 void * com_sun_star_i18n_BreakIterator_Unicode_get_implementation( void *, void * );
20 void * com_sun_star_i18n_BreakIterator_get_implementation( void *, void * );
23 const lib_to_factory_mapping *
24 lo_get_factory_map(void)
26 static lib_to_factory_mapping map[] = {
27 { 0, 0 }
30 return map;
33 const lib_to_constructor_mapping *
34 lo_get_constructor_map(void)
36 static lib_to_constructor_mapping map[] = {
37 { "com_sun_star_i18n_LocaleDataImpl_get_implementation", com_sun_star_i18n_LocaleDataImpl_get_implementation },
38 { "com_sun_star_i18n_BreakIterator_Unicode_get_implementation", com_sun_star_i18n_BreakIterator_Unicode_get_implementation },
39 { "com_sun_star_i18n_BreakIterator_get_implementation", com_sun_star_i18n_BreakIterator_get_implementation },
40 { 0, 0 }
43 return map;
46 extern "C" void* lo_get_custom_widget_func(const char*)
48 return nullptr;
51 extern "C" bool ipsGraphicImport(SvStream& rStream, Graphic& rGraphic, FilterConfigItem* pConfigItem);
53 extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv)
55 TypicalFuzzerInitialize(argc, argv);
56 return 0;
59 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
61 SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ);
62 Graphic aGraphic;
63 (void)ipsGraphicImport(aStream, aGraphic, nullptr);
64 return 0;
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */