diff --git a/Makefile.am b/Makefile.am index 83ff58139..f41f852f6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1293,6 +1293,7 @@ endif # libinput_a_SOURCES = \ + src/input/Error.cxx src/input/Error.hxx \ src/input/Init.cxx src/input/Init.hxx \ src/input/Registry.cxx src/input/Registry.hxx \ src/input/Open.cxx \ diff --git a/src/input/Error.cxx b/src/input/Error.cxx new file mode 100644 index 000000000..04638a16e --- /dev/null +++ b/src/input/Error.cxx @@ -0,0 +1,36 @@ +/* + * Copyright 2003-2018 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 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 General Public License for more details. + * + * You should have received a copy of the GNU 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. + */ + +#include "config.h" +#include "Error.hxx" +#include "system/Error.hxx" + +bool +IsFileNotFound(std::exception_ptr ep) +{ + try { + std::rethrow_exception(ep); + } catch (const std::system_error &e) { + return IsFileNotFound(e); + } catch (...) { + } + + return false; +} + diff --git a/src/input/Error.hxx b/src/input/Error.hxx new file mode 100644 index 000000000..b52b9d06b --- /dev/null +++ b/src/input/Error.hxx @@ -0,0 +1,37 @@ +/* + * Copyright 2003-2018 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 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 General Public License for more details. + * + * You should have received a copy of the GNU 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. + */ + +#ifndef INPUT_ERROR_HXX +#define INPUT_ERROR_HXX + +#include "check.h" +#include "Compiler.h" + +#include + +/** + * Was this exception thrown because the requested file does not + * exist? This function attempts to recognize exceptions thrown by + * various input plugins. + */ +gcc_pure +bool +IsFileNotFound(std::exception_ptr e); + +#endif