AVRSack/AVRsack/ASFileTree.swift

397 lines
13 KiB
Swift

//
// ASFileTree.swift
// AVRsack
//
// Created by Matthias Neeracher on 11/16/14.
// Copyright (c) 2014 Aere Perennius. All rights reserved.
//
import Foundation
enum ASFileType : String {
case Unknown = ""
case Header = "source.h"
case CFile = "source.c"
case Arduino = "source.ino"
case CppFile = "source.c++"
case AsmFile = "source.asm"
case Markdown = "doc.md"
static func guessForURL(url: NSURL) -> ASFileType {
switch url.pathExtension!.lowercaseString {
case "hpp", "hh", "h":
return .Header
case "c":
return .CFile
case "ino":
return .Arduino
case "cpp", "c++", "cxx", "cc":
return .CppFile
case "s":
return .AsmFile
case "md":
return .Markdown
default:
return .Unknown
}
}
var aceMode : ACEMode {
switch self {
case .Header,.CFile,.CppFile,.Arduino:
return .CPP
case .Markdown:
return .Markdown
default:
return .Text
}
}
}
private let kTypeKey = "Type"
private let kNodeTypeProject = "Project"
private let kNodeTypeGroup = "Group"
private let kNodeTypeFile = "File"
private let kNameKey = "Name"
class ASFileNode : Equatable {
var name : String
init(name: String) {
self.name = name
}
func nodeName() -> String {
return ""
}
func apply(closure:(ASFileNode)->()) {
closure(self)
}
func propertyList(rootPath: String) -> AnyObject {
return ""
}
class func readPropertyList(prop: NSDictionary, rootURL: NSURL) -> ASFileNode {
switch prop[kTypeKey] as! String {
case kNodeTypeProject:
return ASProject(prop, withRootURL:rootURL)
case kNodeTypeGroup:
return ASFileGroup(prop, withRootURL:rootURL)
case kNodeTypeFile:
return ASFileItem(prop, withRootURL:rootURL)
default:
assertionFailure("Undefined item type in file hierarchy")
abort()
}
}
func paths(rootPath: String) -> [String] {
return [String]()
}
func exists() -> Bool {
return true
}
func modDate() -> NSDate? {
return nil;
}
func revision() -> String? {
return nil;
}
}
func ==(a: ASFileNode, b: ASFileNode) -> Bool {
return a === b
}
class ASLogNode : ASFileNode {
var path : String
init(name: String, path: String) {
self.path = path
super.init(name: name)
}
override func nodeName() -> String {
return "📜 "+name
}
}
class ASFileGroup : ASFileNode {
var children : [ASFileNode]
var expanded : Bool
private let kChildrenKey = "Children"
private let kExpandedKey = "Expanded"
private var kNodeType : String { return kNodeTypeGroup }
override init(name: String = "") {
self.children = []
self.expanded = true
super.init(name: name)
}
init(_ prop: NSDictionary, withRootURL rootURL: NSURL) {
expanded = prop[kExpandedKey] as! Bool
children = []
for child in (prop[kChildrenKey] as! [NSDictionary]) {
children.append(ASFileNode.readPropertyList(child, rootURL: rootURL))
}
super.init(name: prop[kNameKey] as! String)
}
override func nodeName() -> String {
return (expanded ? "📂" : "📁")+" "+name
}
override func apply(closure: (ASFileNode) -> ()) {
super.apply(closure)
for child in children {
child.apply(closure)
}
}
func childrenPropertyList(rootPath: String) -> [AnyObject] {
return children.map() { (node) in node.propertyList(rootPath) }
}
override func propertyList(rootPath: String) -> AnyObject {
return [kTypeKey: kNodeType, kNameKey: name, kExpandedKey: expanded,
kChildrenKey: childrenPropertyList(rootPath)]
}
override func paths(rootPath: String) -> [String] {
var allPaths = [String]()
for child in children {
allPaths += child.paths(rootPath)
}
return allPaths
}
}
class ASProject : ASFileGroup {
override private var kNodeType : String { return kNodeTypeProject }
override init(name: String = "") {
super.init(name: name)
}
override init(_ prop: NSDictionary, withRootURL rootURL: NSURL) {
super.init(prop, withRootURL:rootURL)
name = rootURL.lastPathComponent!
}
override func nodeName() -> String {
return "📘 "+name
}
}
class ASFileItem : ASFileNode {
var url : NSURL
var type : ASFileType
private let kPathKey = "Path"
private let kKindKey = "Kind"
init(url: NSURL, type: ASFileType) {
self.url = url
self.type = type
super.init(name:url.lastPathComponent!)
}
init(_ prop: NSDictionary, withRootURL rootURL: NSURL) {
type = ASFileType(rawValue: prop[kKindKey] as! String)!
if let relativeURL = NSURL(string: prop[kPathKey] as! String, relativeToURL: rootURL) {
url = relativeURL.URLByStandardizingPath!
} else {
url = NSURL(fileURLWithPath:(prop[kPathKey] as! String)).URLByStandardizingPath!
}
if !url.checkResourceIsReachableAndReturnError(nil) {
//
// When projects get moved, .ino files get renamed but that fact is not
// yet reflected in the project file.
//
let urlDir = url.URLByDeletingLastPathComponent
let newName = rootURL.URLByAppendingPathExtension(url.pathExtension!).lastPathComponent!
if let altURL = urlDir?.URLByAppendingPathComponent(newName) {
if altURL.checkResourceIsReachableAndReturnError(nil) {
url = altURL
}
}
}
super.init(name:url.lastPathComponent!)
}
override func nodeName() -> String {
return "📄 "+name
}
func relativePath(relativeTo: String) -> String {
let path = (url.path! as NSString).stringByResolvingSymlinksInPath
let relComp = relativeTo.componentsSeparatedByString("/") as [String]
let pathComp = path.componentsSeparatedByString("/") as [String]
let relCount = relComp.count
let pathCount = pathComp.count
var matchComp = 0
while (matchComp < relCount && matchComp < pathCount) {
if pathComp[matchComp] == relComp[matchComp] {
++matchComp
} else {
break
}
}
if matchComp==1 {
return path
}
let resComp = Array(count: relCount-matchComp, repeatedValue: "..")+pathComp[matchComp..<pathCount]
return resComp.joinWithSeparator("/")
}
override func propertyList(rootPath: String) -> AnyObject {
return [kTypeKey: kNodeTypeFile, kKindKey: type.rawValue, kPathKey: relativePath(rootPath)]
}
override func paths(rootPath: String) -> [String] {
return [relativePath(rootPath)]
}
override func exists() -> Bool {
return url.checkResourceIsReachableAndReturnError(nil)
}
override func modDate() -> NSDate? {
var date: AnyObject?
do {
try url.getResourceValue(&date, forKey: NSURLContentModificationDateKey)
return date as? NSDate
} catch _ {
return nil
}
}
override func revision() -> String? {
let task = NSTask()
task.launchPath = NSBundle.mainBundle().pathForResource("FileRevision", ofType: "")!
let outputPipe = NSPipe()
task.standardOutput = outputPipe
task.standardError = NSFileHandle.fileHandleWithNullDevice()
task.arguments = [url.path!]
task.launch()
return NSString(data: outputPipe.fileHandleForReading.readDataToEndOfFile(),
encoding: NSUTF8StringEncoding) as? String
}
}
class ASFileTree : NSObject, NSOutlineViewDataSource {
var root = ASProject()
var dir = NSURL()
var buildLog = ASLogNode(name: "Build Log", path: "build/build.log")
var uploadLog = ASLogNode(name: "Upload Log", path: "build/upload.log")
var disassembly = ASLogNode(name: "Disassembly", path: "build/disasm.log")
var dragged = [ASFileNode]()
func addFileURL(url: NSURL, omitUnknown: Bool = true) {
let type = ASFileType.guessForURL(url)
if !omitUnknown || type != .Unknown {
root.children.append(ASFileItem(url: url.URLByStandardizingPath!, type: type))
}
}
func setProjectURL(url: NSURL) {
root.name = url.URLByDeletingPathExtension!.lastPathComponent!
dir = url.URLByDeletingLastPathComponent!.URLByStandardizingPath!
}
func projectPath() -> String {
return (dir.path! as NSString).stringByResolvingSymlinksInPath
}
func apply(closure: (ASFileNode) -> ()) {
root.apply(closure)
}
func propertyList() -> AnyObject {
return root.propertyList(projectPath())
}
func readPropertyList(prop: NSDictionary) {
root = ASFileNode.readPropertyList(prop, rootURL:dir) as! ASProject
}
var paths : [String] {
return root.paths(projectPath())
}
// MARK: Outline Data Source
func outlineView(outlineView: NSOutlineView, numberOfChildrenOfItem item: AnyObject?) -> Int {
if item == nil {
return 4
} else {
return (item as! ASFileGroup).children.count
}
}
func outlineView(outlineView: NSOutlineView, child index: Int, ofItem item: AnyObject?) -> AnyObject {
if item == nil {
switch index {
case 1:
return buildLog
case 2:
return uploadLog
case 3:
return disassembly
default:
return root
}
} else {
let group = item as! ASFileGroup
return group.children[index]
}
}
func outlineView(outlineView: NSOutlineView, isItemExpandable item: AnyObject) -> Bool {
return item is ASFileGroup
}
func outlineView(outlineView: NSOutlineView, objectValueForTableColumn tableColumn: NSTableColumn?, byItem item: AnyObject?) -> AnyObject? {
return (item as! ASFileNode).nodeName()
}
let kLocalReorderPasteboardType = "ASFilePasteboardType"
func outlineView(outlineView: NSOutlineView, writeItems items: [AnyObject], toPasteboard pasteboard: NSPasteboard) -> Bool {
dragged = items as! [ASFileNode]
pasteboard.declareTypes([kLocalReorderPasteboardType], owner: self)
pasteboard.setData(NSData(), forType: kLocalReorderPasteboardType)
return true
}
func itemIsDescendentOfDrag(outlineView: NSOutlineView, item: ASFileNode) -> Bool {
if dragged.contains(item) {
return true
} else if item is ASProject {
return false
} else {
return itemIsDescendentOfDrag(outlineView, item: outlineView.parentForItem(item) as! ASFileNode)
}
}
func outlineView(outlineView: NSOutlineView, validateDrop info: NSDraggingInfo, proposedItem item: AnyObject?, proposedChildIndex index: Int) -> NSDragOperation {
if info.draggingPasteboard().availableTypeFromArray([kLocalReorderPasteboardType]) == nil {
return NSDragOperation.None // Only allow reordering drags
}
for drag in dragged {
switch (drag) {
case is ASProject, is ASLogNode:
return NSDragOperation.None // Don't allow root or log nodes to be dragged
default:
break
}
}
switch (item) {
case is ASProject, is ASFileGroup:
if itemIsDescendentOfDrag(outlineView, item: item as! ASFileNode) {
return NSDragOperation.None // Don't allow drag on member of dragged items or a descendent thereof
}
default:
return NSDragOperation.None // Don't allow drag onto leaf
}
return NSDragOperation.Generic
}
func outlineView(outlineView: NSOutlineView, acceptDrop info: NSDraggingInfo, item: AnyObject?, var childIndex insertAtIndex: Int) -> Bool {
let parent : ASFileGroup = (item as? ASFileGroup) ?? root
if insertAtIndex == NSOutlineViewDropOnItemIndex {
insertAtIndex = parent.children.count
}
outlineView.beginUpdates()
for item in dragged {
let origParent = outlineView.parentForItem(item) as! ASFileGroup
let origIndex = origParent.children.indexOf(item)!
origParent.children.removeAtIndex(origIndex)
outlineView.removeItemsAtIndexes(NSIndexSet(index:origIndex), inParent:origParent, withAnimation:NSTableViewAnimationOptions.EffectNone)
if origParent == parent && insertAtIndex > origIndex {
insertAtIndex -= 1
}
parent.children.insert(item, atIndex:insertAtIndex)
outlineView.insertItemsAtIndexes(NSIndexSet(index:insertAtIndex), inParent: parent, withAnimation:NSTableViewAnimationOptions.EffectGap)
insertAtIndex += 1
}
outlineView.endUpdates()
(outlineView.delegate() as! ASProjDoc).updateChangeCount(NSDocumentChangeType.ChangeDone)
return true
}
}