Package org.apache.ace.gateway.log.task

Source Code of org.apache.ace.gateway.log.task.LogSyncTask

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you 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 org.apache.ace.gateway.log.task;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.util.Iterator;
import java.util.List;

import org.apache.ace.discovery.Discovery;
import org.apache.ace.gateway.log.store.LogStore;
import org.apache.ace.identification.Identification;
import org.apache.ace.log.LogDescriptor;
import org.apache.ace.log.LogEvent;
import org.apache.ace.range.RangeIterator;
import org.apache.ace.range.SortedRangeSet;
import org.osgi.service.log.LogService;

public class LogSyncTask implements Runnable {

    private static final String COMMAND_QUERY = "query";
    private static final String COMMAND_SEND = "send";
    private static final String PARAMETER_GATEWAYID = "gwid";
    private static final String PARAMETER_LOGID = "logid";

    // injected by dependencymanager
    private volatile Discovery m_discovery;
    private volatile Identification m_identification;
    private volatile LogService m_log;
    private volatile LogStore m_LogStore;

    private final String m_endpoint;

    public LogSyncTask(String endpoint) {
        m_endpoint = endpoint;
    }

    /**
     * Synchronize the log events available remote with the events available
     * locally.
     */
    public void run() {
        String gatewayID = m_identification.getID();
        URL host = m_discovery.discover();

        if (host == null) {
            // expected if there's no discovered
            // ps or relay server
            m_log.log(LogService.LOG_WARNING,
                    "Unable to synchronize log with remote (endpoint="
                            + m_endpoint + ") - none available");
            return;
        }

        Connection sendConnection = null;
        try {
            sendConnection = new Connection(new URL(host, m_endpoint + "/"
                    + COMMAND_SEND));
            long[] logIDs = m_LogStore.getLogIDs();
            for (int i = 0; i < logIDs.length; i++) {
                Connection queryConnection = new Connection(new URL(host,
                        m_endpoint + "/" + COMMAND_QUERY + "?"
                                + PARAMETER_GATEWAYID + "=" + gatewayID + "&"
                                + PARAMETER_LOGID + "=" + logIDs[i]));
                // TODO: make sure no actual call is made using sendConnection
                // when there's nothing to sync
                synchronizeLog(logIDs[i], queryConnection.getInputStream(),
                        sendConnection);
            }
        } catch (IOException e) {
            m_log.log(LogService.LOG_ERROR,
                    "Unable to (fully) synchronize log with remote (endpoint="
                            + m_endpoint + ")", e);
        } finally {
            if (sendConnection != null) {
                sendConnection.close();
            }
        }
    }

    /**
     * Synchronizes a single log (there can be multiple log/logid's per
     * gateway).
     *
     * @param logID
     *            ID of the log to synchronize.
     * @param queryInput
     *            Stream pointing to a query result for the events available
     *            remotely for this log id
     * @param sendConnection
     *            .getOutputStream() Stream to write the events to that are
     *            missing on the remote side.
     * @throws java.io.IOException
     *             If synchronization could not be completed due to an I/O
     *             failure.
     */
    protected void synchronizeLog(long logID, InputStream queryInput,
            Connection sendConnection) throws IOException {
        long highestLocal = m_LogStore.getHighestID(logID);
        if (highestLocal == 0) {
            // No events, no need to synchronize
            return;
        }
        SortedRangeSet localRange = new SortedRangeSet("1-" + highestLocal);
        SortedRangeSet remoteRange = getDescriptor(queryInput).getRangeSet();
        SortedRangeSet delta = remoteRange.diffDest(localRange);
        RangeIterator rangeIterator = delta.iterator();
        BufferedWriter writer = null;
        writer = new BufferedWriter(new OutputStreamWriter(
                sendConnection.getOutputStream()));
        if (rangeIterator.hasNext()) {
            long lowest = rangeIterator.next();
            long highest = delta.getHigh();
            if (lowest <= highest) {
                List events = m_LogStore.get(logID, lowest,
                        highestLocal > highest ? highest : highestLocal);
                Iterator iter = events.iterator();
                while (iter.hasNext()) {
                    LogEvent current = (LogEvent) iter.next();
                    while ((current.getID() > lowest)
                            && rangeIterator.hasNext()) {
                        lowest = rangeIterator.next();
                    }
                    if (current.getID() == lowest) {
                        writer.write(current.toRepresentation() + "\n");
                    }
                }
            }
        }
        writer.flush();
    }

    /**
     * Retrieves a LogDescriptor object from the specified stream.
     *
     * @param queryInput
     *            Stream containing a LogDescriptor object.
     * @return LogDescriptor object reflecting the range contained in the
     *         stream.
     * @throws java.io.IOException
     *             If no range could be determined due to an I/O failure.
     */
    protected LogDescriptor getDescriptor(InputStream queryInput)
            throws IOException {
        BufferedReader queryReader = null;
        try {
            queryReader = new BufferedReader(new InputStreamReader(queryInput));
            String rangeString = queryReader.readLine();
            if (rangeString != null) {
                try {
                    return new LogDescriptor(rangeString);
                }
                catch (IllegalArgumentException iae) {
                    throw new IOException(
                            "Could not determine highest remote event id, received malformed event range ("
                                    + rangeString + ")");
                }
            } else {
                throw new IOException(
                        "Could not construct LogDescriptor from stream because stream is empty");
            }
        }
        finally {
            if (queryReader != null) {
                try {
                    queryReader.close();
                }
                catch (Exception ex) {
                    // not much we can do
                }
            }
        }
    }
}
TOP

Related Classes of org.apache.ace.gateway.log.task.LogSyncTask

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.