Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / vcl / workben / wmffuzzer.cxx
blobb6ea0b593c86289768904a42f2fef4eca69049bc
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/gdimtf.hxx>
12 #include <vcl/wmf.hxx>
13 #include "commonfuzzer.hxx"
15 #include <config_features.h>
16 #include <osl/detail/component-mapping.h>
18 extern "C" {
19 void * emfio_component_getFactory( const char* , void* , void* );
20 void * com_sun_star_i18n_LocaleDataImpl_get_implementation( void *, void * );
21 void * com_sun_star_i18n_BreakIterator_Unicode_get_implementation( void *, void * );
22 void * com_sun_star_i18n_BreakIterator_get_implementation( void *, void * );
25 const lib_to_factory_mapping *
26 lo_get_factory_map(void)
28 static lib_to_factory_mapping map[] = {
29 { "libemfiolo.a", emfio_component_getFactory },
30 { 0, 0 }
33 return map;
36 const lib_to_constructor_mapping *
37 lo_get_constructor_map(void)
39 static lib_to_constructor_mapping map[] = {
40 { "com_sun_star_i18n_LocaleDataImpl_get_implementation", com_sun_star_i18n_LocaleDataImpl_get_implementation },
41 { "com_sun_star_i18n_BreakIterator_Unicode_get_implementation", com_sun_star_i18n_BreakIterator_Unicode_get_implementation },
42 { "com_sun_star_i18n_BreakIterator_get_implementation", com_sun_star_i18n_BreakIterator_get_implementation },
43 { 0, 0 }
46 return map;
49 extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv)
51 TypicalFuzzerInitialize(argc, argv);
52 return 0;
55 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
57 SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ);
58 GDIMetaFile aGDIMetaFile;
59 (void)ReadWindowMetafile(aStream, aGDIMetaFile);
60 //fontconfigs alloc mechanism is too complicated for lsan/valgrind so
61 //force the fontconfig options to be released now, they are demand loaded
62 //so will be recreated if necessary
63 SvpSalGraphics::getPlatformGlyphCache().ClearFontOptions();
64 return 0;
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */