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)
 

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 110 of file ProjectFileManager.cpp.

Function Documentation

◆ FindHelpUrl()

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

Definition at line 128 of file ProjectFileManager.cpp.

129{
130 wxString helpUrl;
131 if ( !libraryError.empty() ) {
132 helpUrl = defaultHelpUrl;
133
134 auto msgid = libraryError.MSGID().GET();
135 auto found = std::find_if( begin(helpURLTable), end(helpURLTable),
136 [&]( const Pair &pair ) {
137 return msgid.Contains( pair.first ); }
138 );
139 if (found != end(helpURLTable)) {
140 auto url = found->second;
141 if (url[0] == '#')
142 helpUrl += url;
143 else
144 helpUrl = url;
145 }
146 }
147
148 return helpUrl;
149}
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 1214 of file ProjectFileManager.cpp.

1215{
1217 auto &project = temp.Project();
1218
1219 auto &projectFileIO = ProjectFileIO::Get(project);
1220 if (!projectFileIO.LoadProject(fileName, false))
1221 return false;
1222 auto &srcTracks = TrackList::Get(project);
1223 auto &destTracks = TrackList::Get(dest);
1224 for (const Track *pTrack : srcTracks)
1225 pTrack->PasteInto(dest, destTracks);
1227
1228 return true;
1229}
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:

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 107 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 111 of file ProjectFileManager.cpp.

Referenced by FindHelpUrl().