-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path01-Builder.swift
62 lines (49 loc) · 1.37 KB
/
01-Builder.swift
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
// You are asked to implement the Builder design pattern for rendering simple chunks of code.
// A sample use of the builder you are asked to create is:
// var cb = CodeBuilder("Person").AddField("name", "String").addField("age", "Int")
// print(cb.description)
//
// The expected output is:
//
// class Person
// {
// var name: String
// var age: Int
// }
//
// Please observe the same placement of curly braces and use two-space indentation.
import Foundation
class FieldElement {
var name: String = ""
var type: String = ""
init() {}
init(name: String, type: String) {
self.name = name
self.type = type
}
func description(_ indent: Int) -> String {
var result = ""
let i = String(repeating:" ", count: indent)
result += i + "var " + self.name + ": " + self.type + "\n"
return result
}
}
class CodeBuilder : CustomStringConvertible {
private let rootName: String
private var fields: [FieldElement] = []
init(_ rootName: String) {
self.rootName = rootName
}
func addField(called name: String, ofType type: String) -> CodeBuilder {
let field = FieldElement(name: name, type: type)
fields.append(field)
return self
}
public var description: String {
var result = "class " + rootName + "\n{\n"
for f in fields {
result += f.description(2)
}
return result + "}\n"
}
}