rpuch commented on a change in pull request #605:
URL: https://github.com/apache/ignite-3/pull/605#discussion_r795669889



##########
File path: 
modules/configuration/src/main/java/org/apache/ignite/internal/configuration/util/ConfigurationSerializationUtil.java
##########
@@ -0,0 +1,414 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+
+package org.apache.ignite.internal.configuration.util;
+
+import java.io.Serializable;
+import java.nio.ByteBuffer;
+import java.nio.ByteOrder;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Objects;
+
+/**
+ * Utility class to help serializing  deserializing configuration values - 
primitives, strings, or arrays of primitives or strings.
+ */
+public class ConfigurationSerializationUtil {
+    private static final byte BOOLEAN = 1;
+
+    private static final byte BYTE = 2;
+
+    private static final byte SHORT = 3;
+
+    private static final byte INT = 4;
+
+    private static final byte LONG = 5;
+
+    private static final byte CHAR = 6;
+
+    private static final byte FLOAT = 7;
+
+    private static final byte DOUBLE = 8;
+
+    private static final byte STRING = 9;
+
+    private static final byte ARRAY = (byte) 0x80;
+
+    private static final String[] EMPTY_STRING_ARRAY = new String[0];
+
+    /**
+     * Converts a configuration value into a byte array.
+     *
+     * @param value Configuration values.
+     * @return Serialized value.
+     */
+    public static byte[] toBytes(Object value) {
+        Objects.requireNonNull(value);
+
+        byte header = header(value.getClass());
+
+        switch (header) {
+            case BOOLEAN:
+                return new byte[]{header, (byte) ((boolean) value ? 1 : 0)};
+
+            case BYTE:
+                return new byte[]{header, (byte) value};
+
+            case SHORT:
+                return allocateBuffer(Short.BYTES + 
1).put(header).putShort((short) value).array();
+
+            case INT:
+                return allocateBuffer(Integer.BYTES + 
1).put(header).putInt((int) value).array();
+
+            case LONG:
+                return allocateBuffer(Long.BYTES + 
1).put(header).putLong((long) value).array();
+
+            case CHAR:
+                return allocateBuffer(Character.BYTES + 
1).put(header).putChar((char) value).array();
+
+            case FLOAT:
+                return allocateBuffer(Float.BYTES + 
1).put(header).putFloat((float) value).array();
+
+            case DOUBLE:
+                return allocateBuffer(Double.BYTES + 
1).put(header).putDouble((double) value).array();
+
+            case STRING: {
+                byte[] strBytes = ((String) 
value).getBytes(StandardCharsets.UTF_8);
+
+                return allocateBuffer(1 + 
strBytes.length).put(header).put(strBytes).array();
+            }
+
+            case BOOLEAN | ARRAY: {
+                boolean[] booleans = (boolean[]) value;
+
+                int payloadSize = (booleans.length + Byte.SIZE - 1) / 
Byte.SIZE;
+
+                ByteBuffer buf = allocateBuffer(2 + payloadSize);
+
+                buf.put(header);
+
+                buf.put((byte) (payloadSize * Byte.SIZE - booleans.length));
+
+                byte[] res = buf.array();
+
+                for (int i = 0; i < booleans.length; i++) {
+                    if (booleans[i]) {
+                        res[2 + (i >>> 3)] |= (1 << (i & 7));
+                    }
+                }
+
+                return res;
+            }
+
+            case BYTE | ARRAY: {
+                byte[] bytes = (byte[]) value;
+
+                return allocateBuffer(1 + 
bytes.length).put(header).put(bytes).array();
+            }
+
+            case SHORT | ARRAY: {
+                short[] shorts = (short[]) value;
+
+                ByteBuffer buf = allocateBuffer(1 + Short.BYTES * 
shorts.length);
+
+                buf.put(header);
+
+                for (short s : shorts) {
+                    buf.putShort(s);
+                }
+
+                return buf.array();
+            }
+
+            case INT | ARRAY: {
+                int[] ints = (int[]) value;
+
+                ByteBuffer buf = allocateBuffer(1 + Integer.BYTES * 
ints.length);
+
+                buf.put(header);
+
+                for (int n : ints) {
+                    buf.putInt(n);
+                }
+
+                return buf.array();
+            }
+
+            case LONG | ARRAY: {
+                long[] longs = (long[]) value;
+
+                ByteBuffer buf = allocateBuffer(1 + Long.BYTES * longs.length);
+
+                buf.put(header);
+
+                for (long n : longs) {
+                    buf.putLong(n);
+                }
+
+                return buf.array();
+            }
+
+            case CHAR | ARRAY: {
+                char[] chars = (char[]) value;
+
+                ByteBuffer buf = allocateBuffer(1 + Character.BYTES * 
chars.length);
+
+                buf.put(header);
+
+                for (char c : chars) {
+                    buf.putChar(c);
+                }
+
+                return buf.array();
+            }
+
+            case FLOAT | ARRAY: {
+                float[] floats = (float[]) value;
+
+                ByteBuffer buf = allocateBuffer(1 + Float.BYTES * 
floats.length);
+
+                buf.put(header);
+
+                for (float f : floats) {
+                    buf.putFloat(f);
+                }
+
+                return buf.array();
+            }
+
+            case DOUBLE | ARRAY: {
+                double[] doubles = (double[]) value;
+
+                ByteBuffer buf = allocateBuffer(1 + Double.BYTES * 
doubles.length);
+
+                buf.put(header);
+
+                for (double d : doubles) {
+                    buf.putDouble(d);
+                }
+
+                return buf.array();
+            }
+
+            case STRING | ARRAY: {
+                String[] strings = (String[]) value;
+
+                byte[][] strBytes = Arrays.stream(strings).map(s -> 
s.getBytes(StandardCharsets.UTF_8)).toArray(byte[][]::new);
+
+                int totalSize = Arrays.stream(strBytes).mapToInt(bytes -> 
bytes.length).sum();
+
+                ByteBuffer buf = allocateBuffer(1 + Integer.BYTES * 
strBytes.length + totalSize);
+
+                buf.put(header);
+
+                for (int i = 0; i < strings.length; i++) {
+                    buf.putInt(strings[i].length());
+
+                    buf.put(strBytes[i]);
+                }
+
+                return buf.array();
+            }
+
+            default:
+                throw new IllegalArgumentException(value.getClass().getName());
+        }
+    }
+
+    /**
+     * Converts a byte array into a configuration value.
+     *
+     * @param bytes Serialized value.
+     * @return Deserialized configuration value.
+     */
+    public static Serializable fromBytes(byte[] bytes) {
+        ByteBuffer buf = ByteBuffer.wrap(bytes);
+
+        buf.order(ByteOrder.LITTLE_ENDIAN);
+
+        byte header = buf.get();
+
+        switch (header) {
+            case BOOLEAN:
+                return buf.get() == 1;
+
+            case BYTE:
+                return buf.get();
+
+            case SHORT:
+                return buf.getShort();
+
+            case INT:
+                return buf.getInt();
+
+            case LONG:
+                return buf.getLong();
+
+            case CHAR:
+                return buf.getChar();
+
+            case FLOAT:
+                return buf.getFloat();
+
+            case DOUBLE:
+                return buf.getDouble();
+
+            case STRING:
+                return new String(bytes, 1, bytes.length - 1, 
StandardCharsets.UTF_8);
+
+            case BOOLEAN | ARRAY: {
+                boolean[] booleans = new boolean[Byte.SIZE * (bytes.length - 
2) - bytes[1]];

Review comment:
       I suggest to extract `bytes[1]` to a variable and name it something like 
`paddingLength` to make it obvious for a reader.

##########
File path: 
modules/configuration/src/main/java/org/apache/ignite/internal/configuration/util/ConfigurationSerializationUtil.java
##########
@@ -0,0 +1,414 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+
+package org.apache.ignite.internal.configuration.util;
+
+import java.io.Serializable;
+import java.nio.ByteBuffer;
+import java.nio.ByteOrder;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Objects;
+
+/**
+ * Utility class to help serializing  deserializing configuration values - 
primitives, strings, or arrays of primitives or strings.
+ */
+public class ConfigurationSerializationUtil {
+    private static final byte BOOLEAN = 1;
+
+    private static final byte BYTE = 2;
+
+    private static final byte SHORT = 3;
+
+    private static final byte INT = 4;
+
+    private static final byte LONG = 5;
+
+    private static final byte CHAR = 6;
+
+    private static final byte FLOAT = 7;
+
+    private static final byte DOUBLE = 8;
+
+    private static final byte STRING = 9;
+
+    private static final byte ARRAY = (byte) 0x80;
+
+    private static final String[] EMPTY_STRING_ARRAY = new String[0];
+
+    /**
+     * Converts a configuration value into a byte array.
+     *
+     * @param value Configuration values.
+     * @return Serialized value.
+     */
+    public static byte[] toBytes(Object value) {
+        Objects.requireNonNull(value);
+
+        byte header = header(value.getClass());
+
+        switch (header) {
+            case BOOLEAN:
+                return new byte[]{header, (byte) ((boolean) value ? 1 : 0)};
+
+            case BYTE:
+                return new byte[]{header, (byte) value};
+
+            case SHORT:
+                return allocateBuffer(Short.BYTES + 
1).put(header).putShort((short) value).array();
+
+            case INT:
+                return allocateBuffer(Integer.BYTES + 
1).put(header).putInt((int) value).array();
+
+            case LONG:
+                return allocateBuffer(Long.BYTES + 
1).put(header).putLong((long) value).array();
+
+            case CHAR:
+                return allocateBuffer(Character.BYTES + 
1).put(header).putChar((char) value).array();
+
+            case FLOAT:
+                return allocateBuffer(Float.BYTES + 
1).put(header).putFloat((float) value).array();
+
+            case DOUBLE:
+                return allocateBuffer(Double.BYTES + 
1).put(header).putDouble((double) value).array();
+
+            case STRING: {
+                byte[] strBytes = ((String) 
value).getBytes(StandardCharsets.UTF_8);
+
+                return allocateBuffer(1 + 
strBytes.length).put(header).put(strBytes).array();
+            }
+
+            case BOOLEAN | ARRAY: {
+                boolean[] booleans = (boolean[]) value;
+
+                int payloadSize = (booleans.length + Byte.SIZE - 1) / 
Byte.SIZE;
+
+                ByteBuffer buf = allocateBuffer(2 + payloadSize);
+
+                buf.put(header);
+
+                buf.put((byte) (payloadSize * Byte.SIZE - booleans.length));

Review comment:
       I suggest to extract `payloadSize * Byte.SIZE - booleans.length` and 
name the variable like `paddingLength` to make it clear for the reader what it 
is.

##########
File path: 
modules/configuration/src/main/java/org/apache/ignite/internal/configuration/util/ConfigurationSerializationUtil.java
##########
@@ -0,0 +1,406 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+
+package org.apache.ignite.internal.configuration.util;
+
+import java.io.Serializable;
+import java.nio.ByteBuffer;
+import java.nio.ByteOrder;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Objects;
+
+/**
+ * Utility class to help serializing  deserializing configuration values - 
primitives, strings, or arrays of primitives or strings.
+ */
+public class ConfigurationSerializationUtil {
+    private static final byte BOOLEAN = 1;
+
+    private static final byte BYTE = 2;
+
+    private static final byte SHORT = 3;
+
+    private static final byte INT = 4;
+
+    private static final byte LONG = 5;
+
+    private static final byte CHAR = 6;
+
+    private static final byte FLOAT = 7;
+
+    private static final byte DOUBLE = 8;
+
+    private static final byte STRING = 9;
+
+    private static final byte ARRAY = (byte) 0x80;
+
+    private static final String[] EMPTY_STRING_ARRAY = new String[0];
+
+    /**
+     * Converts a configuration value into a byte array.
+     *
+     * @param value Configuration values.
+     * @return Serialized value.
+     */
+    public static byte[] toBytes(Object value) {
+        Objects.requireNonNull(value);
+
+        int header = header(value.getClass());
+
+        switch (header) {
+            case BOOLEAN:
+                return new byte[]{BOOLEAN, (byte) ((boolean) value ? 1 : 0)};
+
+            case BYTE:
+                return new byte[]{BYTE, (byte) value};
+
+            case SHORT:
+                return allocateBuffer(Short.BYTES + 
1).put(SHORT).putShort((short) value).array();
+
+            case INT:
+                return allocateBuffer(Integer.BYTES + 1).put(INT).putInt((int) 
value).array();
+
+            case LONG:
+                return allocateBuffer(Long.BYTES + 1).put(LONG).putLong((long) 
value).array();
+
+            case CHAR:
+                return allocateBuffer(Character.BYTES + 
1).put(CHAR).putChar((char) value).array();
+
+            case FLOAT:
+                return allocateBuffer(Float.BYTES + 
1).put(FLOAT).putFloat((float) value).array();
+
+            case DOUBLE:
+                return allocateBuffer(Double.BYTES + 
1).put(DOUBLE).putDouble((double) value).array();
+
+            case STRING: {
+                byte[] strBytes = ((String) 
value).getBytes(StandardCharsets.UTF_8);
+
+                return allocateBuffer(1 + 
strBytes.length).put(STRING).put(strBytes).array();
+            }
+
+            case BOOLEAN | ARRAY: {
+                boolean[] booleans = (boolean[]) value;

Review comment:
       Cool :) How about extracting the whole switch branch for boolean arrays 
to its own method, as it became pretty long now?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to