Skip to content
This repository was archived by the owner on Sep 6, 2018. It is now read-only.

Add XIB Parser and context provider #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions Sources/Parsers/XIBParser.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
//
// SwiftGenKit
// Copyright (c) 2017 SwiftGen
// MIT Licence
//

import Foundation
import PathKit

public final class XIBParser {
var xibs: [String: (customClass: String?, module: String?)] = [:]

public init() {}

private class ParserDelegate: NSObject, XMLParserDelegate {
fileprivate var fileOwnerClass: String?
fileprivate var fileOwnerModule: String?

func parser(_ parser: XMLParser, didStartElement elementName: String,
namespaceURI: String?, qualifiedName qName: String?,
attributes attributeDict: [String: String]) {
if elementName == "placeholder" && attributeDict["placeholderIdentifier"] == "IBFilesOwner" {
self.fileOwnerClass = attributeDict["customClass"]
self.fileOwnerModule = attributeDict["customModule"]
}
}
}

public func addXIB(at path: Path) throws {
let parser = XMLParser(data: try path.read())

let delegate = ParserDelegate()
parser.delegate = delegate
parser.parse()

let xibName = path.lastComponentWithoutExtension
self.xibs[xibName] = (delegate.fileOwnerClass, delegate.fileOwnerModule)
}

public func parseDirectory(at path: Path) throws {
let iterator = path.makeIterator()

while let subPath = iterator.next() {
if subPath.extension == "xib" {
try addXIB(at: subPath)
}
}
}
}
31 changes: 31 additions & 0 deletions Sources/Stencil/XIBContext.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
//
// SwiftGenKit
// Copyright (c) 2017 SwiftGen
// MIT Licence
//

import Foundation

/*
- `xibs`: `Array` — List of xibs
- `name`: `String` — Name of the xib
- `owner`: `String` — The custom class of the scene
- `customModule`: `String` — The custom module of the scene (absent if no custom class)
*/
extension XIBParser {
public func stencilContext() -> [String: Any] {
let xibNames = Set(xibs.keys).sorted(by: <)
let xibsMap = xibNames.map { (xibName: String) -> [String: String] in
guard let (owner, module) = xibs[xibName] else {
return [:]
}

var xibInformation = ["name": xibName]
xibInformation["customOwner"] = owner
xibInformation["customModule"] = module
return xibInformation
}

return ["xibs": xibsMap]
}
}