2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2006-10-19 23:52:34 +04:00
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-10-19 23:52:34 +04:00
|
|
|
|
|
|
|
#include "nsSound.h"
|
2014-09-21 20:41:41 +04:00
|
|
|
#include "nsContentUtils.h"
|
2008-02-21 02:47:05 +03:00
|
|
|
#include "nsObjCExceptions.h"
|
2006-10-20 01:05:54 +04:00
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIURL.h"
|
2008-12-05 10:29:17 +03:00
|
|
|
#include "nsString.h"
|
2006-10-20 01:05:54 +04:00
|
|
|
|
2008-02-21 02:47:05 +03:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(nsSound, nsISound, nsIStreamLoaderObserver)
|
2006-10-19 23:52:34 +04:00
|
|
|
|
|
|
|
nsSound::nsSound() {}
|
|
|
|
|
|
|
|
nsSound::~nsSound() {}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSound::Beep() {
|
2021-02-17 01:55:20 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_BLOCK_RETURN;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NSBeep();
|
|
|
|
return NS_OK;
|
|
|
|
|
2021-02-17 01:55:20 +03:00
|
|
|
NS_OBJC_END_TRY_BLOCK_RETURN(NS_ERROR_FAILURE);
|
2006-10-19 23:52:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSound::OnStreamComplete(nsIStreamLoader* aLoader, nsISupports* context, nsresult aStatus,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t dataLen, const uint8_t* data) {
|
2021-02-17 01:55:20 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_BLOCK_RETURN;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NSData* value = [NSData dataWithBytes:data length:dataLen];
|
|
|
|
|
|
|
|
NSSound* sound = [[NSSound alloc] initWithData:value];
|
2006-10-20 01:05:54 +04:00
|
|
|
|
2008-02-21 02:47:05 +03:00
|
|
|
[sound play];
|
2006-10-20 01:05:54 +04:00
|
|
|
|
2008-02-21 02:47:05 +03:00
|
|
|
[sound autorelease];
|
2006-10-20 01:05:54 +04:00
|
|
|
|
2008-02-21 02:47:05 +03:00
|
|
|
return NS_OK;
|
2006-10-20 01:05:54 +04:00
|
|
|
|
2021-02-17 01:55:20 +03:00
|
|
|
NS_OBJC_END_TRY_BLOCK_RETURN(NS_ERROR_FAILURE);
|
2006-10-19 23:52:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSound::Play(nsIURL* aURL) {
|
2018-10-03 22:52:01 +03:00
|
|
|
nsCOMPtr<nsIURI> uri(aURL);
|
2008-02-21 02:47:05 +03:00
|
|
|
nsCOMPtr<nsIStreamLoader> loader;
|
2014-09-21 20:41:41 +04:00
|
|
|
return NS_NewStreamLoader(getter_AddRefs(loader), uri,
|
|
|
|
this, // aObserver
|
|
|
|
nsContentUtils::GetSystemPrincipal(),
|
2020-07-15 14:20:45 +03:00
|
|
|
nsILoadInfo::SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
|
2014-09-21 20:41:41 +04:00
|
|
|
nsIContentPolicy::TYPE_OTHER);
|
2006-10-19 23:52:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSound::Init() { return NS_OK; }
|
|
|
|
|
2009-07-09 05:55:46 +04:00
|
|
|
NS_IMETHODIMP
|
2012-08-22 19:56:38 +04:00
|
|
|
nsSound::PlayEventSound(uint32_t aEventId) {
|
2009-07-09 05:55:46 +04:00
|
|
|
// Mac doesn't have system sound settings for each user actions.
|
|
|
|
return NS_OK;
|
|
|
|
}
|