-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #142
- Loading branch information
Showing
7 changed files
with
249 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
// | ||
// SQLite.swift | ||
// https://github.com/stephencelis/SQLite.swift | ||
// Copyright © 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 | ||
|
||
/// All five date and time functions take a time string as an argument. | ||
/// The time string is followed by zero or more modifiers. | ||
/// The strftime() function also takes a format string as its first argument. | ||
/// | ||
/// https://www.sqlite.org/lang_datefunc.html | ||
public class DateFunctions { | ||
/// The date() function returns the date in this format: YYYY-MM-DD. | ||
public static func date(_ timestring: String, _ modifiers: String...) -> Expression<Date?> { | ||
return timefunction("date", timestring: timestring, modifiers: modifiers) | ||
} | ||
|
||
/// The time() function returns the time as HH:MM:SS. | ||
public static func time(_ timestring: String, _ modifiers: String...) -> Expression<Date?> { | ||
return timefunction("time", timestring: timestring, modifiers: modifiers) | ||
} | ||
|
||
/// The datetime() function returns "YYYY-MM-DD HH:MM:SS". | ||
public static func datetime(_ timestring: String, _ modifiers: String...) -> Expression<Date?> { | ||
return timefunction("datetime", timestring: timestring, modifiers: modifiers) | ||
} | ||
|
||
/// The julianday() function returns the Julian day - | ||
/// the number of days since noon in Greenwich on November 24, 4714 B.C. | ||
public static func julianday(_ timestring: String, _ modifiers: String...) -> Expression<Date?> { | ||
return timefunction("julianday", timestring: timestring, modifiers: modifiers) | ||
} | ||
|
||
/// The strftime() routine returns the date formatted according to the format string specified as the first argument. | ||
public static func strftime(_ format: String, _ timestring: String, _ modifiers: String...) -> Expression<Date?> { | ||
if !modifiers.isEmpty { | ||
let templates = [String](repeating: "?", count: modifiers.count).joined(separator: ", ") | ||
return Expression("strftime(?, ?, \(templates))", [format, timestring] + modifiers) | ||
} | ||
return Expression("strftime(?, ?)", [format, timestring]) | ||
} | ||
|
||
private static func timefunction(_ name: String, timestring: String, modifiers: [String]) -> Expression<Date?> { | ||
if !modifiers.isEmpty { | ||
let templates = [String](repeating: "?", count: modifiers.count).joined(separator: ", ") | ||
return Expression("\(name)(?, \(templates))", [timestring] + modifiers) | ||
} | ||
return Expression("\(name)(?)", [timestring]) | ||
} | ||
} | ||
|
||
extension Date { | ||
public var date: Expression<Date?> { | ||
return DateFunctions.date(dateFormatter.string(from: self)) | ||
} | ||
|
||
public var time: Expression<Date?> { | ||
return DateFunctions.time(dateFormatter.string(from: self)) | ||
} | ||
|
||
public var datetime: Expression<Date?> { | ||
return DateFunctions.datetime(dateFormatter.string(from: self)) | ||
} | ||
|
||
public var julianday: Expression<Date?> { | ||
return DateFunctions.julianday(dateFormatter.string(from: self)) | ||
} | ||
} | ||
|
||
extension Expression where UnderlyingType == Date { | ||
public var date: Expression<Date> { | ||
return Expression<Date>("date(\(template))", bindings) | ||
} | ||
|
||
public var time: Expression<Date> { | ||
return Expression<Date>("time(\(template))", bindings) | ||
} | ||
|
||
public var datetime: Expression<Date> { | ||
return Expression<Date>("datetime(\(template))", bindings) | ||
} | ||
|
||
public var julianday: Expression<Date> { | ||
return Expression<Date>("julianday(\(template))", bindings) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.