blob: 850371ceb5aade08e3bb5400b337766d466fccea [file] [log] [blame]
// Copyright 2019 The Wuffs Authors.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// SPDX-License-Identifier: Apache-2.0 OR MIT
// ----------------
//go:build !cgo
// +build !cgo
package cgozstd
// This file contains placeholder types and funcs so that the package still
// builds (with the same API) when CGO_ENABLED=0. The package doesn't work
// without cgo, but it will fail at run time, not compile time.
//
// In particular, the build stays green regardless of whether CGO_ENABLED is on
// or off. Installing and testing every package in the whole repository will
// not fail. The tests in this package don't pass, but they are skipped.
import (
"errors"
"io"
"github.com/google/wuffs/lib/compression"
)
const cgoEnabled = false
var (
errCgoIsNotEnabled = errors.New("cgozstd: cgo is not enabled")
)
type ReaderRecycler struct{}
func (c *ReaderRecycler) Bind(*Reader) {}
func (c *ReaderRecycler) Close() error { return errCgoIsNotEnabled }
type Reader struct{}
func (r *Reader) Close() error { return errCgoIsNotEnabled }
func (r *Reader) Read([]byte) (int, error) { return 0, errCgoIsNotEnabled }
func (r *Reader) Reset(io.Reader, []byte) error { return errCgoIsNotEnabled }
type WriterRecycler struct{}
func (c *WriterRecycler) Bind(*Writer) {}
func (c *WriterRecycler) Close() error { return errCgoIsNotEnabled }
type Writer struct{}
func (w *Writer) Close() error { return errCgoIsNotEnabled }
func (w *Writer) Reset(io.Writer, []byte, compression.Level) error { return errCgoIsNotEnabled }
func (w *Writer) Write([]byte) (int, error) { return 0, errCgoIsNotEnabled }