Jens Geyer | 0e87c46 | 2013-06-18 22:25:07 +0200 | [diff] [blame] | 1 | package main |
| 2 | |
| 3 | /* |
| 4 | * Licensed to the Apache Software Foundation (ASF) under one |
| 5 | * or more contributor license agreements. See the NOTICE file |
| 6 | * distributed with this work for additional information |
| 7 | * regarding copyright ownership. The ASF licenses this file |
| 8 | * to you under the Apache License, Version 2.0 (the |
| 9 | * "License"); you may not use this file except in compliance |
| 10 | * with the License. You may obtain a copy of the License at |
| 11 | * |
| 12 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | * |
| 14 | * Unless required by applicable law or agreed to in writing, |
| 15 | * software distributed under the License is distributed on an |
| 16 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 17 | * KIND, either express or implied. See the License for the |
| 18 | * specific language governing permissions and limitations |
| 19 | * under the License. |
| 20 | */ |
| 21 | |
| 22 | import ( |
Jens Geyer | 38b1a04 | 2014-02-04 23:56:39 +0100 | [diff] [blame] | 23 | "crypto/tls" |
Jens Geyer | 0e87c46 | 2013-06-18 22:25:07 +0200 | [diff] [blame] | 24 | "fmt" |
Yuxuan 'fishy' Wang | b71f11e | 2021-03-22 15:01:00 -0700 | [diff] [blame] | 25 | |
D. Can Celasun | 9ee2951 | 2018-10-17 08:44:48 +0200 | [diff] [blame] | 26 | "github.com/apache/thrift/lib/go/thrift" |
Yuxuan 'fishy' Wang | b71f11e | 2021-03-22 15:01:00 -0700 | [diff] [blame] | 27 | "github.com/apache/thrift/tutorial/go/gen-go/tutorial" |
Jens Geyer | 0e87c46 | 2013-06-18 22:25:07 +0200 | [diff] [blame] | 28 | ) |
| 29 | |
Jens Geyer | 4c83595 | 2013-08-13 21:34:17 +0200 | [diff] [blame] | 30 | func runServer(transportFactory thrift.TTransportFactory, protocolFactory thrift.TProtocolFactory, addr string, secure bool) error { |
| 31 | var transport thrift.TServerTransport |
| 32 | var err error |
| 33 | if secure { |
| 34 | cfg := new(tls.Config) |
| 35 | if cert, err := tls.LoadX509KeyPair("server.crt", "server.key"); err == nil { |
| 36 | cfg.Certificates = append(cfg.Certificates, cert) |
Jens Geyer | 1bb0ed8 | 2013-08-13 22:31:53 +0200 | [diff] [blame] | 37 | } else { |
Jens Geyer | 4c83595 | 2013-08-13 21:34:17 +0200 | [diff] [blame] | 38 | return err |
| 39 | } |
| 40 | transport, err = thrift.NewTSSLServerSocket(addr, cfg) |
| 41 | } else { |
| 42 | transport, err = thrift.NewTServerSocket(addr) |
| 43 | } |
Yuxuan 'fishy' Wang | b71f11e | 2021-03-22 15:01:00 -0700 | [diff] [blame] | 44 | |
Jens Geyer | 0e87c46 | 2013-06-18 22:25:07 +0200 | [diff] [blame] | 45 | if err != nil { |
| 46 | return err |
| 47 | } |
Jens Geyer | 4c83595 | 2013-08-13 21:34:17 +0200 | [diff] [blame] | 48 | fmt.Printf("%T\n", transport) |
Jens Geyer | 0e87c46 | 2013-06-18 22:25:07 +0200 | [diff] [blame] | 49 | handler := NewCalculatorHandler() |
| 50 | processor := tutorial.NewCalculatorProcessor(handler) |
| 51 | server := thrift.NewTSimpleServer4(processor, transport, transportFactory, protocolFactory) |
| 52 | |
Jens Geyer | 4c83595 | 2013-08-13 21:34:17 +0200 | [diff] [blame] | 53 | fmt.Println("Starting the simple server... on ", addr) |
Jens Geyer | 0e87c46 | 2013-06-18 22:25:07 +0200 | [diff] [blame] | 54 | return server.Serve() |
| 55 | } |