Eliminate atomix.utils.memory
[controller.git] / third-party / atomix / utils / src / main / java / io / atomix / utils / serializer / KryoIOPool.java
1 /*
2  * Copyright 2014-present Open Networking Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package io.atomix.utils.serializer;
17
18 import java.lang.ref.SoftReference;
19 import java.util.Queue;
20 import java.util.concurrent.ConcurrentLinkedQueue;
21 import java.util.function.Function;
22
23 abstract class KryoIOPool<T> {
24
25   private final Queue<SoftReference<T>> queue = new ConcurrentLinkedQueue<>();
26
27   private T borrow(final int bufferSize) {
28     T element;
29     SoftReference<T> reference;
30     while ((reference = queue.poll()) != null) {
31       if ((element = reference.get()) != null) {
32         return element;
33       }
34     }
35     return create(bufferSize);
36   }
37
38   protected abstract T create(final int bufferSize);
39
40   protected abstract boolean recycle(final T element);
41
42   <R> R run(final Function<T, R> function, final int bufferSize) {
43     final T element = borrow(bufferSize);
44     try {
45       return function.apply(element);
46     } finally {
47       if (recycle(element)) {
48         queue.offer(new SoftReference<>(element));
49       }
50     }
51   }
52 }