1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
|
/**********************************************************************
Audacity: A Digital Audio Editor
AudacityApp.cpp
Dominic Mazzoni
**********************************************************************/
#include <wx/wxprec.h>
#ifndef WX_PRECOMP
#include <wx/defs.h>
#include <wx/app.h>
#include <wx/window.h>
#endif
#include <wx/fs_zip.h>
#include <wx/image.h>
#ifdef __WXGTK__
#include <unistd.h>
#endif
#ifdef __WXMAC__
#include <AEDataModel.h>
#include <AppleEvents.h>
#endif
#ifdef __WXMSW__
#endif
#include "AudacityApp.h"
#include "AButton.h"
#include "ASlider.h"
#include "APalette.h"
#include "AudioIO.h"
#include "FreqWindow.h"
#include "Help.h"
#include "Prefs.h"
#include "Project.h"
#include "WaveTrack.h"
#include "effects/Amplify.h"
#include "effects/BassBoost.h"
#include "effects/Echo.h"
#include "effects/Fade.h"
#include "effects/Filter.h"
#include "effects/Invert.h"
#include "effects/NoiseRemoval.h"
#include "effects/Phaser.h"
#include "effects/Reverse.h"
#include "effects/Wahwah.h"
#ifdef __WXMAC__
#include "effects/LoadVSTMac.h"
#endif
#ifdef __WXMSW__
#include "effects/LoadVSTWin.h"
#endif
#ifdef __WXGTK__
void wxOnAssert(const char *fileName, int lineNumber, const char *msg)
{
if (msg)
printf("ASSERTION FAILED: %s\n%s: %d\n", msg, fileName, lineNumber);
else
printf("ASSERTION FAILED!\n%s: %d\n", fileName, lineNumber);
// Force core dump
// int *i = 0;
// if (*i)
// exit(1);
// exit(0);
}
#endif
wxFrame *gParentFrame = NULL;
wxWindow *gParentWindow = NULL;
void QuitAudacity()
{
if (gAPaletteFrame)
gAPaletteFrame->Destroy();
if (gFreqWindow)
gFreqWindow->Destroy();
if (gParentFrame)
gParentFrame->Destroy();
gAPaletteFrame = NULL;
gFreqWindow = NULL;
gParentFrame = NULL;
QuitHelp();
FinishPreferences();
int len = gAudacityProjects.Count();
for (int i = 0; i < len; i++)
gAudacityProjects[i]->Destroy();
}
IMPLEMENT_APP(AudacityApp)
#ifdef __WXMAC__
pascal OSErr AEQuit(const AppleEvent * theAppleEvent, AppleEvent * theReply,
long Refcon)
{
QuitAudacity();
return noErr;
}
/* prototype of MoreFiles fn, included in wxMac already */
pascal OSErr FSpGetFullPath(const FSSpec * spec,
short *fullPathLength, Handle * fullPath);
pascal OSErr AEOpenFiles(const AppleEvent * theAppleEvent, AppleEvent * theReply,
long Refcon)
{
AEDescList docList;
AEKeyword keywd;
DescType returnedType;
Size actualSize;
long itemsInList;
FSSpec theSpec;
CInfoPBRec pb;
Handle nameh;
short namelen;
OSErr err;
short i;
err =
AEGetParamDesc(theAppleEvent, keyDirectObject, typeAEList,
&docList);
if (err != noErr)
return err;
err = AECountItems(&docList, &itemsInList);
if (err != noErr)
return err;
for (i = 1; i <= itemsInList; i++) {
AEGetNthPtr(&docList, i, typeFSS, &keywd, &returnedType,
(Ptr) & theSpec, sizeof(theSpec), &actualSize);
if (noErr == FSpGetFullPath(&theSpec, &namelen, &nameh)) {
HLock(nameh);
char *str = new char[namelen + 1];
memcpy(str, (char *) *nameh, namelen);
str[namelen] = 0;
HUnlock(nameh);
DisposeHandle(nameh);
AudacityProject *project = GetActiveProject();
if (project == NULL || !project->GetTracks()->IsEmpty()) {
project = CreateNewAudacityProject(gParentWindow);
}
project->OpenFile(str);
delete[]str;
}
}
return noErr;
}
#endif
// The `main program' equivalent, creating the windows and returning the
// main frame
bool AudacityApp::OnInit()
{
#if 0
mChecker = new wxSingleInstanceChecker(GetAppName());
if ( mChecker->IsAnotherRunning() )
{
wxMessageBox("Audacity is already running...");
return FALSE;
}
#endif
#ifdef __WXMSW__
// This is our own replacement for wxSingleInstanceChecker for Windows.
mSingleInstanceMutex = (void *)::CreateMutex(NULL, FALSE, "AudacitySingleInstanceMutex");
bool alreadyRunning = (GetLastError() == ERROR_ALREADY_EXISTS);
if (alreadyRunning) {
wxString prompt =
"The system has detected that another copy of Audacity may be running.\n"
"Running two copies of Audacity simultaneously may lead to data loss or\n"
"cause your system to crash.\n\n"
"Are you sure you want to launch Audacity now?";
int action = wxMessageBox(prompt,
"Audacity is already running",
wxYES_NO | wxICON_EXCLAMATION,
NULL);
if (action == wxNO) {
CloseHandle((HANDLE)mSingleInstanceMutex);
return false;
}
}
#endif
::wxInitAllImageHandlers();
wxFileSystem::AddHandler(new wxZipFSHandler);
InitPreferences();
InitAudioIO();
Effect::RegisterEffect(new EffectAmplify());
Effect::RegisterEffect(new EffectBassBoost());
Effect::RegisterEffect(new EffectEcho());
Effect::RegisterEffect(new EffectFadeIn());
Effect::RegisterEffect(new EffectFadeOut());
Effect::RegisterEffect(new EffectFilter());
Effect::RegisterEffect(new EffectInvert());
Effect::RegisterEffect(new EffectNoiseRemoval());
Effect::RegisterEffect(new EffectPhaser());
Effect::RegisterEffect(new EffectReverse());
Effect::RegisterEffect(new EffectWahwah());
#if defined(__WXMAC__)
LoadVSTPlugins();
#endif
#if defined(__WXMSW__)
LoadVSTPlugins(wxPathOnly(argv[0]));
#endif
#ifdef __WXMAC__
AEInstallEventHandler(kCoreEventClass,
kAEOpenDocuments,
NewAEEventHandlerUPP(AEOpenFiles), 0, 0);
AEInstallEventHandler(kCoreEventClass,
kAEQuitApplication,
NewAEEventHandlerUPP(AEQuit), 0, 0);
#endif
SetExitOnFrameDelete(true);
/*
#ifdef __WXMSW__
wxMDIParentFrame *parentFrame;
parentFrame = new wxMDIParentFrame(NULL, 0, "Audacity",
wxDefaultPosition,
wxDefaultSize,
wxDEFAULT_FRAME_STYLE | wxMAXIMIZE,
"Audacity");
parentFrame->Show(true);
gParentFrame = parentFrame;
gParentWindow = parentFrame->GetClientWindow();
#endif
*/
InitAPaletteFrame(gParentWindow);
InitFreqWindow(gParentWindow);
AudacityProject *project = CreateNewAudacityProject(gParentWindow);
SetTopWindow(project);
// Parse command-line arguments
if (argc > 1) {
for (int option = 1; option < argc; option++) {
if (!argv[option])
continue;
bool handled = false;
if (!wxString("-help").CmpNoCase(argv[option])) {
printf("Command-line options supported:\n");
printf(" -help (this message)\n");
printf(" -test (run self diagnostics)\n");
printf
(" -blocksize ### (set max disk block size in bytes)\n");
printf("\n");
printf("In addition, specify the name of an audio file or "
"Audacity project\n");
printf("to open it.\n");
printf("\n");
exit(0);
}
if (option < argc - 1 &&
argv[option + 1] &&
!wxString("-blocksize").CmpNoCase(argv[option])) {
long theBlockSize;
if (wxString(argv[option + 1]).ToLong(&theBlockSize)) {
if (theBlockSize >= 256 && theBlockSize < 100000000) {
fprintf(stderr, "Using block size of %d\n",
theBlockSize);
WaveTrack::SetMaxDiskBlockSize(theBlockSize);
}
}
option++;
handled = true;
}
if (!handled && !wxString("-test").CmpNoCase(argv[option])) {
RunTest();
exit(0);
}
if (argv[option][0] == '-' && !handled) {
printf("Unknown command line option: %s\n", argv[option]);
exit(0);
}
if (!handled)
project->OpenFile(argv[option]);
} // for option...
} // if (argc>1)
return TRUE;
}
int AudacityApp::OnExit() {
#if 0
delete mChecker;
#endif
#ifdef __WXMSW__
if (mSingleInstanceMutex)
CloseHandle((HANDLE)mSingleInstanceMutex);
mSingleInstanceMutex = NULL;
#endif
return 0;
}
void AudacityApp::RunTest()
{
#ifdef __WXGTK__
DirManager *d = new DirManager();
WaveTrack *t = new WaveTrack(d);
VTrack *tmp = NULL;
t->rate = 1.0;
srand(234657);
int len = 1024;
int scale = 19500 + (rand() % 1000);
int trials = 100;
printf("scale: %d\n", scale);
int ideal = t->GetIdealBlockSize();
sampleType *small = new sampleType[len];
sampleType *small2 = new sampleType[len];
sampleType *block = new sampleType[scale];
printf("Preparing...\n");
int i, j, b, v;
int m = 0;
for (i = 0; i < len; i++) {
v = sampleType(rand());
small[i] = v;
for (b = 0; b < scale; b++)
block[b] = v;
t->Append(block, scale);
}
if (t->numSamples != len * scale) {
printf("Expected len %d, track len %d.\n", len * scale,
t->numSamples);
exit(0);
}
//t->Debug();
int bad;
printf("Running test...\n");
int z;
wxStartTimer();
for (z = 0; z < trials; z++) {
int x0 = rand() % len;
int xlen = 1 + (rand() % (len - x0 - 1));
printf("Cut: %d - %d \n", x0 * scale, (x0 + xlen) * scale);
t->Cut(double (x0 * scale), double ((x0 + xlen) * scale), &tmp);
if (!tmp) {
printf("Trial %d\n", z);
printf("Cut (%d, %d) failed.\n", (x0 * scale),
(x0 + xlen) * scale);
printf("Expected len %d, track len %d.\n", len * scale,
t->numSamples);
exit(0);
}
int y0 = rand() % (len - xlen);
printf("Paste: %d\n", y0 * scale);
t->Paste(double (y0 * scale), tmp);
if (t->numSamples != len * scale) {
printf("Trial %d\n", z);
printf("Expected len %d, track len %d.\n", len * scale,
t->numSamples);
exit(0);
}
// Copy
for (i = 0; i < xlen; i++)
small2[i] = small[x0 + i];
// Delete
for (i = 0; i < (len - x0 - xlen); i++)
small[x0 + i] = small[x0 + xlen + i];
// Insert
for (i = 0; i < (len - xlen - y0); i++)
small[len - i - 1] = small[len - i - 1 - xlen];
// Paste
for (i = 0; i < xlen; i++)
small[y0 + i] = small2[i];
delete tmp;
}
long elapsed = wxGetElapsedTime();
t->Debug();
printf("Total time: %ld ms\n", elapsed);
#ifdef __WXGTK__
printf("Checking file pointer leaks:\n");
printf("Track # blocks: %d\n", t->GetBlockArray()->Count());
printf("Disk # blocks: \n");
system("ls .audacity_temp/* | wc --lines");
#endif
printf("Correctness check: (blocks %d bytes %d)\n", len, scale);
bad = 0;
wxStartTimer();
for (i = 0; i < len; i++) {
v = small[i];
t->Get(block, i * scale, scale);
for (b = 0; b < scale; b++)
if (block[b] != v) {
bad++;
if (bad < 10)
printf("Bad: block %d byte %d\n", i, b);
b = scale;
}
}
if (bad == 0)
printf("Passed!\n");
else
printf("Errors in %d/%d blocks\n", bad, len);
elapsed = wxGetElapsedTime();
printf("Time to check all data: %ld ms\n", elapsed);
printf("Second measurement:\n");
wxStartTimer();
for (int j = 0; j < 2; j++) {
for (i = 0; i < len; i++) {
v = small[i];
t->Get(block, i * scale + j, scale - j);
for (b = 0; b < scale; b++)
if (block[b] != v)
bad++;
}
}
elapsed = wxGetElapsedTime();
printf("Done.\n");
printf("Second measurement: %ld ms\n", elapsed / 2);
delete t;
delete[]small;
delete[]small2;
delete[]block;
#endif
}
|