/*
 * Copyright (C) 2020 The Android Open Source Project
 *
 * Licensed 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 com.android.server.soundtrigger_middleware;

import android.annotation.NonNull;
import android.annotation.Nullable;

import java.lang.reflect.Array;
import java.util.Collection;
import java.util.Map;

/**
 * A collection of pretty-print utilities for data objects.
 */
class ObjectPrinter {
    /** Default maximum elements to print in a collection. */
    static public final int kDefaultMaxCollectionLength = 16;

    /**
     * Pretty-prints an object.
     *
     * @param obj                 The object to print.
     * @param maxCollectionLength Whenever encountering collections, maximum number of elements to
     *                            print.
     * @return A string representing the object.
     */
    static String print(@Nullable Object obj, int maxCollectionLength) {
        StringBuilder builder = new StringBuilder();
        print(builder, obj, maxCollectionLength);
        return builder.toString();
    }

    /**
     * Same as {@link #print(StringBuilder, Object, int)} with default max length.
     *
     * @param builder             StringBuilder to print into.
     * @param obj                 The object to print.
     */
    static void print(@NonNull StringBuilder builder, @Nullable Object obj) {
        print(builder, obj, kDefaultMaxCollectionLength);
    }

    /**
     * A version of {@link #print(Object, int)} that uses a {@link StringBuilder}.
     *
     * @param builder             StringBuilder to print into.
     * @param obj                 The object to print.
     * @param maxCollectionLength Whenever encountering collections, maximum number of elements to
     *                            print.
     */
    static void print(@NonNull StringBuilder builder, @Nullable Object obj,
            int maxCollectionLength) {
        try {
            if (obj == null) {
                builder.append("null");
                return;
            }
            if (obj instanceof Boolean) {
                builder.append(obj);
                return;
            }
            if (obj instanceof Number) {
                builder.append(obj);
                return;
            }
            if (obj instanceof Character) {
                builder.append('\'');
                builder.append(obj);
                builder.append('\'');
                return;
            }
            if (obj instanceof String) {
                builder.append('"');
                builder.append(obj.toString());
                builder.append('"');
                return;
            }

            Class cls = obj.getClass();

            if (Collection.class.isAssignableFrom(cls)) {
                Collection collection = (Collection) obj;
                builder.append("[ ");
                int length = collection.size();
                boolean isLong = false;
                int i = 0;
                for (Object child : collection) {
                    if (i > 0) {
                        builder.append(", ");
                    }
                    if (i >= maxCollectionLength) {
                        isLong = true;
                        break;
                    }
                    print(builder, child, maxCollectionLength);
                    ++i;
                }
                if (isLong) {
                    builder.append("... (+");
                    builder.append(length - maxCollectionLength);
                    builder.append(" entries)");
                }
                builder.append(" ]");
                return;
            }

            if (Map.class.isAssignableFrom(cls)) {
                Map<?, ?> map = (Map<?, ?>) obj;
                builder.append("< ");
                int length = map.size();
                boolean isLong = false;
                int i = 0;
                for (Map.Entry<?, ?> child : map.entrySet()) {
                    if (i > 0) {
                        builder.append(", ");
                    }
                    if (i >= maxCollectionLength) {
                        isLong = true;
                        break;
                    }
                    print(builder, child.getKey(), maxCollectionLength);
                    builder.append(": ");
                    print(builder, child.getValue(), maxCollectionLength);
                    ++i;
                }
                if (isLong) {
                    builder.append("... (+");
                    builder.append(length - maxCollectionLength);
                    builder.append(" entries)");
                }
                builder.append(" >");
                return;
            }

            if (cls.isArray()) {
                builder.append("[ ");
                int length = Array.getLength(obj);
                boolean isLong = false;
                for (int i = 0; i < length; ++i) {
                    if (i > 0) {
                        builder.append(", ");
                    }
                    if (i >= maxCollectionLength) {
                        isLong = true;
                        break;
                    }
                    print(builder, Array.get(obj, i), maxCollectionLength);
                }
                if (isLong) {
                    builder.append("... (+");
                    builder.append(length - maxCollectionLength);
                    builder.append(" entries)");
                }
                builder.append(" ]");
                return;
            }

            builder.append(obj);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}
