com.navercorp.pinpoint.web.service.map.DefaultApplicationsMapCreator.java Source code

Java tutorial

Introduction

Here is the source code for com.navercorp.pinpoint.web.service.map.DefaultApplicationsMapCreator.java

Source

/*
 * Copyright 2018 NAVER Corp.
 *
 * 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.navercorp.pinpoint.web.service.map;

import com.google.common.collect.Sets;
import com.navercorp.pinpoint.web.applicationmap.rawdata.LinkDataDuplexMap;
import com.navercorp.pinpoint.web.vo.Application;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.util.CollectionUtils;

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Executor;
import java.util.function.Supplier;

/**
 * @author HyunGil Jeong
 */
public class DefaultApplicationsMapCreator implements ApplicationsMapCreator {

    private final Logger logger = LoggerFactory.getLogger(this.getClass());

    private final ApplicationMapCreator applicationMapCreator;

    private final Executor executor;

    public DefaultApplicationsMapCreator(ApplicationMapCreator applicationMapCreator, Executor executor) {
        this.applicationMapCreator = Objects.requireNonNull(applicationMapCreator,
                "applicationMapCreator must not be null");
        this.executor = Objects.requireNonNull(executor, "executor must not be null");
    }

    @Override
    public LinkDataDuplexMap createLinkDataDuplexMap(List<Application> applications,
            LinkSelectContext linkSelectContext) {
        if (CollectionUtils.isEmpty(applications)) {
            return new LinkDataDuplexMap();
        }

        if (applications.size() > 1) {
            return createParallel(applications, linkSelectContext);
        }
        return createSerial(applications, linkSelectContext);
    }

    private LinkDataDuplexMap createSerial(List<Application> applications, LinkSelectContext linkSelectContext) {
        final LinkDataDuplexMap resultMap = new LinkDataDuplexMap();
        for (Application application : applications) {
            LinkDataDuplexMap searchResult = applicationMapCreator.createMap(application, linkSelectContext);
            resultMap.addLinkDataDuplexMap(searchResult);
        }
        logger.debug("depth search. callerDepth : {}, calleeDepth : {}", linkSelectContext.getCallerDepth(),
                linkSelectContext.getCalleeDepth());
        return resultMap;
    }

    private LinkDataDuplexMap createParallel(List<Application> applications, LinkSelectContext linkSelectContext) {
        final Set<LinkDataDuplexMap> searchResults = Sets.newConcurrentHashSet();
        CompletableFuture[] futures = getLinkDataMapFutures(searchResults, applications, linkSelectContext);
        CompletableFuture.allOf(futures).join();
        LinkDataDuplexMap resultMap = new LinkDataDuplexMap();
        for (LinkDataDuplexMap searchResult : searchResults) {
            resultMap.addLinkDataDuplexMap(searchResult);
        }
        logger.debug("depth search. callerDepth : {}, calleeDepth : {}", linkSelectContext.getCallerDepth(),
                linkSelectContext.getCalleeDepth());
        return resultMap;
    }

    private CompletableFuture[] getLinkDataMapFutures(Set<LinkDataDuplexMap> searchResults,
            List<Application> targetApplicationList, LinkSelectContext linkSelectContext) {
        List<CompletableFuture<Void>> linkDataDuplexMapFutures = new ArrayList<>();
        for (Application targetApplication : targetApplicationList) {
            CompletableFuture<LinkDataDuplexMap> linkDataDuplexMapFuture = CompletableFuture
                    .supplyAsync(new Supplier<LinkDataDuplexMap>() {
                        @Override
                        public LinkDataDuplexMap get() {
                            return applicationMapCreator.createMap(targetApplication, linkSelectContext);
                        }
                    }, executor);
            CompletableFuture<Void> searchResultsFuture = linkDataDuplexMapFuture.thenAccept(searchResults::add);
            linkDataDuplexMapFutures.add(searchResultsFuture);
        }
        return linkDataDuplexMapFutures.toArray(new CompletableFuture[0]);
    }
}