Skip to content

Instantly share code, notes, and snippets.

@poksi592
Last active May 15, 2018 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save poksi592/4781442c818d469e5fa251ed67846795 to your computer and use it in GitHub Desktop.
Save poksi592/4781442c818d469e5fa251ed67846795 to your computer and use it in GitHub Desktop.
Application Router
public typealias ModuleCallback = ([String: Any]?, Data?, URLResponse?, Error?) -> Void
/**
Protocol defines application router, which function is
- register application modules
- access/open the modules
- provide the callback, result of the access
*/
protocol ApplicationRouterType: class {
var instantiatedModules: [ModuleType] { get set }
var moduleQueue: DispatchQueue { get }
func open(url: URL,
callback: ModuleCallback?)
}
extension ApplicationRouterType {
func open(url: URL,
callback: ModuleCallback?) {
guard let components = URLComponents(url: url, resolvingAgainstBaseURL: false),
let route = components.host else {
assertionFailure("Wrong host or/and path")
return
}
guard let module = instantiatedModules.filter({ $0.route == route }).first,
let path = module.paths.filter({ $0 == url.path }).first else { return }
module.open(parameters: components.queryItemsDictionary, path: path) { (response, data, urlResponse, error) in
callback?(response, data, urlResponse, error)
}
}
}
class ApplicationRouter: ApplicationRouterType {
// TODO: This is synchronising only write access, which might be inadequate in many cases
// Need to be replaced with proper full generic implementation of synchronized collection
private (set) var moduleQueue = DispatchQueue(label: "com.tandem.module.queue")
// ApplicationRouter is a singleton, because it makes it easier to be accessed from anywhere to access its functions/services
static let shared = ApplicationRouter()
// We have registered 2 modules for now...
var instantiatedModules: [ModuleType] = [PaymentModule(),
LoginModule()]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment