THRIFT-5621: Add Swift tutorial

Client: swift
This commit is contained in:
Kino Roy 2022-09-06 17:34:02 -07:00 committed by Jens Geyer
parent 5295195c37
commit 72d5912424
10 changed files with 285 additions and 0 deletions

View File

@ -839,6 +839,7 @@ AC_CONFIG_FILES([
tutorial/py.tornado/Makefile
tutorial/rb/Makefile
tutorial/rs/Makefile
tutorial/swift/Makefile
])
if test "$have_cpp" = "yes" ; then MAYBE_CPP="cpp" ; else MAYBE_CPP="" ; fi

View File

@ -86,6 +86,10 @@ if WITH_PHP
SUBDIRS += php
endif
if WITH_SWIFT
SUBDIRS += swift
endif
#
# generate html for tutorial.thrift
#

View File

@ -0,0 +1,33 @@
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#
# Common thrift code generation rules
#
gen_swift:
$(THRIFT) --gen swift -r -o Sources/Common $(top_srcdir)/tutorial/tutorial.thrift
tutorial: gen_swift
swift run TutorialRunner
tutorialserver: gen_swift
swift run TutorialServer
tutorialclient: gen_swift
swift run TutorialClient

View File

@ -0,0 +1,53 @@
// swift-tools-version:5.1
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import PackageDescription
let thriftDependency: Target.Dependency = .product(name: "Thrift", package: "swift-dep")
let package = Package(
name: "swift-tutorial",
platforms: [
.macOS(.v10_13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.executable(name: "TutorialServer", targets: ["TutorialServer"]),
.executable(name: "TutorialClient", targets: ["TutorialClient"]),
.executable(name: "TutorialRunner", targets: ["TutorialRunner"])
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(path: "./swift-dep"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "Common",
dependencies: [thriftDependency]),
.target(
name: "TutorialServer",
dependencies: [thriftDependency, "Common"]),
.target(
name: "TutorialClient",
dependencies: [thriftDependency, "Common"]),
.target(name: "TutorialRunner")
]
)

11
tutorial/swift/README.md Normal file
View File

@ -0,0 +1,11 @@
# Thrift Swift Tutorial
==================================================
## Run the tutorial code (client + server):
`make tutorial`
## Run the server only
`make tutorialserver`
## Run the client only
`make tutorialclient`

View File

@ -0,0 +1,45 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import Foundation
import Thrift
import Common
let transport = try TSocketTransport(hostname: "localhost", port: 9090)
let inOutProto = TBinaryProtocol(on: transport)
let client = CalculatorClient(inoutProtocol: inOutProto)
try client.ping()
print("1+1= \(try client.add(num1: 1, num2: 1))")
let work = Work(num1: 1, num2: 0, op: .divide)
do {
_ = try client.calculate(logid: 1, w: work)
assertionFailure("Hm... shouldn't be able to divide by zero")
} catch let error as InvalidOperation {
print("Invalid operation: \(error.why)")
}
work.op = .subtract
work.num1 = 15
work.num2 = 10
print("15-10= \(try client.calculate(logid: 1, w: work))")
print("Done!")

View File

@ -0,0 +1,36 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import Foundation
let swiftUrl = URL(fileURLWithPath: "/usr/bin/swift")
let server = Process()
server.executableURL = swiftUrl
server.arguments = ["run", "TutorialServer"]
try server.run()
Thread.sleep(forTimeInterval: 2)
let client = Process()
client.executableURL = swiftUrl
client.arguments = ["run", "TutorialClient"]
try client.run()
client.waitUntilExit()
server.terminate()

View File

@ -0,0 +1,73 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import Foundation
import Common
struct CalculatorError: Error {
}
class CalculatorService: Calculator {
var resultMap = [Int32:SharedStruct]()
func ping() throws {
print("ping()")
}
func add(num1: Int32, num2: Int32) throws -> Int32 {
print("add(\(num1), \(num2))")
return num1 + num2
}
func calculate(logid: Int32, w: Work) throws -> Int32 {
print("calculate(\(logid), \(w))")
let result: Int32 = try {
switch w.op {
case .add:
return w.num1 + w.num2
case .subtract:
return w.num1 - w.num2
case .multiply:
return w.num1 * w.num2
case .divide:
guard w.num2 != 0 else {
throw InvalidOperation(whatOp: w.op.rawValue, why: "Cannot divide by 0")
}
return w.num1 / w.num2
}
}()
let resultEntry = SharedStruct(key: logid, value: "\(result)")
resultMap[logid] = resultEntry
return result
}
func zip() throws {
print("zip()")
}
func getStruct(key: Int32) throws -> SharedStruct {
print("getStruct(\(key))")
guard let entry = resultMap[key] else {
throw CalculatorError()
}
return entry
}
}

View File

@ -0,0 +1,28 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import Foundation
import Common
import Thrift
let service = CalculatorService()
let processor = CalculatorProcessor(service: service)
let server = try TSocketServer(port: 9090, inProtocol: TBinaryProtocol.self, outProtocol: TBinaryProtocol.self, processor: processor)
RunLoop.main.run()

1
tutorial/swift/swift-dep Symbolic link
View File

@ -0,0 +1 @@
../../lib/swift