All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.common.util.MockPageCacheRecycler Maven / Gradle / Ivy

The newest version!
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.common.util;

import org.elasticsearch.common.recycler.Recycler.V;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.transport.LeakTracker;

import java.lang.reflect.Array;
import java.util.Arrays;
import java.util.Random;

public class MockPageCacheRecycler extends PageCacheRecycler {

    private final Random random;

    public MockPageCacheRecycler(Settings settings) {
        super(settings);
        // we always initialize with 0 here since we really only wanna have some random bytes / ints / longs
        // and given the fact that it's called concurrently it won't reproduces anyway the same order other than in a unittest
        // for the latter 0 is just fine
        random = new Random(0);
    }

    private  V wrap(final V v) {
        return new V() {

            private final LeakTracker.Leak leak = LeakTracker.INSTANCE.track(v);

            @Override
            public void close() {
                boolean leakReleased = leak.close();
                assert leakReleased : "leak should not have been released already";
                final T ref = v();
                if (ref instanceof Object[]) {
                    Arrays.fill((Object[]) ref, 0, Array.getLength(ref), null);
                } else if (ref instanceof byte[]) {
                    Arrays.fill((byte[]) ref, 0, Array.getLength(ref), (byte) random.nextInt(256));
                } else {
                    for (int i = 0; i < Array.getLength(ref); ++i) {
                        Array.set(ref, i, (byte) random.nextInt(256));
                    }
                }
                v.close();
            }

            @Override
            public T v() {
                return v.v();
            }

            @Override
            public boolean isRecycled() {
                return v.isRecycled();
            }

        };
    }

    @Override
    public V bytePage(boolean clear) {
        final V page = super.bytePage(clear);
        if (clear == false) {
            Arrays.fill(page.v(), 0, page.v().length, (byte) random.nextInt(1 << 8));
        }
        return wrap(page);
    }

    @Override
    public V objectPage() {
        return wrap(super.objectPage());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy