mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
74 lines
2.6 KiB
Swift
74 lines
2.6 KiB
Swift
//
|
|
// SQLite.swift
|
|
// https://github.com/stephencelis/SQLite.swift
|
|
// Copyright (c) 2014-2015 Stephen Celis.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
//
|
|
|
|
import Foundation
|
|
import sqlcipher
|
|
|
|
public final class Database {
|
|
internal var handle: OpaquePointer? = nil
|
|
|
|
public init?(_ location: String, readOnly: Bool) {
|
|
if location != ":memory:" {
|
|
let _ = open(location + "-guard", O_WRONLY | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR)
|
|
}
|
|
let flags: Int32
|
|
if readOnly {
|
|
flags = SQLITE_OPEN_READONLY
|
|
} else {
|
|
flags = SQLITE_OPEN_CREATE | SQLITE_OPEN_READWRITE | SQLITE_OPEN_FULLMUTEX
|
|
}
|
|
let res = sqlite3_open_v2(location, &self.handle, flags, nil)
|
|
if res != SQLITE_OK {
|
|
postboxLog("sqlite3_open_v2: \(res)")
|
|
return nil
|
|
}
|
|
}
|
|
|
|
deinit {
|
|
sqlite3_close(self.handle)
|
|
} // sqlite3_close_v2 in Yosemite/iOS 8?
|
|
|
|
public func execute(_ SQL: String) -> Bool {
|
|
let res = sqlite3_exec(self.handle, SQL, nil, nil, nil)
|
|
if res == SQLITE_OK {
|
|
return true
|
|
} else {
|
|
if let error = sqlite3_errmsg(self.handle), let str = NSString(utf8String: error) {
|
|
print("SQL error \(res): \(str) on SQL")
|
|
} else {
|
|
print("SQL error \(res) on SQL")
|
|
}
|
|
return false
|
|
}
|
|
}
|
|
|
|
public func currentError() -> String? {
|
|
if let error = sqlite3_errmsg(self.handle), let str = NSString(utf8String: error) {
|
|
return "SQL error \(str)"
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
}
|