Branch libreoffice-24-8-3
[LibreOffice.git] / codemaker / source / cppumaker / cppumaker.cxx
blob3fe5c8855712d18143e36dbedf810d26b6eeda74
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <sal/config.h>
22 #include <cstdlib>
23 #include <cstring>
24 #include <iostream>
25 #include <vector>
27 #include <codemaker/generatedtypeset.hxx>
28 #include <codemaker/typemanager.hxx>
29 #include <rtl/ref.hxx>
30 #include <rtl/string.hxx>
31 #include <rtl/ustring.hxx>
32 #include <sal/main.h>
33 #include <sal/types.h>
34 #include <unoidl/unoidl.hxx>
35 #include <o3tl/string_view.hxx>
37 #include "cppuoptions.hxx"
38 #include "cpputype.hxx"
40 // coverity[tainted_data] - this is a build time tool
41 SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
42 CppuOptions options;
43 try {
44 if (!options.initOptions(argc, argv)) {
45 return EXIT_FAILURE;
48 rtl::Reference typeMgr(new TypeManager);
49 for (const OString& f :options.getExtraInputFiles())
51 typeMgr->loadProvider(convertToFileUrl(f), false);
53 for (const OString& f : options.getInputFiles())
55 typeMgr->loadProvider(convertToFileUrl(f), true);
57 codemaker::GeneratedTypeSet generated;
58 if (options.isValid("-T"_ostr)) {
59 OUString names(b2u(options.getOption("-T"_ostr)));
60 for (sal_Int32 i = 0; i != -1;) {
61 std::u16string_view name(o3tl::getToken(names, 0, ';', i));
62 if (!name.empty()) {
63 produce(
64 OUString(name == u"*"
65 ? u""
66 : o3tl::ends_with(name, u".*")
67 ? name.substr(0, name.size() - std::strlen(".*"))
68 : name),
69 typeMgr, generated, options);
72 } else {
73 produce(u""_ustr, typeMgr, generated, options);
75 if (!options.isValid("-nD"_ostr)) {
76 // C++ header files generated for the following UNO types are
77 // included in header files in cppu/inc/com/sun/star/uno (Any.hxx,
78 // Reference.hxx, Type.h), so it seems best to always generate those
79 // C++ header files:
80 produce(
81 u"com.sun.star.uno.RuntimeException"_ustr, typeMgr, generated,
82 options);
83 produce(
84 u"com.sun.star.uno.TypeClass"_ustr, typeMgr, generated, options);
85 produce(
86 u"com.sun.star.uno.XInterface"_ustr, typeMgr, generated, options);
88 } catch (CannotDumpException & e) {
89 std::cerr << "ERROR: " << e.getMessage() << '\n';
90 return EXIT_FAILURE;
91 } catch (unoidl::NoSuchFileException & e) {
92 std::cerr << "ERROR: No such file <" << e.getUri() << ">\n";
93 return EXIT_FAILURE;
94 } catch (unoidl::FileFormatException & e) {
95 std::cerr
96 << "ERROR: Bad format of <" << e.getUri() << ">, \""
97 << e.getDetail() << "\"\n";
98 return EXIT_FAILURE;
99 } catch (IllegalArgument& e) {
100 std::cerr << "Illegal option " << e.m_message << '\n';
101 return EXIT_FAILURE;
102 } catch (std::exception& e) {
103 std::cerr << "Failure " << e.what() << '\n';
104 return EXIT_FAILURE;
107 return EXIT_SUCCESS;
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */