summaryrefslogtreecommitdiff
path: root/js/demo/Ice/bidir/browser/Client.js
blob: dd0b340d8d004759d4c89f2029dde9fd2f424f53 (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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
// **********************************************************************
//
// Copyright (c) 2003-2014 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.
//
// **********************************************************************

(function(){

var Promise = Ice.Promise;
var CallbackSenderPrx = Demo.CallbackSenderPrx;

//
// Define a servant class that implements the Demo.CallbackReceiver
// interface.
//
var CallbackReceiverI = Ice.Class(Demo.CallbackReceiver, {
    callback: function(num, current)
    {
        writeLine("received callback #" + num);
    }
});

var id = new Ice.InitializationData();
id.properties = Ice.createProperties();
//
// Client-side ACM must be disabled for bidirectional connections.
//
id.properties.setProperty("Ice.ACM.Client", "0");

//
// Initialize the communicator
//
var communicator = Ice.initialize(id);

var connection;

var start = function()
{
    //
    // Create a proxy to the sender object.
    //
    var hostname = document.location.hostname || "127.0.0.1";
    var proxy = communicator.stringToProxy("sender:ws -p 10002 -h " + hostname);
    
    //
    // Down-cast the proxy to the Demo.CallbackSender interface.
    //
    return CallbackSenderPrx.checkedCast(proxy).then(
        function(server)
        {
            //
            // Create the client object adapter.
            //
            return communicator.createObjectAdapter("").then(
                function(adapter)
                {
                    //
                    // Create a callback receiver servant and add it to
                    // the object adapter.
                    //
                    var r = adapter.addWithUUID(new CallbackReceiverI());
                    
                    //
                    // Set the connection adapter and remember the connection.
                    //
                    connection = proxy.ice_getCachedConnection();
                    connection.setAdapter(adapter);
                    
                    //
                    // Register the client with the bidir server.
                    //
                    return server.addClient(r.ice_getIdentity());
                });
        });
};

var stop = function()
{
    //
    // Close the connection, the server will unregister the client
    // when it tries to invoke on the bi-dir proxy.
    // 
    return connection.close(false);
}

//
// Setup button click handlers
//
$("#start").click(
    function()
    {
        if(isDisconnected())
        {
            setState(State.Connecting);
            Promise.try(
                function()
                {
                    return start().then(function()
                                        {
                                            setState(State.Connected);
                                        });
                }
            ).exception(
                function(ex)
                {
                    $("#output").val(ex.toString());
                    setState(State.Disconnected);
                }
            );
        }
        return false;
    });

$("#stop").click(
    function()
    {
        if(isConnected())
        {
            setState(State.Disconnecting);
            Promise.try(
                function()
                {
                    return stop();
                }
            ).exception(
                function(ex)
                {
                    $("#output").val(ex.toString());
                }
            ).finally(
                function()
                {
                    setState(State.Disconnected);
                }
            );
        }
        return false;
    });

//
// Handle client state
//
var State = {
    Disconnected: 0,
    Connecting: 1,
    Connected: 2,
    Disconnecting: 3
};

var isConnected = function()
{
    return state == State.Connected;
};

var isDisconnected = function()
{
    return state == State.Disconnected;
};

var writeLine = function(msg)
{
    $("#output").val($("#output").val() + msg + "\n");
    $("#output").scrollTop($("#output").get(0).scrollHeight);
}

var state;

var setState = function(s)
{
    if(state == s)
    {
        return;
    }
    state = s;
    switch(s)
    {
        case State.Disconnected:
        {
            $("#start").removeClass("disabled");

            $("#progress").hide();
            $("body").removeClass("waiting");
            break;
        }
        case State.Connecting:
        {
            $("#output").val("");
            $("#start").addClass("disabled");

            $("#progress .message").text("Connecting...");
            $("#progress").show();
            $("body").addClass("waiting");
            break;
        }
        case State.Connected:
        {
            $("#stop").removeClass("disabled");

            $("#progress").hide();
            $("body").removeClass("waiting");
            break;
        }
        case State.Disconnecting:
        {
            $("#stop").addClass("disabled");

            $("#progress .message").text("Disconnecting...");
            $("#progress").show();
            $("body").addClass("waiting");
            break;
        }
        default:
        {
            break;
        }
    }
};

setState(State.Disconnected);

}());