summaryrefslogtreecommitdiff
path: root/matlab/src/IceMatlab/Communicator.cpp
blob: a9a0b02c98fe72307859c4dca3221d038dd9a774 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// **********************************************************************
//
// 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 "ObjectPrx.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_identityToString(void* self, mxArray* id)
{
    try
    {
        Ice::Identity ident;
        getIdentity(id, ident);
        return createResultValue(createStringFromUTF8(SELF->identityToString(ident)));
    }
    catch(const std::exception& ex)
    {
        return createResultException(convertException(ex));
    }
    return 0;
}

EXPORTED_FUNCTION mxArray*
Ice_Communicator_stringToProxy(void* self, const char* s, void** proxy)
{
    try
    {
        shared_ptr<Ice::ObjectPrx> p = SELF->stringToProxy(s);
        if(p)
        {
            *proxy = new shared_ptr<Ice::ObjectPrx>(p);
        }
        else
        {
            *proxy = 0;
        }
    }
    catch(const std::exception& ex)
    {
        return convertException(ex);
    }
    return 0;
}

EXPORTED_FUNCTION mxArray*
Ice_Communicator_propertyToProxy(void* self, const char* prop, void** proxy)
{
    try
    {
        shared_ptr<Ice::ObjectPrx> p = SELF->propertyToProxy(prop);
        if(p)
        {
            *proxy = new shared_ptr<Ice::ObjectPrx>(p);
        }
        else
        {
            *proxy = 0;
        }
    }
    catch(const std::exception& ex)
    {
        return convertException(ex);
    }
    return 0;
}

EXPORTED_FUNCTION mxArray*
Ice_Communicator_proxyToProperty(void* self, void* proxy, const char* prop)
{
    assert(proxy);
    try
    {
        shared_ptr<Ice::ObjectPrx> p = getProxy(proxy);
        Ice::PropertyDict d = SELF->proxyToProperty(p, prop);
        return createResultValue(createStringMap(d));
    }
    catch(const std::exception& ex)
    {
        return createResultException(convertException(ex));
    }
    return 0;
}

EXPORTED_FUNCTION mxArray*
Ice_Communicator_proxyToString(void* self, void* proxy)
{
    assert(proxy);
    try
    {
        shared_ptr<Ice::ObjectPrx> p = getProxy(proxy);
        return createResultValue(createStringFromUTF8(SELF->proxyToString(p)));
    }
    catch(const std::exception& ex)
    {
        return createResultException(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;
}

}