author | rehn |
Tue, 21 May 2019 10:34:57 +0200 | |
changeset 54955 | 46409371a691 |
parent 50681 | 4254bed3c09d |
child 56795 | 03ece2518428 |
permissions | -rw-r--r-- |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
1 |
/* |
49765 | 2 |
* Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
4 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. Oracle designates this |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
8 |
* particular file as subject to the "Classpath" exception as provided |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
10 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
15 |
* accompanied this code). |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
16 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License version |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
20 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
22 |
* or visit www.oracle.com if you need additional information or have any |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
23 |
* questions. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
24 |
*/ |
49765 | 25 |
package jdk.internal.net.http.hpack; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
26 |
|
49765 | 27 |
import jdk.internal.net.http.hpack.HPACK.Logger; |
45119
decbbff9fdb4
8179021: Latest bugfixes to WebSocket/HPACK from the sandbox repo
prappo
parents:
42460
diff
changeset
|
28 |
|
49765 | 29 |
import java.util.Deque; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
30 |
import java.util.HashMap; |
49765 | 31 |
import java.util.LinkedList; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
32 |
import java.util.Map; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
33 |
|
49765 | 34 |
/* |
35 |
* Adds reverse lookup to SimpleHeaderTable. Separated from SimpleHeaderTable |
|
36 |
* for performance reasons. Decoder does not need this functionality. On the |
|
37 |
* other hand, Encoder does. |
|
38 |
*/ |
|
39 |
final class HeaderTable extends SimpleHeaderTable { |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
40 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
41 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
42 |
// To quickly find an index of an entry in the dynamic table with the given |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
43 |
// contents an effective inverse mapping is needed. Here's a simple idea |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
44 |
// behind such a mapping. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
45 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
46 |
// # The problem: |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
47 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
48 |
// We have a queue with an O(1) lookup by index: |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
49 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
50 |
// get: index -> x |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
51 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
52 |
// What we want is an O(1) reverse lookup: |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
53 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
54 |
// indexOf: x -> index |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
55 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
56 |
// # Solution: |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
57 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
58 |
// Let's store an inverse mapping in a Map<x, Integer>. This have a problem |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
59 |
// that when a new element is added to the queue, all indexes in the map |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
60 |
// become invalid. Namely, the new element is assigned with an index of 1, |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
61 |
// and each index i, i > 1 becomes shifted by 1 to the left: |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
62 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
63 |
// 1, 1, 2, 3, ... , n-1, n |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
64 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
65 |
// Re-establishing the invariant would seem to require a pass through the |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
66 |
// map incrementing all indexes (map values) by 1, which is O(n). |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
67 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
68 |
// The good news is we can do much better then this! |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
69 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
70 |
// Let's create a single field of type long, called 'counter'. Then each |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
71 |
// time a new element 'x' is added to the queue, a value of this field gets |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
72 |
// incremented. Then the resulting value of the 'counter_x' is then put as a |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
73 |
// value under key 'x' to the map: |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
74 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
75 |
// map.put(x, counter_x) |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
76 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
77 |
// It gives us a map that maps an element to a value the counter had at the |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
78 |
// time the element had been added. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
79 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
80 |
// In order to retrieve an index of any element 'x' in the queue (at any |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
81 |
// given time) we simply need to subtract the value (the snapshot of the |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
82 |
// counter at the time when the 'x' was added) from the current value of the |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
83 |
// counter. This operation basically answers the question: |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
84 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
85 |
// How many elements ago 'x' was the tail of the queue? |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
86 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
87 |
// Which is the same as its index in the queue now. Given, of course, it's |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
88 |
// still in the queue. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
89 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
90 |
// I'm pretty sure in a real life long overflow will never happen, so it's |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
91 |
// not too practical to add recalibrating code, but a pedantic person might |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
92 |
// want to do so: |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
93 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
94 |
// if (counter == Long.MAX_VALUE) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
95 |
// recalibrate(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
96 |
// } |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
97 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
98 |
// Where 'recalibrate()' goes through the table doing this: |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
99 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
100 |
// value -= counter |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
101 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
102 |
// That's given, of course, the size of the table itself is less than |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
103 |
// Long.MAX_VALUE :-) |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
104 |
// |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
105 |
|
50681 | 106 |
/* An immutable map of static header fields' indexes */ |
107 |
private static final Map<String, Map<String, Integer>> staticIndexes; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
108 |
|
49765 | 109 |
static { |
50681 | 110 |
Map<String, Map<String, Integer>> map |
111 |
= new HashMap<>(STATIC_TABLE_LENGTH); |
|
49765 | 112 |
for (int i = 1; i <= STATIC_TABLE_LENGTH; i++) { |
50681 | 113 |
HeaderField f = staticTable.get(i); |
114 |
Map<String, Integer> values |
|
115 |
= map.computeIfAbsent(f.name, k -> new HashMap<>()); |
|
49765 | 116 |
values.put(f.value, i); |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
117 |
} |
50681 | 118 |
// create an immutable deep copy |
119 |
Map<String, Map<String, Integer>> copy = new HashMap<>(map.size()); |
|
120 |
for (Map.Entry<String, Map<String, Integer>> e : map.entrySet()) { |
|
121 |
copy.put(e.getKey(), Map.copyOf(e.getValue())); |
|
122 |
} |
|
123 |
staticIndexes = Map.copyOf(copy); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
124 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
125 |
|
49765 | 126 |
// name -> (value -> [index]) |
127 |
private final Map<String, Map<String, Deque<Long>>> map; |
|
128 |
private long counter = 1; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
129 |
|
49765 | 130 |
public HeaderTable(int maxSize, Logger logger) { |
131 |
super(maxSize, logger); |
|
132 |
map = new HashMap<>(); |
|
133 |
} |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
134 |
|
49765 | 135 |
// |
136 |
// This method returns: |
|
137 |
// |
|
138 |
// * a positive integer i where i (i = [1..Integer.MAX_VALUE]) is an |
|
139 |
// index of an entry with a header (n, v), where n.equals(name) && |
|
140 |
// v.equals(value) |
|
141 |
// |
|
142 |
// * a negative integer j where j (j = [-Integer.MAX_VALUE..-1]) is an |
|
143 |
// index of an entry with a header (n, v), where n.equals(name) |
|
144 |
// |
|
145 |
// * 0 if there's no entry e such that e.getName().equals(name) |
|
146 |
// |
|
147 |
// The rationale behind this design is to allow to pack more useful data |
|
148 |
// into a single invocation, facilitating a single pass where possible |
|
149 |
// (the idea is the same as in java.util.Arrays.binarySearch(int[], int)). |
|
150 |
// |
|
151 |
public int indexOf(CharSequence name, CharSequence value) { |
|
152 |
// Invoking toString() will possibly allocate Strings for the sake of |
|
153 |
// the search, which doesn't feel right. |
|
154 |
String n = name.toString(); |
|
155 |
String v = value.toString(); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
156 |
|
49765 | 157 |
// 1. Try exact match in the static region |
158 |
Map<String, Integer> values = staticIndexes.get(n); |
|
159 |
if (values != null) { |
|
160 |
Integer idx = values.get(v); |
|
161 |
if (idx != null) { |
|
162 |
return idx; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
163 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
164 |
} |
49765 | 165 |
// 2. Try exact match in the dynamic region |
166 |
int didx = search(n, v); |
|
167 |
if (didx > 0) { |
|
168 |
return STATIC_TABLE_LENGTH + didx; |
|
169 |
} else if (didx < 0) { |
|
170 |
if (values != null) { |
|
171 |
// 3. Return name match from the static region |
|
172 |
return -values.values().iterator().next(); // Iterator allocation |
|
173 |
} else { |
|
174 |
// 4. Return name match from the dynamic region |
|
175 |
return -STATIC_TABLE_LENGTH + didx; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
176 |
} |
49765 | 177 |
} else { |
178 |
if (values != null) { |
|
179 |
// 3. Return name match from the static region |
|
180 |
return -values.values().iterator().next(); // Iterator allocation |
|
181 |
} else { |
|
182 |
return 0; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
183 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
184 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
185 |
} |
49765 | 186 |
|
187 |
@Override |
|
188 |
protected void add(HeaderField f) { |
|
189 |
super.add(f); |
|
190 |
Map<String, Deque<Long>> values = map.computeIfAbsent(f.name, k -> new HashMap<>()); |
|
191 |
Deque<Long> indexes = values.computeIfAbsent(f.value, k -> new LinkedList<>()); |
|
192 |
long counterSnapshot = counter++; |
|
193 |
indexes.add(counterSnapshot); |
|
194 |
assert indexesUniqueAndOrdered(indexes); |
|
195 |
} |
|
196 |
||
197 |
private boolean indexesUniqueAndOrdered(Deque<Long> indexes) { |
|
198 |
long maxIndexSoFar = -1; |
|
199 |
for (long l : indexes) { |
|
200 |
if (l <= maxIndexSoFar) { |
|
201 |
return false; |
|
202 |
} else { |
|
203 |
maxIndexSoFar = l; |
|
204 |
} |
|
205 |
} |
|
206 |
return true; |
|
207 |
} |
|
208 |
||
209 |
int search(String name, String value) { |
|
210 |
Map<String, Deque<Long>> values = map.get(name); |
|
211 |
if (values == null) { |
|
212 |
return 0; |
|
213 |
} |
|
214 |
Deque<Long> indexes = values.get(value); |
|
215 |
if (indexes != null) { |
|
216 |
return (int) (counter - indexes.peekLast()); |
|
217 |
} else { |
|
218 |
assert !values.isEmpty(); |
|
219 |
Long any = values.values().iterator().next().peekLast(); // Iterator allocation |
|
220 |
return -(int) (counter - any); |
|
221 |
} |
|
222 |
} |
|
223 |
||
224 |
@Override |
|
225 |
protected HeaderField remove() { |
|
226 |
HeaderField f = super.remove(); |
|
227 |
Map<String, Deque<Long>> values = map.get(f.name); |
|
228 |
Deque<Long> indexes = values.get(f.value); |
|
229 |
Long index = indexes.pollFirst(); |
|
230 |
if (indexes.isEmpty()) { |
|
231 |
values.remove(f.value); |
|
232 |
} |
|
233 |
assert index != null; |
|
234 |
if (values.isEmpty()) { |
|
235 |
map.remove(f.name); |
|
236 |
} |
|
237 |
return f; |
|
238 |
} |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
239 |
} |