nativescript
Version:
Command-line interface for building NativeScript projects
112 lines (94 loc) • 3.71 kB
JavaScript
/*
Copyright (c) 2012, Adam Phillabaum, Chris Umbel
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
Unless otherwise stated by a specific section of code
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
// Computes the Jaro distance between two string -- intrepreted from:
// http://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance
// s1 is the first string to compare
// s2 is the second string to compare
function distance(s1, s2) {
if (typeof(s1) != "string" || typeof(s2) != "string") return 0;
if (s1.length == 0 || s2.length == 0)
return 0;
s1 = s1.toLowerCase(), s2 = s2.toLowerCase();
var matchWindow = (Math.floor(Math.max(s1.length, s2.length) / 2.0)) - 1;
var matches1 = new Array(s1.length);
var matches2 = new Array(s2.length);
var m = 0; // number of matches
var t = 0; // number of transpositions
//debug helpers
//console.log("s1: " + s1 + "; s2: " + s2);
//console.log(" - matchWindow: " + matchWindow);
// find matches
for (var i = 0; i < s1.length; i++) {
var matched = false;
// check for an exact match
if (s1[i] == s2[i]) {
matches1[i] = matches2[i] = matched = true;
m++
}
// check the "match window"
else {
// this for loop is a little brutal
for (k = (i <= matchWindow) ? 0 : i - matchWindow;
(k <= i + matchWindow) && k < s2.length && !matched;
k++) {
if (s1[i] == s2[k]) {
if(!matches1[i] && !matches2[k]) {
m++;
}
matches1[i] = matches2[k] = matched = true;
}
}
}
}
if(m == 0)
return 0.0;
// count transpositions
var k = 0;
for(var i = 0; i < s1.length; i++) {
if(matches1[k]) {
while(!matches2[k] && k < matches2.length)
k++;
if(s1[i] != s2[k] && k < matches2.length) {
t++;
}
k++;
}
}
//debug helpers:
//console.log(" - matches: " + m);
//console.log(" - transpositions: " + t);
t = t / 2.0;
return (m / s1.length + m / s2.length + (m - t) / m) / 3;
}
// Computes the Winkler distance between two string -- intrepreted from:
// http://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance
// s1 is the first string to compare
// s2 is the second string to compare
// dj is the Jaro Distance (if you've already computed it), leave blank and the method handles it
function JaroWinklerDistance(s1, s2, dj) {
var jaro;
(typeof(dj) == 'undefined')? jaro = distance(s1,s2) : jaro = dj;
var p = 0.1; //
var l = 0 // length of the matching prefix
while(s1[l] == s2[l] && l < 4)
l++;
return jaro + l * p * (1 - jaro);
}
module.exports = JaroWinklerDistance;