dict.dart
3.4 KB
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
/*
* Copyright (C) 2017, David PHAM-VAN <dev.nfet.net@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import 'dart:math' as math;
import 'array.dart';
import 'base.dart';
import 'bool.dart';
import 'indirect.dart';
import 'null_value.dart';
import 'num.dart';
import 'object_base.dart';
import 'stream.dart';
class PdfDict<T extends PdfDataType> extends PdfDataType {
PdfDict([Map<String, T>? values]) : values = {if (values != null) ...values};
PdfDict.values([Map<String, T>? values]) : values = values ?? {};
static PdfDict<PdfIndirect> fromObjectMap(
Map<String, PdfObjectBase> objects) {
return PdfDict.values(
objects.map<String, PdfIndirect>(
(key, value) => MapEntry<String, PdfIndirect>(key, value.ref()),
),
);
}
final Map<String, T> values;
bool get isNotEmpty => values.isNotEmpty;
bool get isEmpty => values.isEmpty;
operator []=(String k, T v) {
values[k] = v;
}
T? operator [](String k) {
return values[k];
}
@override
void output(PdfObjectBase o, PdfStream s, [int? indent]) {
if (indent != null) {
s.putBytes(List<int>.filled(indent, 0x20));
}
s.putBytes(const <int>[0x3c, 0x3c]);
var len = 0;
var n = 1;
if (indent != null) {
s.putByte(0x0a);
indent += kIndentSize;
len = values.keys.fold<int>(0, (p, e) => math.max(p, e.length));
}
values.forEach((String k, T v) {
if (indent != null) {
s.putBytes(List<int>.filled(indent, 0x20));
n = len - k.length + 1;
}
s.putString(k);
if (indent != null) {
if (v is PdfDict || v is PdfArray) {
s.putByte(0x0a);
} else {
s.putBytes(List<int>.filled(n, 0x20));
}
} else {
if (v is PdfNum || v is PdfBool || v is PdfNull || v is PdfIndirect) {
s.putByte(0x20);
}
}
v.output(o, s, indent);
if (indent != null) {
s.putByte(0x0a);
}
});
if (indent != null) {
indent -= kIndentSize;
s.putBytes(List<int>.filled(indent, 0x20));
}
s.putBytes(const <int>[0x3e, 0x3e]);
}
bool containsKey(String key) {
return values.containsKey(key);
}
void merge(PdfDict<T> other) {
for (final key in other.values.keys) {
final value = other[key]!;
final current = values[key];
if (current == null) {
values[key] = value;
} else if (value is PdfArray && current is PdfArray) {
current.values.addAll(value.values);
current.uniq();
} else if (value is PdfDict && current is PdfDict) {
current.merge(value);
} else {
values[key] = value;
}
}
}
void addAll(PdfDict<T> other) {
values.addAll(other.values);
}
@override
bool operator ==(Object other) {
if (other is PdfDict) {
return values == other.values;
}
return false;
}
@override
int get hashCode => values.hashCode;
}