blob: 0d4208bf9f99971b411d1d68210039080df0b7b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// **********************************************************************
//
// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#define EXPORT_FCNS
#include <Ice/Communicator.h>
#include <Ice/Proxy.h>
#include <Ice/OutputStream.h>
#include "icematlab.h"
#include "Util.h"
#define SELF (*(reinterpret_cast<shared_ptr<Ice::Communicator>*>(self)))
using namespace std;
using namespace IceMatlab;
extern "C"
{
EXPORTED_FUNCTION mxArray*
Ice_Communicator__release(void* self)
{
delete &SELF;
return 0;
}
EXPORTED_FUNCTION mxArray*
Ice_Communicator_stringToProxy(void* self, const char* s, void** proxy)
{
try
{
shared_ptr<Ice::ObjectPrx> p = SELF->stringToProxy(s);
*proxy = new shared_ptr<Ice::ObjectPrx>(p);
}
catch(const std::exception& ex)
{
return convertException(ex);
}
return 0;
}
EXPORTED_FUNCTION mxArray*
Ice_Communicator_getProperties(void* self, void** props)
{
try
{
shared_ptr<Ice::Properties> p = SELF->getProperties();
*props = new shared_ptr<Ice::Properties>(p);
}
catch(const std::exception& ex)
{
return convertException(ex);
}
return 0;
}
EXPORTED_FUNCTION mxArray*
Ice_Communicator_createOutputStream(void* self, mxArray* encoding, void** stream)
{
Ice::EncodingVersion v;
getEncodingVersion(encoding, v);
*stream = new Ice::OutputStream(SELF, v);
return 0;
}
EXPORTED_FUNCTION mxArray*
Ice_Communicator_destroy(void* self)
{
try
{
SELF->destroy();
}
catch(const std::exception& ex)
{
return convertException(ex);
}
return 0;
}
}
|