mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 10:31:13 +00:00
117 lines
3.1 KiB
C
117 lines
3.1 KiB
C
|
/*
|
||
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application - mod_managed
|
||
|
* Copyright (C) 2008, Michael Giagnocavo <mgg@packetrino.com>
|
||
|
*
|
||
|
* Version: MPL 1.1
|
||
|
*
|
||
|
* The contents of this file are subject to the Mozilla Public License Version
|
||
|
* 1.1 (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.mozilla.org/MPL/
|
||
|
*
|
||
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
||
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||
|
* for the specific language governing rights and limitations under the
|
||
|
* License.
|
||
|
*
|
||
|
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application - mod_managed
|
||
|
*
|
||
|
* The Initial Developer of the Original Code is
|
||
|
* Michael Giagnocavo <mgg@packetrino.com>
|
||
|
* Portions created by the Initial Developer are Copyright (C)
|
||
|
* the Initial Developer. All Rights Reserved.
|
||
|
*
|
||
|
* Contributor(s):
|
||
|
*
|
||
|
* Michael Giagnocavo <mgg@packetrino.com>
|
||
|
* Jeff Lenk <jlenk@frontiernet.net> - Modified class to support Dotnet
|
||
|
*
|
||
|
* freeswitch_mono.h -- Header for MonoSession and globals
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef FREESWITCH_MONO_H
|
||
|
#define FREESWITCH_MONO_H
|
||
|
|
||
|
SWITCH_BEGIN_EXTERN_C
|
||
|
|
||
|
#include <switch.h>
|
||
|
#include <switch_cpp.h>
|
||
|
|
||
|
#ifdef _MANAGED
|
||
|
|
||
|
typedef char* (CALLBACK* inputtype)(void * input, switch_input_type_t type);
|
||
|
typedef void (CALLBACK* hanguptype)();
|
||
|
|
||
|
#else
|
||
|
|
||
|
#include <mono/jit/jit.h>
|
||
|
#include <mono/metadata/assembly.h>
|
||
|
|
||
|
#ifndef SWIG
|
||
|
struct mod_mono_globals {
|
||
|
MonoDomain *domain;
|
||
|
MonoAssembly *mod_mono_asm;
|
||
|
switch_memory_pool_t *pool;
|
||
|
switch_bool_t embedded;
|
||
|
|
||
|
MonoMethod *loadMethod;
|
||
|
MonoMethod *unloadMethod;
|
||
|
MonoMethod *runMethod;
|
||
|
MonoMethod *executeMethod;
|
||
|
MonoMethod *executeBackgroundMethod;
|
||
|
};
|
||
|
|
||
|
typedef struct mod_mono_globals mod_mono_globals;
|
||
|
extern mod_mono_globals globals;
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
SWITCH_END_EXTERN_C
|
||
|
|
||
|
#ifdef _MANAGED
|
||
|
|
||
|
using namespace System;
|
||
|
using namespace System::Reflection;
|
||
|
using namespace System::Runtime::InteropServices;
|
||
|
|
||
|
delegate void HangupMethod();
|
||
|
|
||
|
public ref class FreeSwitchManaged
|
||
|
{
|
||
|
public:
|
||
|
static Assembly^ mod_dotnet_managed;
|
||
|
static MethodInfo^ loadMethod;
|
||
|
static MethodInfo^ unloadMethod;
|
||
|
static MethodInfo^ runMethod;
|
||
|
static MethodInfo^ executeMethod;
|
||
|
static MethodInfo^ executeBackgroundMethod;
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
class ManagedSession : public CoreSession
|
||
|
{
|
||
|
public:
|
||
|
ManagedSession(void);
|
||
|
ManagedSession(char *uuid);
|
||
|
ManagedSession(switch_core_session_t *session);
|
||
|
virtual ~ManagedSession();
|
||
|
|
||
|
virtual bool begin_allow_threads();
|
||
|
virtual bool end_allow_threads();
|
||
|
virtual void check_hangup_hook();
|
||
|
|
||
|
virtual switch_status_t run_dtmf_callback(void *input, switch_input_type_t itype);
|
||
|
|
||
|
#ifdef _MANAGED
|
||
|
inputtype dtmfDelegateHandle; // GCHandle to the input delegate
|
||
|
hanguptype hangupDelegateHandle; // GCHandle to the hangup delegate
|
||
|
#else
|
||
|
guint32 dtmfDelegateHandle; // GCHandle to the input delegate
|
||
|
guint32 hangupDelegateHandle; // GCHandle to the hangup delegate
|
||
|
#endif
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|