13
0

remove tape_file_matcher source

This commit is contained in:
Paul Davis 2020-02-25 20:26:45 -07:00
parent 5f88cbfd39
commit e89b0cfd27
3 changed files with 0 additions and 111 deletions

View File

@ -1,45 +0,0 @@
/*
* Copyright (C) 2008-2013 Paul Davis <paul@linuxaudiosystems.com>
*
* 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 ARDOUR_TAPE_FILE_MATCHER_INCLUDED
#define ARDOUR_TAPE_FILE_MATCHER_INCLUDED
#include <string>
#include <regex.h>
#include "ardour/libardour_visibility.h"
namespace ARDOUR {
class LIBARDOUR_API TapeFileMatcher
{
public:
TapeFileMatcher();
bool matches (const std::string& filename) const;
private:
regex_t m_compiled_pattern;
};
} // namespace ARDOUR
#endif

View File

@ -1,65 +0,0 @@
/*
* Copyright (C) 2008-2016 Paul Davis <paul@linuxaudiosystems.com>
* Copyright (C) 2009 David Robillard <d@drobilla.net>
*
* 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 "pbd/error.h"
#include "ardour/tape_file_matcher.h"
#include "pbd/i18n.h"
using namespace std;
namespace {
const char* const tape_file_regex_string = X_("/T[0-9][0-9][0-9][0-9]-");
}
namespace ARDOUR {
TapeFileMatcher::TapeFileMatcher()
{
int err;
if ((err = regcomp (&m_compiled_pattern,
tape_file_regex_string, REG_EXTENDED|REG_NOSUB)))
{
char msg[256];
regerror (err, &m_compiled_pattern, msg, sizeof (msg));
PBD::error << string_compose (_("Cannot compile tape track regexp for use (%1)"), msg) << endmsg;
// throw
}
}
bool
TapeFileMatcher::matches (const string& audio_filename) const
{
if (regexec (&m_compiled_pattern, audio_filename.c_str(), 0, 0, 0) == 0)
{
// matches
return true;
}
return false;
}
} // namespace ARDOUR

View File

@ -244,7 +244,6 @@ libardour_sources = [
'system_exec.cc',
'revision.cc',
'rt_midibuffer.cc',
'tape_file_matcher.cc',
'template_utils.cc',
'tempo.cc',
'tempo_map_importer.cc',