Import atomix/{storage,utils}
[controller.git] / third-party / atomix / utils / src / main / java / io / atomix / utils / memory / Memory.java
1 /*
2  * Copyright 2017-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.memory;
17
18 /**
19  * Memory allocator.
20  *
21  * @author <a href="http://github.com/kuujo">Jordan Halterman</a>
22  */
23 public interface Memory {
24
25   /**
26    * Returns the memory count.
27    *
28    * @return The memory count.
29    */
30   int size();
31
32   /**
33    * Frees the memory.
34    */
35   void free();
36
37   /**
38    * Memory utilities.
39    */
40   class Util {
41
42     /**
43      * Returns a boolean indicating whether the given count is a power of 2.
44      */
45     public static boolean isPow2(int size) {
46       return size > 0 & (size & (size - 1)) == 0;
47     }
48
49     /**
50      * Rounds the count to the nearest power of two.
51      */
52     public static long toPow2(int size) {
53       if ((size & (size - 1)) == 0) {
54         return size;
55       }
56       int i = 128;
57       while (i < size) {
58         i *= 2;
59         if (i <= 0) {
60           return 1L << 62;
61         }
62       }
63       return i;
64     }
65   }
66
67 }