forked from kichik/nsis
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfileform.h
79 lines (69 loc) · 2.19 KB
/
fileform.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
* fileform.h
*
* This file is a part of NSIS.
*
* Copyright (C) 1999-2023 Nullsoft and Contributors
*
* Licensed under the zlib/libpng license (the "License");
* you may not use this file except in compliance with the License.
*
* Licence details can be found in the file COPYING.
*
* This software is provided 'as-is', without any express or implied
* warranty.
*
* Unicode support by Jim Park -- 08/13/2007
*/
#ifndef ___MAKENSIS_FILEFORM_H___
#define ___MAKENSIS_FILEFORM_H___
#include "exehead/fileform.h"
#include "writer.h"
#define DECLARE_WRITER(x) \
class x##_writer : public writer \
{ \
public: \
x##_writer(writer_sink *sink) : writer(sink) {} \
void write(const x *data); \
static void write_block(IGrowBuf *buf, writer_sink *sink) \
{ \
x *arr = (x *) buf->get(); \
size_t l = buf->getlen() / sizeof(x); \
x##_writer writer(sink); \
for (size_t i = 0; i < l; i++) \
{ \
writer.write(&arr[i]); \
} \
} \
}
#define DECLARE_PLATFORMITEMWRITER(x) class x##_writer : public writer \
{ public: \
x##_writer(writer_sink *sink) : writer(sink) {} \
void write(const x *data, const writer_target_info&ti); \
static void write_block(IGrowBuf *pGB, writer_sink *pS, const writer_target_info *pTI = 0) \
{ \
x##_writer writer(pS); \
if (!pTI) pTI = &pS->get_target_info(); /* Defaults to TI from sink */ \
for (size_t l = pGB->getlen() / sizeof(x), i = 0; i < l; i++) \
writer.write(&(((x*)pGB->get())[i]), *pTI); \
} \
}
DECLARE_WRITER(firstheader);
DECLARE_PLATFORMITEMWRITER(block_header);
DECLARE_PLATFORMITEMWRITER(header); // Platform specific because it writes block_headers
DECLARE_WRITER(section);
DECLARE_WRITER(entry);
DECLARE_WRITER(page);
DECLARE_PLATFORMITEMWRITER(ctlcolors);
DECLARE_WRITER(LOGFONT);
class lang_table_writer : public writer
{
public:
lang_table_writer(writer_sink *sink, const size_t lang_strings) :
writer(sink), m_lang_strings(lang_strings) {}
void write(const unsigned char *data);
static void write_block(IGrowBuf *buf, writer_sink *sink, const size_t table_size);
private:
size_t m_lang_strings;
};
#endif//!___MAKENSIS_FILEFORM_H___