-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLogLocation.swift
157 lines (123 loc) · 4.14 KB
/
LogLocation.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
//
// LogLocation.swift
// Swell
//
// Created by Hubert Rabago on 6/26/14.
// Copyright (c) 2014 Minute Apps LLC. All rights reserved.
//
import Foundation
public protocol LogLocation {
//class func getInstance(param: AnyObject? = nil) -> LogLocation
func log(message: @autoclosure() -> String);
func enable();
func disable();
func description() -> String
}
public class ConsoleLocation: LogLocation {
var enabled = true
// Use the static-inside-class-var approach to getting a class var instance
class var instance: ConsoleLocation {
struct Static {
static let internalInstance = ConsoleLocation()
}
return Static.internalInstance
}
public class func getInstance() -> LogLocation {
return instance
}
public func log(message: @autoclosure() -> String) {
if enabled {
println(message())
}
}
public func enable() {
enabled = true
}
public func disable() {
enabled = false
}
public func description() -> String {
return "ConsoleLocation"
}
}
// Use the globally-defined-var approach to getting a class var dictionary
var internalFileLocationDictionary = Dictionary<String, FileLocation>()
public class FileLocation: LogLocation {
var enabled = true
var filename: String
var fileHandle: NSFileHandle?
public class func getInstance(filename: String) -> LogLocation {
var temp = internalFileLocationDictionary[filename]
if let result = temp {
return result
} else {
let result: FileLocation = FileLocation(filename: filename)
internalFileLocationDictionary[filename] = result
return result
}
}
init(filename: String) {
self.filename = filename
self.setDirectory()
fileHandle = nil
openFile()
}
deinit {
closeFile()
}
public func log(message: @autoclosure() -> String) {
//message.writeToFile(filename, atomically: false, encoding: NSUTF8StringEncoding, error: nil);
if (!enabled) {
return
}
let output = message() + "\n"
if let handle = fileHandle {
handle.seekToEndOfFile()
if let data = output.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false) {
handle.writeData(data)
}
}
}
func setDirectory() {
let temp: NSString = self.filename
if temp.rangeOfString("/").location != Foundation.NSNotFound {
// "/" was found in the filename, so we use whatever path is already there
if (self.filename.hasPrefix("~/")) {
self.filename = self.filename.stringByExpandingTildeInPath
}
return
}
//let dirs : [String]? = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .AllDomainsMask, true) as? [String]
let dirs:AnyObject = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0]
if let dir: String = dirs as? String {
//let dir = directories[0]; //documents directory
let path = dir.stringByAppendingPathComponent(self.filename);
self.filename = path;
}
}
func openFile() {
// open our file
//Swell.info("Opening \(self.filename)")
if !NSFileManager.defaultManager().fileExistsAtPath(self.filename) {
NSFileManager.defaultManager().createFileAtPath(self.filename, contents: nil, attributes: nil)
}
fileHandle = NSFileHandle(forWritingAtPath:self.filename);
//Swell.debug("fileHandle is now \(fileHandle)")
}
func closeFile() {
// close the file, if it's open
if let handle = fileHandle {
handle.closeFile()
}
fileHandle = nil
}
public func enable() {
enabled = true
}
public func disable() {
enabled = false
}
public func description() -> String {
return "FileLocation filename=\(filename)"
}
}