blob: be6ef6d20e10413e024962b77616361f23857bdc [file] [log] [blame]
Brandon Ballinger181a44d2009-04-16 14:31:48 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.speech;
18
Valentin Kravtsov79896bd2010-01-15 11:56:03 +000019import android.os.Bundle;
Brandon Ballingercdd0ac62009-05-07 14:24:02 -070020import android.content.Intent;
Brandon Ballinger181a44d2009-04-16 14:31:48 -070021import android.speech.IRecognitionListener;
22
Valentin Kravtsov79896bd2010-01-15 11:56:03 +000023/**
24* A Service interface to speech recognition. Call startListening when
25* you want to begin capturing audio; RecognitionService will automatically
26* determine when the user has finished speaking, stream the audio to the
27* recognition servers, and notify you when results are ready. In most of the cases,
Jean-Michel Trivi2a5d9f92010-03-29 18:31:19 -070028* this class should not be used directly, instead use {@link SpeechRecognizer} for
Valentin Kravtsov79896bd2010-01-15 11:56:03 +000029* accessing recognition service.
30* {@hide}
31*/
Valentin Kravtsov3da3cad2010-01-28 14:53:41 +000032oneway interface IRecognitionService {
Valentin Kravtsov79896bd2010-01-15 11:56:03 +000033 /**
34 * Starts listening for speech. Please note that the recognition service supports
35 * one listener only, therefore, if this function is called from two different threads,
36 * only the latest one will get the notifications
37 *
38 * @param recognizerIntent the intent from which the invocation occurred. Additionally,
39 * this intent can contain extra parameters to manipulate the behavior of the recognition
40 * client. For more information see {@link RecognizerIntent}.
Valentin Kravtsov3da3cad2010-01-28 14:53:41 +000041 * @param listener to receive callbacks, note that this must be non-null
Valentin Kravtsov79896bd2010-01-15 11:56:03 +000042 */
43 void startListening(in Intent recognizerIntent, in IRecognitionListener listener);
Brandon Ballinger181a44d2009-04-16 14:31:48 -070044
Valentin Kravtsov79896bd2010-01-15 11:56:03 +000045 /**
46 * Stops listening for speech. Speech captured so far will be recognized as
47 * if the user had stopped speaking at this point. The function has no effect unless it
48 * is called during the speech capturing.
Valentin Kravtsov3da3cad2010-01-28 14:53:41 +000049 *
50 * @param listener to receive callbacks, note that this must be non-null
Valentin Kravtsov79896bd2010-01-15 11:56:03 +000051 */
Valentin Kravtsov3da3cad2010-01-28 14:53:41 +000052 void stopListening(in IRecognitionListener listener);
Valentin Kravtsov79896bd2010-01-15 11:56:03 +000053
54 /**
55 * Cancels the speech recognition.
Valentin Kravtsov3da3cad2010-01-28 14:53:41 +000056 *
57 * @param listener to receive callbacks, note that this must be non-null
Valentin Kravtsov79896bd2010-01-15 11:56:03 +000058 */
Valentin Kravtsov3da3cad2010-01-28 14:53:41 +000059 void cancel(in IRecognitionListener listener);
Brandon Ballinger181a44d2009-04-16 14:31:48 -070060}