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

org.neo4j.fabric.executor.RemoteExecutionPlanDescription Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
/*
 * Copyright (c) "Neo4j"
 * Neo4j Sweden AB [http://neo4j.com]
 *
 * This file is part of Neo4j.
 *
 * Neo4j is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.neo4j.fabric.executor;

import java.util.List;
import java.util.Map;
import java.util.Set;

import org.neo4j.graphdb.ExecutionPlanDescription;

public class RemoteExecutionPlanDescription implements ExecutionPlanDescription
{
    private final ExecutionPlanDescription remotePlanDescription;
    private final Location.Remote location;
    private final ProfilerStatistics profilerStatistics;

    RemoteExecutionPlanDescription( ExecutionPlanDescription remotePlanDescription, Location.Remote location )
    {
        this.remotePlanDescription = remotePlanDescription;
        this.location = location;

        if ( remotePlanDescription.hasProfilerStatistics() )
        {
            profilerStatistics = new ProfilerStatisticsWrapper( remotePlanDescription.getProfilerStatistics() );
        }
        else
        {
            profilerStatistics = null;
        }
    }

    @Override
    public String getName()
    {
        return "RemoteExecution@graph(" + location.getGraphId() + ")";
    }

    @Override
    public List getChildren()
    {
        return List.of(remotePlanDescription);
    }

    @Override
    public Map getArguments()
    {
        return remotePlanDescription.getArguments();
    }

    @Override
    public Set getIdentifiers()
    {
        return remotePlanDescription.getIdentifiers();
    }

    @Override
    public boolean hasProfilerStatistics()
    {
        return remotePlanDescription.hasProfilerStatistics();
    }

    @Override
    public ProfilerStatistics getProfilerStatistics()
    {
        return profilerStatistics;
    }

    private static class ProfilerStatisticsWrapper implements ProfilerStatistics
    {

        private final ProfilerStatistics childStatistics;

        ProfilerStatisticsWrapper( ProfilerStatistics childStatistics )
        {
            this.childStatistics = childStatistics;
        }

        @Override
        public boolean hasRows()
        {
            return childStatistics.hasRows();
        }

        @Override
        public long getRows()
        {
            return childStatistics.getRows();
        }

        @Override
        public boolean hasDbHits()
        {
            return childStatistics.hasDbHits();
        }

        @Override
        public long getDbHits()
        {
            return 0;
        }

        @Override
        public boolean hasPageCacheStats()
        {
            return childStatistics.hasPageCacheStats();
        }

        @Override
        public long getPageCacheHits()
        {
            return 0;
        }

        @Override
        public long getPageCacheMisses()
        {
            return 0;
        }

        @Override
        public boolean hasTime()
        {
            // TODO: we need to investigate, how time works
            return false;
        }

        @Override
        public long getTime()
        {
            // TODO: we need to investigate, how time works
            return 0;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy