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

com.signalfx.shaded.apache.commons.io.output.RandomAccessFileOutputStream Maven / Gradle / Ivy

Go to download

Bare minimum core library needed to sending metrics to SignalFx from Java clients

The newest version!
/*
 * 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 com.signalfx.shaded.apache.commons.io.output;

import java.io.IOException;
import java.io.OutputStream;
import java.io.RandomAccessFile;
import java.nio.file.StandardOpenOption;
import java.util.Objects;

import com.signalfx.shaded.apache.commons.io.build.AbstractStreamBuilder;

/**
 * An {@link OutputStream} that writes to a {@link RandomAccessFile}.
 *
 * @since 2.18.0
 */
public final class RandomAccessFileOutputStream extends OutputStream {

    // @formatter:off
    /**
     * Builds a new {@link RandomAccessFileOutputStream}.
     * 

* For example: *

*
{@code
     * RandomAccessFileOutputStream s = RandomAccessFileOutputStream.builder()
     *   .setFile("myfile.txt")
     *   .setOpenOptions(StandardOpenOption.SYNC)
     *   .get();}
     * 
*

* The only super's aspect used is buffer size. *

* * @see #get() */ // @formatter:on public final static class Builder extends AbstractStreamBuilder { /** * Use {@link RandomAccessFileOutputStream#builder()}. */ private Builder() { setOpenOptions(StandardOpenOption.WRITE); } @SuppressWarnings("resource") @Override public RandomAccessFileOutputStream get() throws IOException { return new RandomAccessFileOutputStream(getRandomAccessFile()); } } /** * Constructs a new {@link Builder}. * * @return a new {@link Builder}. */ public static Builder builder() { return new Builder(); } private final RandomAccessFile randomAccessFile; private RandomAccessFileOutputStream(final RandomAccessFile randomAccessFile) { this.randomAccessFile = Objects.requireNonNull(randomAccessFile); } @Override public void close() throws IOException { this.randomAccessFile.close(); super.close(); } @SuppressWarnings("resource") @Override public void flush() throws IOException { randomAccessFile.getChannel().force(true); super.flush(); } @Override public void write(final int b) throws IOException { randomAccessFile.write(b); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy