Audacity 3.2.0
Classes | Typedefs | Functions | Variables
anonymous_namespace{ProjectFileManager.cpp} Namespace Reference

Classes

class  CompactDialog
 
class  ImportProgress
 

Typedefs

using Pair = std::pair< const char *, const char * >
 

Functions

wxString FindHelpUrl (const TranslatableString &libraryError)
 
bool ImportProject (AudacityProject &dest, const FilePath &fileName)
 
std::vector< std::shared_ptr< MIR::AnalyzedAudioClip > > RunTempoDetection (const std::vector< std::shared_ptr< ClipMirAudioReader > > &readers, const MIR::ProjectInterface &project, bool projectWasEmpty)
 

Variables

const char *const defaultHelpUrl
 
const Pair helpURLTable []
 

Typedef Documentation

◆ Pair

using anonymous_namespace{ProjectFileManager.cpp}::Pair = typedef std::pair< const char *, const char * >

Definition at line 119 of file ProjectFileManager.cpp.

Function Documentation

◆ FindHelpUrl()

wxString anonymous_namespace{ProjectFileManager.cpp}::FindHelpUrl ( const TranslatableString libraryError)

Definition at line 137 of file ProjectFileManager.cpp.

138{
139 wxString helpUrl;
140 if ( !libraryError.empty() ) {
141 helpUrl = defaultHelpUrl;
142
143 auto msgid = libraryError.MSGID().GET();
144 auto found = std::find_if( begin(helpURLTable), end(helpURLTable),
145 [&]( const Pair &pair ) {
146 return msgid.Contains( pair.first ); }
147 );
148 if (found != end(helpURLTable)) {
149 auto url = found->second;
150 if (url[0] == '#')
151 helpUrl += url;
152 else
153 helpUrl = url;
154 }
155 }
156
157 return helpUrl;
158}
const wxString & GET() const
Explicit conversion to wxString, meant to be ugly-looking and demanding of a comment why it's correct...
Definition: Identifier.h:66
Identifier MSGID() const
MSGID is the English lookup key in the catalog, not necessarily for user's eyes if locale is some oth...
auto end(const Ptr< Type, BaseDeleter > &p)
Enables range-for.
Definition: PackedArray.h:159
auto begin(const Ptr< Type, BaseDeleter > &p)
Enables range-for.
Definition: PackedArray.h:150
std::pair< const char *, const char * > Pair

References PackedArray::begin(), defaultHelpUrl, TranslatableString::empty(), PackedArray::end(), Identifier::GET(), helpURLTable, and TranslatableString::MSGID().

Referenced by ProjectFileManager::ReadProjectFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ImportProject()

bool anonymous_namespace{ProjectFileManager.cpp}::ImportProject ( AudacityProject dest,
const FilePath fileName 
)

Definition at line 1227 of file ProjectFileManager.cpp.

1228{
1230 auto &project = temp.Project();
1231
1232 auto &projectFileIO = ProjectFileIO::Get(project);
1233 if (!projectFileIO.LoadProject(fileName, false))
1234 return false;
1235 auto &srcTracks = TrackList::Get(project);
1236 auto &destTracks = TrackList::Get(dest);
1237 for (const Track *pTrack : srcTracks)
1238 pTrack->PasteInto(dest, destTracks);
1240
1241 return true;
1242}
const auto project
Makes a temporary project that doesn't display on the screen.
AudacityProject & Project()
static ProjectFileIO & Get(AudacityProject &project)
void Merge(const Tags &other)
Definition: Tags.cpp:246
static Tags & Get(AudacityProject &project)
Definition: Tags.cpp:214
Abstract base class for an object holding data associated with points on a time axis.
Definition: Track.h:122
static TrackList & Get(AudacityProject &project)
Definition: Track.cpp:347

References ProjectFileIO::Get(), Tags::Get(), TrackList::Get(), Tags::Merge(), InvisibleTemporaryProject::Project(), and project.

Referenced by ProjectFileManager::Import().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ RunTempoDetection()

std::vector< std::shared_ptr< MIR::AnalyzedAudioClip > > anonymous_namespace{ProjectFileManager.cpp}::RunTempoDetection ( const std::vector< std::shared_ptr< ClipMirAudioReader > > &  readers,
const MIR::ProjectInterface project,
bool  projectWasEmpty 
)

Definition at line 1317 of file ProjectFileManager.cpp.

1320{
1321 const auto isBeatsAndMeasures = project.ViewIsBeatsAndMeasures();
1322 const auto projectTempo = project.GetTempo();
1323
1324 using namespace BasicUI;
1325 auto progress = MakeProgress(
1326 XO("Music Information Retrieval"), XO("Analyzing imported audio"),
1328 auto count = 0;
1329 const auto reportProgress = [&](double progressFraction) {
1330 const auto result = progress->Poll(
1331 (count + progressFraction) / readers.size() * 1000, 1000);
1332 if (result != ProgressResult::Success)
1333 throw UserException {};
1334 };
1335
1336 std::vector<std::shared_ptr<MIR::AnalyzedAudioClip>> analyzedClips;
1337 analyzedClips.reserve(readers.size());
1338 std::transform(
1339 readers.begin(), readers.end(), std::back_inserter(analyzedClips),
1340 [&](const std::shared_ptr<ClipMirAudioReader>& reader) {
1341 const MIR::ProjectSyncInfoInput input {
1342 *reader, reader->filename, reader->tags, reportProgress,
1343 projectTempo, projectWasEmpty, isBeatsAndMeasures,
1344 };
1345 auto syncInfo = MIR::GetProjectSyncInfo(input);
1346 ++count;
1347 return std::make_shared<AnalyzedWaveClip>(reader, syncInfo);
1348 });
1349 return analyzedClips;
1350}
XO("Cut/Copy/Paste")
Can be thrown when user cancels operations, as with a progress dialog. Delayed handler does nothing.
Definition: UserException.h:17
@ ProgressShowCancel
Definition: BasicUI.h:142
std::unique_ptr< ProgressDialog > MakeProgress(const TranslatableString &title, const TranslatableString &message, unsigned flags=(ProgressShowStop|ProgressShowCancel), const TranslatableString &remainingLabelText={})
Create and display a progress dialog.
Definition: BasicUI.h:292
std::optional< ProjectSyncInfo > GetProjectSyncInfo(const ProjectSyncInfoInput &in)

References MIR::GetProjectSyncInfo(), BasicUI::MakeProgress(), BasicUI::ProgressShowCancel, project, BasicUI::Success, and XO().

Referenced by ProjectFileManager::Import().

Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ defaultHelpUrl

const char* const anonymous_namespace{ProjectFileManager.cpp}::defaultHelpUrl
Initial value:
=
"FAQ:Errors_on_opening_or_recovering_an_Audacity_project"

Definition at line 116 of file ProjectFileManager.cpp.

Referenced by FindHelpUrl().

◆ helpURLTable

const Pair anonymous_namespace{ProjectFileManager.cpp}::helpURLTable[]
Initial value:
= {
{
"not well-formed (invalid token)",
"Error:_not_well-formed_(invalid_token)_at_line_x"
},
{
"reference to invalid character number",
"Error_Opening_Project:_Reference_to_invalid_character_number_at_line_x"
},
{
"mismatched tag",
"#mismatched"
},
}

Definition at line 120 of file ProjectFileManager.cpp.

Referenced by FindHelpUrl().