You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/apps/voicebox/Voicebox.h

85 lines
2.4 KiB

/*
* Copyright (C) 2007 iptego GmbH
*
* This file is part of SEMS, a free SIP media server.
*
* SEMS is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* For a license to use the sems software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
* info@iptel.org
*
* SEMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _VOICEBOX_H_
#define _VOICEBOX_H_
#include "AmApi.h"
#include "AmSession.h"
#include "AmAudio.h"
#include "AmPlaylist.h"
#include "AmPromptCollection.h"
#include "PromptOptions.h"
#include <map>
#include <string>
#include <list>
using std::map;
using std::string;
using std::list;
class VoiceboxFactory
: public AmSessionFactory
{
map<string, map<string, AmPromptCollection*> > prompts;
map<string, map<string, PromptOptions> > prompt_options;
AmPromptCollection* getPrompts(const string& domain, const string& language,
PromptOptions& po);
/** finds prompts from specific to default prompts */
AmPromptCollection* findPrompts(const string& domain,
const string& language,
PromptOptions& po);
AmPromptCollection* loadPrompts(string prompt_base_path,
string domain, string language,
bool load_digits);
static AmDynInvokeFactory* MessageStorage;
static unsigned int repeat_key;
static unsigned int save_key;
static unsigned int delete_key;
static unsigned int startover_key;
static string default_language;
static bool SimpleMode;
public:
VoiceboxFactory(const string& _app_name);
AmSession* onInvite(const AmSipRequest&, const string& app_name,
const map<string,string>& app_params);
// AmSession* onInvite(const AmSipRequest& req,
// AmArg& session_params);
int onLoad();
friend class VoiceboxDialog;
};
#endif
// Local Variables:
// mode:C++
// End: