Skip to content

Commit

Permalink
Revert "fix: file size check for zero rather than just exists"
Browse files Browse the repository at this point in the history
  • Loading branch information
mudler authored Nov 3, 2024
1 parent 2494246 commit 0a7aac7
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions gopiper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,16 @@ using namespace std;
int _piper_tts(char *text, char *model, char *espeakData, char *tashkeelPath, char *dst, optional<piper::SpeakerId> speakerId) {
filesystem::path model_path;
filesystem::path config_path;
error_code ec;
uintmax_t fsize;

model_path = filesystem::path(std::string(model));
config_path = filesystem::path(std::string(model) + ".json");

fsize = filesystem::file_size(model_path, &ec);
if (ec) {
spdlog::debug("Error while checking Model Path ({}) :: ({})", model_path.c_str(), ec.message());
return EXIT_FAILURE;
} else if (fsize == 0) {
spdlog::debug("Error while checking Model Path ({}) :: zero size", model_path.c_str());
if (!filesystem::exists(model_path)) {
spdlog::debug("Error: Model path does not exist: ({})", model_path.c_str());
return EXIT_FAILURE;
}

fsize = filesystem::file_size(config_path, &ec);
if (ec) {
spdlog::debug("Error while checking Model Path ({}) :: ({})", config_path.c_str(), ec.message());
return EXIT_FAILURE;
} else if (fsize == 0) {
spdlog::debug("Error while checking Model Path ({}) :: zero size", config_path.c_str());
if (!filesystem::exists(config_path)) {
spdlog::debug("Error: Config path does not exist: ({})", config_path.c_str());
return EXIT_FAILURE;
}

Expand Down

0 comments on commit 0a7aac7

Please sign in to comment.