aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/main/java/com/yahoo/documentapi/messagebus/protocol/AbstractRoutableFactory.java
blob: 108623fb58f7f7696528af3215a7eb84f5c1edce (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.documentapi.messagebus.protocol;

import com.yahoo.text.Utf8;
import com.yahoo.vespa.objects.Deserializer;
import com.yahoo.vespa.objects.Serializer;

/**
 * @author Simon Thoresen Hult
 */
public abstract class AbstractRoutableFactory implements RoutableFactory {

    /**
     * Reads a string from the given buffer that was previously written by {@link #encodeString(String,
     * com.yahoo.vespa.objects.Serializer)}.
     *
     * @param in The byte buffer to read from.
     * @return The decoded string.
     */
    public static String decodeString(Deserializer in) {
        int length = in.getInt(null);
        if (length == 0) {
            return "";
        }
        return Utf8.toString(in.getBytes(null, length));
    }

    /**
     * Writes the given string to the given byte buffer in such a way that it can be decoded using {@link
     * #decodeString(com.yahoo.vespa.objects.Deserializer)}.
     *
     * @param str The string to encode.
     * @param out The byte buffer to write to.
     */
    public static void encodeString(String str, Serializer out) {
        if (str == null || str.isEmpty()) {
            out.putInt(null, 0);
        } else {
            byte[] nameBytes = Utf8.toBytes(str);
            out.putInt(null, nameBytes.length);
            out.put(null, nameBytes);
        }
    }
}