mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2025-04-04 12:43:52 +01:00
Compare commits
3 Commits
5aaa9aab71
...
ce7cda100f
Author | SHA1 | Date | |
---|---|---|---|
ce7cda100f | |||
2bba0ff67a | |||
df473d89ae |
18
CHANGELOG.md
18
CHANGELOG.md
@ -11,6 +11,24 @@ Before any major/minor/patch bump all unit tests will be run to verify they pass
|
|||||||
|
|
||||||
- [x]
|
- [x]
|
||||||
|
|
||||||
|
## [2.4.8] - 2023-08-13
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Error tests added in tests/test_errors.py
|
||||||
|
- fn_name and code set as class attributes for CAPIError
|
||||||
|
- Errors section in README updated.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- InstallError and CAPIError classes now subclass VMError
|
||||||
|
|
||||||
|
## [2.3.7] - 2023-08-01
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- If the configs loader is passed an invalid config TOML it will log an error but continue to load further configs into memory.
|
||||||
|
|
||||||
## [2.3.2] - 2023-07-12
|
## [2.3.2] - 2023-07-12
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -845,7 +845,10 @@ True iff a level has been updated.
|
|||||||
- `errors.VMError`: Exception raised when general errors occur.
|
- `errors.VMError`: Exception raised when general errors occur.
|
||||||
- `errors.InstallError`: Exception raised when installation errors occur.
|
- `errors.InstallError`: Exception raised when installation errors occur.
|
||||||
- `errors.CAPIError`: Exception raised when the C-API returns error values.
|
- `errors.CAPIError`: Exception raised when the C-API returns error values.
|
||||||
- Error codes are stored in {Exception Class}.code. For a full list of error codes [check the VoicemeeterRemote header file][Voicemeeter Remote Header].
|
- The following attributes are available:
|
||||||
|
- `fn_name`: C-API function name.
|
||||||
|
- `code`: error code
|
||||||
|
- For a full list of error codes check the [VoicemeeterRemote header file][Voicemeeter Remote Header].
|
||||||
|
|
||||||
|
|
||||||
### Logging
|
### Logging
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "voicemeeter-api"
|
name = "voicemeeter-api"
|
||||||
version = "2.4.7"
|
version = "2.4.8"
|
||||||
description = "A Python wrapper for the Voiceemeter API"
|
description = "A Python wrapper for the Voiceemeter API"
|
||||||
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import re
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
import voicemeeterlib
|
import voicemeeterlib
|
||||||
@ -30,11 +32,11 @@ class TestErrors:
|
|||||||
"No config with name 'unknown' is loaded into memory",
|
"No config with name 'unknown' is loaded into memory",
|
||||||
f"Known configs: {list(vm.configs.keys())}",
|
f"Known configs: {list(vm.configs.keys())}",
|
||||||
)
|
)
|
||||||
with pytest.raises(voicemeeterlib.error.VMError) as exc_info:
|
|
||||||
vm.apply_config("unknown")
|
|
||||||
|
|
||||||
e = exc_info.value
|
with pytest.raises(
|
||||||
assert e.message == "\n".join(EXPECTED_MSG)
|
voicemeeterlib.error.VMError, match=re.escape("\n".join(EXPECTED_MSG))
|
||||||
|
):
|
||||||
|
vm.apply_config("unknown")
|
||||||
|
|
||||||
def test_it_tests_an_invalid_config_key(self):
|
def test_it_tests_an_invalid_config_key(self):
|
||||||
CONFIG = {
|
CONFIG = {
|
||||||
|
@ -121,5 +121,5 @@ class CBindings(metaclass=ABCMeta):
|
|||||||
raise CAPIError(func.__name__, res)
|
raise CAPIError(func.__name__, res)
|
||||||
return res
|
return res
|
||||||
except CAPIError as e:
|
except CAPIError as e:
|
||||||
self.logger_cbindings.exception(str(e))
|
self.logger_cbindings.exception(f"{type(e).__name__}: {e}")
|
||||||
raise
|
raise
|
||||||
|
@ -1,13 +1,6 @@
|
|||||||
class VMError(Exception):
|
class VMError(Exception):
|
||||||
"""Base VM Exception class. Raised when general errors occur."""
|
"""Base VM Exception class. Raised when general errors occur."""
|
||||||
|
|
||||||
def __init__(self, msg):
|
|
||||||
self.message = msg
|
|
||||||
super().__init__(self.message)
|
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return f"{type(self).__name__}: {self.message}"
|
|
||||||
|
|
||||||
|
|
||||||
class InstallError(VMError):
|
class InstallError(VMError):
|
||||||
"""Exception raised when installation errors occur"""
|
"""Exception raised when installation errors occur"""
|
||||||
@ -16,7 +9,16 @@ class InstallError(VMError):
|
|||||||
class CAPIError(VMError):
|
class CAPIError(VMError):
|
||||||
"""Exception raised when the C-API returns an error code"""
|
"""Exception raised when the C-API returns an error code"""
|
||||||
|
|
||||||
def __init__(self, fn_name, code, msg=None):
|
def __init__(self, fn_name, code):
|
||||||
self.fn_name = fn_name
|
self.fn_name = fn_name
|
||||||
self.code = code
|
self.code = code
|
||||||
super(CAPIError, self).__init__(msg if msg else f"{fn_name} returned {code}")
|
if self.code == -9:
|
||||||
|
message = " ".join(
|
||||||
|
(
|
||||||
|
f"no bind for {self.fn_name}.",
|
||||||
|
"are you using an old version of the API?",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
message = f"{self.fn_name} returned {self.code}"
|
||||||
|
super().__init__(message)
|
||||||
|
@ -121,13 +121,7 @@ class Remote(CBindings):
|
|||||||
return self.call(self.bind_macro_button_is_dirty, ok=(0, 1)) == 1
|
return self.call(self.bind_macro_button_is_dirty, ok=(0, 1)) == 1
|
||||||
except AttributeError as e:
|
except AttributeError as e:
|
||||||
self.logger.exception(f"{type(e).__name__}: {e}")
|
self.logger.exception(f"{type(e).__name__}: {e}")
|
||||||
ERR_MSG = (
|
raise CAPIError("VBVMR_MacroButton_IsDirty", -9) from e
|
||||||
"no bind for VBVMR_MacroButton_IsDirty.",
|
|
||||||
"are you using an old version of the API?",
|
|
||||||
)
|
|
||||||
raise CAPIError(
|
|
||||||
"VBVMR_MacroButton_IsDirty", -9, msg=" ".join(ERR_MSG)
|
|
||||||
) from e
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def ldirty(self) -> bool:
|
def ldirty(self) -> bool:
|
||||||
@ -187,13 +181,7 @@ class Remote(CBindings):
|
|||||||
)
|
)
|
||||||
except AttributeError as e:
|
except AttributeError as e:
|
||||||
self.logger.exception(f"{type(e).__name__}: {e}")
|
self.logger.exception(f"{type(e).__name__}: {e}")
|
||||||
ERR_MSG = (
|
raise CAPIError("VBVMR_MacroButton_GetStatus", -9) from e
|
||||||
"no bind for VBVMR_MacroButton_GetStatus.",
|
|
||||||
"are you using an old version of the API?",
|
|
||||||
)
|
|
||||||
raise CAPIError(
|
|
||||||
"VBVMR_MacroButton_GetStatus", -9, msg=" ".join(ERR_MSG)
|
|
||||||
) from e
|
|
||||||
return int(c_state.value)
|
return int(c_state.value)
|
||||||
|
|
||||||
def set_buttonstatus(self, id_: int, val: int, mode: int) -> None:
|
def set_buttonstatus(self, id_: int, val: int, mode: int) -> None:
|
||||||
@ -208,13 +196,7 @@ class Remote(CBindings):
|
|||||||
)
|
)
|
||||||
except AttributeError as e:
|
except AttributeError as e:
|
||||||
self.logger.exception(f"{type(e).__name__}: {e}")
|
self.logger.exception(f"{type(e).__name__}: {e}")
|
||||||
ERR_MSG = (
|
raise CAPIError("VBVMR_MacroButton_SetStatus", -9) from e
|
||||||
"no bind for VBVMR_MacroButton_SetStatus.",
|
|
||||||
"are you using an old version of the API?",
|
|
||||||
)
|
|
||||||
raise CAPIError(
|
|
||||||
"VBVMR_MacroButton_SetStatus", -9, msg=" ".join(ERR_MSG)
|
|
||||||
) from e
|
|
||||||
self.cache[f"mb_{id_}_{mode}"] = int(c_state.value)
|
self.cache[f"mb_{id_}_{mode}"] = int(c_state.value)
|
||||||
|
|
||||||
def get_num_devices(self, direction: str = None) -> int:
|
def get_num_devices(self, direction: str = None) -> int:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user