Home | History | Annotate | Download | only in speech
      1 /*
      2  * Copyright (C) 2012 Google Inc. All rights reserved.
      3  *
      4  * Redistribution and use in source and binary forms, with or without
      5  * modification, are permitted provided that the following conditions
      6  * are met:
      7  *  * Redistributions of source code must retain the above copyright
      8  *    notice, this list of conditions and the following disclaimer.
      9  *  * Redistributions in binary form must reproduce the above copyright
     10  *    notice, this list of conditions and the following disclaimer in the
     11  *    documentation and/or other materials provided with the distribution.
     12  *
     13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
     14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
     17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
     20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
     21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     24  */
     25 
     26 #include "config.h"
     27 
     28 #include "modules/speech/SpeechRecognitionError.h"
     29 
     30 namespace WebCore {
     31 
     32 static String ErrorCodeToString(SpeechRecognitionError::ErrorCode code)
     33 {
     34     switch (code) {
     35     case SpeechRecognitionError::ErrorCodeOther:
     36         return "other";
     37     case SpeechRecognitionError::ErrorCodeNoSpeech:
     38         return "no-speech";
     39     case SpeechRecognitionError::ErrorCodeAborted:
     40         return "aborted";
     41     case SpeechRecognitionError::ErrorCodeAudioCapture:
     42         return "audio-capture";
     43     case SpeechRecognitionError::ErrorCodeNetwork:
     44         return "network";
     45     case SpeechRecognitionError::ErrorCodeNotAllowed:
     46         return "not-allowed";
     47     case SpeechRecognitionError::ErrorCodeServiceNotAllowed:
     48         return "service-not-allowed";
     49     case SpeechRecognitionError::ErrorCodeBadGrammar:
     50         return "bad-grammar";
     51     case SpeechRecognitionError::ErrorCodeLanguageNotSupported:
     52         return "language-not-supported";
     53     }
     54 
     55     ASSERT_NOT_REACHED();
     56     return String();
     57 }
     58 
     59 PassRefPtrWillBeRawPtr<SpeechRecognitionError> SpeechRecognitionError::create(ErrorCode code, const String& message)
     60 {
     61     return adoptRefWillBeNoop(new SpeechRecognitionError(ErrorCodeToString(code), message));
     62 }
     63 
     64 PassRefPtrWillBeRawPtr<SpeechRecognitionError> SpeechRecognitionError::create()
     65 {
     66     return adoptRefWillBeNoop(new SpeechRecognitionError(emptyString(), emptyString()));
     67 }
     68 
     69 PassRefPtrWillBeRawPtr<SpeechRecognitionError> SpeechRecognitionError::create(const AtomicString& eventName, const SpeechRecognitionErrorInit& initializer)
     70 {
     71     return adoptRefWillBeNoop(new SpeechRecognitionError(eventName, initializer));
     72 }
     73 
     74 SpeechRecognitionError::SpeechRecognitionError(const String& error, const String& message)
     75     : Event(EventTypeNames::error, /*canBubble=*/false, /*cancelable=*/false)
     76     , m_error(error)
     77     , m_message(message)
     78 {
     79     ScriptWrappable::init(this);
     80 }
     81 
     82 SpeechRecognitionError::SpeechRecognitionError(const AtomicString& eventName, const SpeechRecognitionErrorInit& initializer)
     83     : Event(eventName, initializer)
     84     , m_error(initializer.error)
     85     , m_message(initializer.message)
     86 {
     87     ScriptWrappable::init(this);
     88 }
     89 
     90 const AtomicString& SpeechRecognitionError::interfaceName() const
     91 {
     92     return EventNames::SpeechRecognitionError;
     93 }
     94 
     95 SpeechRecognitionErrorInit::SpeechRecognitionErrorInit()
     96 {
     97 }
     98 
     99 } // namespace WebCore
    100