Package org.axonframework.integrationtests.eventstore.benchmark.fs

Source Code of org.axonframework.integrationtests.eventstore.benchmark.fs.CachingEventFileResolver$OutputStreamWrapper

/*
* Copyright (c) 2010-2012. Axon Framework
*
* 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 org.axonframework.integrationtests.eventstore.benchmark.fs;

import org.axonframework.eventstore.fs.EventFileResolver;
import org.axonframework.eventstore.fs.SimpleEventFileResolver;
import org.springframework.beans.factory.DisposableBean;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.ConcurrentSkipListMap;

/**
* @author Allard Buijze
*/
public class CachingEventFileResolver implements EventFileResolver, DisposableBean {

    private final EventFileResolver delegate;
    private final ConcurrentMap<String, OutputStreamWrapper> openFiles = new ConcurrentSkipListMap<String, OutputStreamWrapper>();

    public CachingEventFileResolver(File baseDir) {
        this.delegate = new SimpleEventFileResolver(baseDir);
    }

    @Override
    public OutputStream openEventFileForWriting(String type, Object aggregateIdentifier)
            throws IOException {
        if (!openFiles.containsKey(getKey(type, aggregateIdentifier))) {
            OutputStream out = delegate.openEventFileForWriting(type, aggregateIdentifier);
            openFiles.putIfAbsent(getKey(type, aggregateIdentifier), new OutputStreamWrapper(out));
        }
        return openFiles.get(getKey(type, aggregateIdentifier));
    }

    private String getKey(String type, Object aggregateIdentifier) {
        return type + aggregateIdentifier.toString();
    }

    @Override
    public OutputStream openSnapshotFileForWriting(String type, Object aggregateIdentifier)
            throws IOException {
        return delegate.openSnapshotFileForWriting(type, aggregateIdentifier);
    }

    @Override
    public InputStream openEventFileForReading(String type, Object aggregateIdentifier)
            throws IOException {
        return delegate.openEventFileForReading(type, aggregateIdentifier);
    }

    @Override
    public InputStream openSnapshotFileForReading(String type, Object aggregateIdentifier)
            throws IOException {
        return delegate.openSnapshotFileForReading(type, aggregateIdentifier);
    }

    @Override
    public boolean eventFileExists(String type, Object aggregateIdentifier) throws IOException {
        return openFiles.containsKey(getKey(type, aggregateIdentifier)) || delegate.eventFileExists(type,
                                                                                                    aggregateIdentifier);
    }

    @Override
    public boolean snapshotFileExists(String type, Object aggregateIdentifier) throws IOException {
        return delegate.eventFileExists(type, aggregateIdentifier);
    }

    @Override
    public void destroy() throws Exception {
        for (OutputStreamWrapper openFile : openFiles.values()) {
            openFile.getDelegate().close();
        }
    }

    private static class OutputStreamWrapper extends OutputStream {

        private final OutputStream out;

        public OutputStreamWrapper(OutputStream out) {
            this.out = out;
        }

        @Override
        public void write(int b) throws IOException {
            out.write(b);
        }

        @Override
        public void write(byte[] b) throws IOException {
            out.write(b);
        }

        @Override
        public void write(byte[] b, int off, int len) throws IOException {
            out.write(b, off, len);
        }

        @Override
        public void flush() throws IOException {
            out.flush();
        }

        @Override
        public void close() throws IOException {
            out.flush();
        }

        public OutputStream getDelegate() {
            return out;
        }
    }
}
TOP

Related Classes of org.axonframework.integrationtests.eventstore.benchmark.fs.CachingEventFileResolver$OutputStreamWrapper

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.