* Enable swift 6 mode * Attach Sendable * Stop async context because enumerator can use only synchronous contexts * Fix global shared mutable state for MustacheContentTypes * Revert "Fix global shared mutable state for MustacheContentTypes" This reverts commit d4ccc83e07aeb48f4aa4024b71eb8e5f70131bc5. * Use instead of lock * Support 5 and 6 versions * Lock on access in Swift 6 * Support 5.9 * Revert "Support 5.9" This reverts commit 9845b3bc448b2af7238c3ac88aabe6d764b2e667. * Fix 5.9 compatibility * Unify to manage the same lock logic in 5.9 and 6 * Add withLock backport in NSLock
42 lines
1.6 KiB
Swift
42 lines
1.6 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Hummingbird server framework project
|
|
//
|
|
// Copyright (c) 2021-2024 the Hummingbird authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See hummingbird/CONTRIBUTORS.txt for the list of Hummingbird authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import Foundation
|
|
|
|
extension MustacheLibrary {
|
|
/// Load templates from a folder
|
|
static func loadTemplates(from directory: String, withExtension extension: String = "mustache") throws -> [String: MustacheTemplate] {
|
|
var directory = directory
|
|
if !directory.hasSuffix("/") {
|
|
directory += "/"
|
|
}
|
|
let extWithDot = ".\(`extension`)"
|
|
let fs = FileManager()
|
|
guard let enumerator = fs.enumerator(atPath: directory) else { return [:] }
|
|
var templates: [String: MustacheTemplate] = [:]
|
|
for case let path as String in enumerator {
|
|
guard path.hasSuffix(extWithDot) else { continue }
|
|
do {
|
|
guard let template = try MustacheTemplate(filename: directory + path) else { continue }
|
|
// drop ".mustache" from path to get name
|
|
let name = String(path.dropLast(extWithDot.count))
|
|
templates[name] = template
|
|
} catch let error as MustacheTemplate.ParserError {
|
|
throw ParserError(filename: path, context: error.context, error: error.error)
|
|
}
|
|
}
|
|
return templates
|
|
}
|
|
}
|