-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsizes.mjs
163 lines (144 loc) · 3.55 KB
/
sizes.mjs
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
export function getNumericFrameSize(frameSize) {
const headerSize = 10;
const encodingSize = 1;
return headerSize + encodingSize + frameSize;
}
export function getStringFrameSize(frameSize) {
const headerSize = 10;
const encodingSize = 1;
const bomSize = 2;
const frameUtf16Size = frameSize * 2;
return headerSize + encodingSize + bomSize + frameUtf16Size;
}
export function getLyricsFrameSize(descriptionSize, lyricsSize) {
const headerSize = 10;
const encodingSize = 1;
const languageSize = 3;
const bomSize = 2;
const descriptionUtf16Size = descriptionSize * 2;
const separatorSize = 2;
const lyricsUtf16Size = lyricsSize * 2;
return (
headerSize +
encodingSize +
languageSize +
bomSize +
descriptionUtf16Size +
separatorSize +
bomSize +
lyricsUtf16Size
);
}
export function getPictureFrameSize(
pictureSize,
mimeTypeSize,
descriptionSize,
useUnicodeEncoding,
) {
const headerSize = 10;
const encodingSize = 1;
const separatorSize = 1;
const pictureTypeSize = 1;
const bomSize = 2;
const encodedDescriptionSize = useUnicodeEncoding
? bomSize + (descriptionSize + separatorSize) * 2
: descriptionSize + separatorSize;
return (
headerSize +
encodingSize +
mimeTypeSize +
separatorSize +
pictureTypeSize +
encodedDescriptionSize +
pictureSize
);
}
export function getCommentFrameSize(descriptionSize, textSize) {
const headerSize = 10;
const encodingSize = 1;
const languageSize = 3;
const bomSize = 2;
const descriptionUtf16Size = descriptionSize * 2;
const separatorSize = 2;
const textUtf16Size = textSize * 2;
return (
headerSize +
encodingSize +
languageSize +
bomSize +
descriptionUtf16Size +
separatorSize +
bomSize +
textUtf16Size
);
}
export function getPrivateFrameSize(idSize, dataSize) {
const headerSize = 10;
const separatorSize = 1;
return headerSize + idSize + separatorSize + dataSize;
}
export function getUserStringFrameSize(descriptionSize, valueSize) {
const headerSize = 10;
const encodingSize = 1;
const bomSize = 2;
const descriptionUtf16Size = descriptionSize * 2;
const separatorSize = 2;
const valueUtf16Size = valueSize * 2;
return (
headerSize +
encodingSize +
bomSize +
descriptionUtf16Size +
separatorSize +
bomSize +
valueUtf16Size
);
}
export function getUrlLinkFrameSize(urlSize) {
const headerSize = 10;
return headerSize + urlSize;
}
export function getPairedTextFrameSize(list) {
const headerSize = 10;
const encodingSize = 1;
const bomSize = 2;
const separatorSize = 2;
let encodedListSize = 0;
list.forEach((pair) => {
encodedListSize +=
bomSize +
pair[0].length * 2 +
separatorSize +
bomSize +
pair[1].length * 2 +
separatorSize;
});
return headerSize + encodingSize + encodedListSize;
}
export function getSynchronisedLyricsFrameSize(lyrics, descriptionSize) {
const headerSize = 10;
const encodingSize = 1;
const languageSize = 3;
const timestampFormatSize = 1;
const contentTypeSize = 1;
const bomSize = 2;
const descriptionUtf16Size = descriptionSize * 2;
const separatorSize = 2;
const timestampSize = 4;
let encodedLyricsSize = 0;
lyrics.forEach((line) => {
encodedLyricsSize +=
bomSize + line[0].length * 2 + separatorSize + timestampSize;
});
return (
headerSize +
encodingSize +
languageSize +
timestampFormatSize +
contentTypeSize +
bomSize +
descriptionUtf16Size +
separatorSize +
encodedLyricsSize
);
}