blob: 4e99c05f4cd98259bff94b80714a866d61cd1f1f [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===-- ResourceProcessor.h -------------------------------------*- C++-*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===---------------------------------------------------------------------===//
8
9#ifndef LLVM_INCLUDE_LLVM_SUPPORT_WINDOWS_RESOURCE_PROCESSOR_H
10#define LLVM_INCLUDE_LLVM_SUPPORT_WINDOWS_RESOURCE_PROCESSOR_H
11
12#include "llvm/ADT/StringMap.h"
13#include "llvm/ADT/StringRef.h"
14#include "llvm/Support/Error.h"
15#include "llvm/Support/raw_ostream.h"
16
17#include <memory>
18#include <vector>
19
20
21namespace llvm {
22
23class WindowsResourceProcessor {
24public:
25 using PathType = SmallVector<char, 64>;
26
27 WindowsResourceProcessor() {}
28
29 void addDefine(StringRef Key, StringRef Value = StringRef()) {
30 PreprocessorDefines.emplace_back(Key, Value);
31 }
32 void addInclude(const PathType &IncludePath) {
33 IncludeList.push_back(IncludePath);
34 }
35 void setVerbose(bool Verbose) { IsVerbose = Verbose; }
36 void setNullAtEnd(bool NullAtEnd) { AppendNull = NullAtEnd; }
37
38 Error process(StringRef InputData,
39 std::unique_ptr<raw_fd_ostream> OutputStream);
40
41private:
42 StringRef InputData;
43 std::vector<PathType> IncludeList;
44 std::vector<std::pair<StringRef, StringRef>> PreprocessorDefines;
45 bool IsVerbose, AppendNull;
46};
47
48}
49
50#endif