-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileIO.swift
115 lines (95 loc) · 2.45 KB
/
FileIO.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
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
//
// FileIO.swift
// hasm
//
// Created by Tiago Lopes on 09/11/24.
//
import Foundation
import RegexBuilder
struct InputFile {
private let contents: Data
init(path: String) throws {
let contents = FileManager.default.contents(atPath: path)
guard let contents else {
throw Error.notFound
}
self.contents = contents
}
func lines() throws -> [String] {
let sourceCode = String(
data: contents,
encoding: .ascii
)
guard let sourceCode else {
throw Error.notAscii
}
return sourceCode
.split(separator: .newlineSequence)
.map(String.init)
.map(removingComments)
.map(removingWhitespaces)
.filter { !$0.isEmpty }
}
private func removingWhitespaces(from line: String) -> String {
let cleanLine = line.filter {
$0.isNumber ||
$0.isLetter ||
$0.isPunctuation ||
$0.isMathSymbol ||
$0.isCurrencySymbol
}
return cleanLine
}
private func removingComments(from line: String) -> String {
var line = line
let commentPattern = Regex {
Capture {
OneOrMore {
"//"
}
ZeroOrMore(.anyNonNewline)
}
}
if let match = line.firstMatch(of: commentPattern) {
line.removeSubrange(match.range)
}
return line
}
}
extension InputFile {
enum Error: Swift.Error {
case notFound
case notAscii
}
}
struct OutputFile {
let url: URL
init(path: String) throws {
let fileManager = FileManager.default
guard let pathURL = URL(
string: "file://\(fileManager.currentDirectoryPath)/\(path)"
) else {
throw Error.invalidPath
}
self.url = pathURL
guard fileManager.createFile(
atPath: path,
contents: nil
) else {
throw Error.creationFailed
}
}
func write(text: String) throws {
try text.write(
to: url,
atomically: false,
encoding: .ascii
)
}
}
extension OutputFile {
enum Error: Swift.Error {
case invalidPath
case creationFailed
}
}