# Copyright (c) 2025 Zhendong Peng (pzd17@tsinghua.org.cn)
#
# 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.

from typing import Any, Iterator, List, Optional, Union

import numpy as np
from soundfile import LibsndfileError

from audiolab.av import aformat
from audiolab.av.graph import Graph
from audiolab.av.typing import UINT32_MAX, AudioFrame
from audiolab.reader.backend import Backend
from audiolab.reader.info import Info
from audiolab.reader.reader import Reader
from audiolab.reader.stream_reader import StreamReader


def info(file: Any, forced_decoding: bool = False, backends: Optional[List[Backend]] = None) -> Info:
    """
    Get the information of an audio file.

    Args:
        file: The input audio file, audio url, path to audio file, bytes of audio data, etc.
        forced_decoding: Whether to forced decoding the audio file to get the duration.
        backends: The list of backends to use to get the information.
    Returns:
        The information of the audio file.
    """
    return Info(file, forced_decoding=forced_decoding, backends=backends)


def load_audio(file: Any, **kwargs) -> Union[Iterator[AudioFrame], AudioFrame]:
    reader = Reader(file, **kwargs)
    if reader.frame_size < UINT32_MAX:
        return iter(reader)
    else:
        try:
            return next(iter(reader))
        except (StopIteration, LibsndfileError) as e:
            if isinstance(e, LibsndfileError) and str(e) != "Internal psf_fseek() failed.":
                raise e
            return np.array([]), reader.rate


__all__ = ["Graph", "Reader", "StreamReader", "aformat", "load_audio"]
