Chris Rienzo 8330336e9a FS-6450 [unimrcp] Update library
[apr] Backport APR_RING_FOREACH and APR_RING_FOREACH_SAFE macros to APR for unimrcp compatibility.

 [unimrcp] configure.gnu - need full path, not relative path for library paths

 [unimrcp] added uni_revision.h - couldn't get it to autogenerate from build

 [mod_unimrcp] add better logging and error checking on module load.  Currently dumps core on MRCPv1 TTS attempt

 [mod_unimrcp] don't configure MRCPv1 session with a connection agent- causes crash
2014-11-18 14:23:54 -05:00

79 lines
2.6 KiB
C++

/*
* Copyright 2008-2014 Arsen Chaloyan
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* $Id: setparamsession.h 2136 2014-07-04 06:33:36Z achaloyan@gmail.com $
*/
#ifndef SETPARAM_SESSION_H
#define SETPARAM_SESSION_H
/**
* @file setparamsession.h
* @brief Set Recognizer Params
*/
#include <apr_tables.h>
#include "umcsession.h"
class SetParamScenario;
struct RecogChannel;
class SetParamSession : public UmcSession
{
public:
/* ============================ CREATORS =================================== */
SetParamSession(const SetParamScenario* pScenario);
virtual ~SetParamSession();
protected:
/* ============================ MANIPULATORS =============================== */
virtual bool Start();
RecogChannel* CreateRecogChannel();
bool CreateRequestQueue(mrcp_channel_t* pMrcpChannel);
mrcp_message_t* CreateSetParams1(mrcp_channel_t* pMrcpChannel);
mrcp_message_t* CreateGetParams1(mrcp_channel_t* pMrcpChannel);
mrcp_message_t* CreateSetParams2(mrcp_channel_t* pMrcpChannel);
mrcp_message_t* CreateGetParams2(mrcp_channel_t* pMrcpChannel);
mrcp_message_t* CreateSetParams3(mrcp_channel_t* pMrcpChannel);
mrcp_message_t* CreateGetParams3(mrcp_channel_t* pMrcpChannel);
bool ProcessNextRequest(mrcp_channel_t* pMrcpChannel);
/* ============================ HANDLERS =================================== */
virtual bool OnSessionTerminate(mrcp_sig_status_code_e status);
virtual bool OnChannelAdd(mrcp_channel_t* channel, mrcp_sig_status_code_e status);
virtual bool OnMessageReceive(mrcp_channel_t* channel, mrcp_message_t* message);
/* ============================ ACCESSORS ================================== */
const SetParamScenario* GetScenario() const;
private:
/* ============================ DATA ======================================= */
RecogChannel* m_pRecogChannel;
apr_array_header_t* m_RequestQueue;
int m_CurrentRequest;
};
/* ============================ INLINE METHODS ============================= */
inline const SetParamScenario* SetParamSession::GetScenario() const
{
return (SetParamScenario*)m_pScenario;
}
#endif /* SETPARAM_SESSION_H */