com.android.ide.common.blame.MergingLogRewriter.java Source code

Java tutorial

Introduction

Here is the source code for com.android.ide.common.blame.MergingLogRewriter.java

Source

/*
 * Copyright (C) 2015 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.ide.common.blame;

import com.android.annotations.NonNull;
import com.google.common.base.Function;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Iterables;

import java.util.List;

/**
 * A proxy {@link MessageReceiver} that uses a {@link MergingLog} to rewrite {@link Message}s to
 * point to their original files.
 */
public class MergingLogRewriter implements MessageReceiver {

    @NonNull
    private final MessageReceiver mMessageReceiver;

    @NonNull
    private final Function<SourceFilePosition, SourceFilePosition> mGetOriginalPosition;

    /**
     * Creates a new MessageLogRewriter.
     *
     * @param mergingLog  the MergingLog to look up file positions in.
     * @param messageReceiver  the MessageReceiver to notify with the rewritten messages.
     */
    public MergingLogRewriter(@NonNull final MergingLog mergingLog, @NonNull MessageReceiver messageReceiver) {
        mMessageReceiver = messageReceiver;
        mGetOriginalPosition = new Function<SourceFilePosition, SourceFilePosition>() {
            @Override
            public SourceFilePosition apply(SourceFilePosition input) {
                return mergingLog.find(input);
            }
        };
    }

    @Override
    public void receiveMessage(@NonNull Message message) {
        List<SourceFilePosition> originalPositions = message.getSourceFilePositions();

        Iterable<SourceFilePosition> positions = Iterables.transform(originalPositions, mGetOriginalPosition);

        mMessageReceiver.receiveMessage(new Message(message.getKind(), message.getText(), message.getRawMessage(),
                message.getToolName(), ImmutableList.copyOf(positions)));
    }
}