Related: tdf#149085 fix IDs in context attributes
[LibreOffice.git] / include / codemaker / global.hxx
blobe62e1a97327311df23f6b8e0d349c0ffe7e88ac7
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 #ifndef INCLUDED_CODEMAKER_GLOBAL_HXX
21 #define INCLUDED_CODEMAKER_GLOBAL_HXX
23 #include <utility>
24 #include <vector>
25 #include <string_view>
27 #include <osl/file.hxx>
28 #include <rtl/ustring.hxx>
29 #include <rtl/strbuf.hxx>
31 typedef ::std::vector< ::rtl::OString > StringVector;
34 // FileStream
36 class FileStream final
38 public:
39 FileStream();
40 ~FileStream();
42 bool isValid() const;
44 void createTempFile(const ::rtl::OString& sPath);
45 void close();
47 const ::rtl::OString& getName() const { return m_name; }
49 bool write(void const * buffer, sal_uInt64 size);
51 // friend functions
52 friend FileStream &operator<<(FileStream& o, sal_uInt32 i);
53 friend FileStream &operator<<(FileStream& o, char const * s);
54 friend FileStream &operator<<(FileStream& o, ::rtl::OString const * s);
55 friend FileStream &operator<<(FileStream& o, const ::rtl::OString& s);
56 friend FileStream &operator<<(FileStream& o, ::rtl::OStringBuffer const * s);
57 friend FileStream &operator<<(FileStream& o, const ::rtl::OStringBuffer& s);
58 friend FileStream & operator <<(FileStream & out, std::u16string_view s);
60 private:
61 oslFileHandle m_file;
62 ::rtl::OString m_name;
66 // Helper functions
68 ::rtl::OString getTempDir(const ::rtl::OString& sFileName);
70 ::rtl::OString createFileNameFromType(const ::rtl::OString& destination,
71 const ::rtl::OString& type,
72 const ::rtl::OString& postfix);
74 bool fileExists(const ::rtl::OString& fileName);
75 bool makeValidTypeFile(const ::rtl::OString& targetFileName,
76 const ::rtl::OString& tmpFileName,
77 bool bFileCheck);
78 bool removeTypeFile(const ::rtl::OString& fileName);
80 ::rtl::OUString convertToFileUrl(const ::rtl::OString& fileName);
82 class CannotDumpException final {
83 public:
84 CannotDumpException(OUString message): message_(std::move(message)) {}
86 ~CannotDumpException() noexcept;
88 const OUString& getMessage() const { return message_; }
90 private:
91 OUString message_;
94 #endif // INCLUDED_CODEMAKER_GLOBAL_HXX
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */