blob: 8b7c4e4ea0043401988c2fc77980d0be081d8a5d [file] [log] [blame]
Henrique Mendonçaa9e62482013-09-20 16:47:02 +02001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19var thrift = require('thrift');
Henrique Mendonçaa9e62482013-09-20 16:47:02 +020020var HelloSvc = require('./gen-nodejs/HelloSvc.js');
21var TimesTwoSvc = require('./gen-nodejs/TimesTwo.js');
22
23var helloHandler = {
24 hello_func: function(result) {
25 this.call_counter = this.call_counter || 0;
26 console.log("Client call: " + (++this.call_counter));
27 result(null, "Hello Apache Thrift for JavaScript " + this.call_counter);
28 }
29}
30
31var timesTwoHandler = {
32 dbl: function(val, result) {
33 console.log("Client call: " + val);
34 result(null, val * 2);
35 }
36}
37
38var helloService = {
raa2e4e562014-03-29 01:14:48 -070039 transport: thrift.TBufferedTransport,
40 protocol: thrift.TJSONProtocol,
41 processor: HelloSvc,
Henrique Mendonçaa9e62482013-09-20 16:47:02 +020042 handler: helloHandler
43};
44
45var dblService = {
raa2e4e562014-03-29 01:14:48 -070046 transport: thrift.TBufferedTransport,
47 protocol: thrift.TJSONProtocol,
48 processor: TimesTwoSvc,
Henrique Mendonçaa9e62482013-09-20 16:47:02 +020049 handler: timesTwoHandler
50};
51
raa2e4e562014-03-29 01:14:48 -070052var ServerOptions = {
53 files: ".",
Henrique Mendonçaa9e62482013-09-20 16:47:02 +020054 services: {
55 "/hello": helloService,
56 "/dbl": dblService,
57 }
58}
59
raa2e4e562014-03-29 01:14:48 -070060var server = thrift.createWebServer(ServerOptions);
Henrique Mendonçaa9e62482013-09-20 16:47:02 +020061var port = 8585;
62server.listen(port);
63console.log("Http/Thrift Server running on port: " + port);