mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
37 lines
1.0 KiB
Ruby
37 lines
1.0 KiB
Ruby
module Linguist
|
|
# A collection of simple heuristics that can be used to better analyze languages.
|
|
class Heuristics
|
|
ACTIVE = false
|
|
|
|
# Public: Given an array of String language names,
|
|
# apply heuristics against the given data and return an array
|
|
# of matching languages, or nil.
|
|
#
|
|
# data - Array of tokens or String data to analyze.
|
|
# languages - Array of language name Strings to restrict to.
|
|
#
|
|
# Returns an array of Languages or []
|
|
def self.find_by_heuristics(data, languages)
|
|
if active?
|
|
if languages.all? { |l| ["Objective-C", "C++"].include?(l) }
|
|
disambiguate_h(data, languages)
|
|
end
|
|
end
|
|
end
|
|
|
|
# .h extensions are ambigious between C, C++, and Objective-C.
|
|
# We want to shortcut look for Objective-C.
|
|
#
|
|
# Returns an array of Languages or []
|
|
def self.disambiguate_h(data, languages)
|
|
matches = []
|
|
matches << Language["Objective-C"] if data.include?("@interface")
|
|
matches
|
|
end
|
|
|
|
def self.active?
|
|
!!ACTIVE
|
|
end
|
|
end
|
|
end
|