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

org.sonar.plugins.javascript.eslint.cache.VarLengthOutputStream Maven / Gradle / Ivy

There is a newer version: 10.17.0.28100
Show newest version
/*
 * SonarQube JavaScript Plugin
 * Copyright (C) 2011-2023 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package org.sonar.plugins.javascript.eslint.cache;

import java.io.Closeable;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.charset.StandardCharsets;
import java.util.Objects;
import javax.annotation.Nullable;

/**
 * Use variable length encoding for integers.
 * Variable Length Code
 */
public class VarLengthOutputStream implements Closeable {

  private final DataOutputStream out;

  public VarLengthOutputStream(OutputStream out) {
    this.out = new DataOutputStream(out);
  }

  public void writeInt(int value) throws IOException {
    do {
      // encode the next 7 bits + "next byte" bit
      int bits = value & 0x7F;
      // remove 7 bits from value
      value >>>= 7;
      // add "next byte" bit if another byte is required
      byte b = (byte) (bits + ((value != 0) ? 0x80 : 0));
      out.write(b);
    } while (value != 0);
  }

  public void writeUTF(@Nullable String string) throws IOException {
    var bytes = Objects.requireNonNullElse(string, "").getBytes(StandardCharsets.UTF_8);
    writeInt(bytes.length);
    out.write(bytes);
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy