/*
NaturalOrder.js -- Perform 'natural order' comparisons of strings in JavaScript.
Copyright (C) 2005 by Tom Mack (natorder@tom-mack.com)

Based on the Java version by Pierre-Luc Paour.
Copyright (C) 2003 by Pierre-Luc Paour <natorder@paour.com>

Based on the C version by Martin Pool, of which this is more or less a straight conversion.
Copyright (C) 2000 by Martin Pool <mbp@humbug.org.au>

This software is provided 'as-is', without any express or implied
warranty.  In no event will the authors be held liable for any damages
arising from the use of this software.

Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:

1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/


NaturalOrder = {
  compareRight: function(a, b)
  {
    var bias = 0;
    var ia = 0;
    var ib = 0;

    // The longest run of digits wins.  That aside, the greatest
    // value wins, but we can't know that it will until we've scanned
    // both numbers to know that they have the same magnitude, so we
    // remember it in BIAS.
    for (;; ia++, ib++) {
      var ca = NaturalOrder.charAt(a, ia);
      var cb = NaturalOrder.charAt(b, ib);

      if (!NaturalOrder.isDigit(ca)
          && !NaturalOrder.isDigit(cb)) {
        return bias;
      } else if (!NaturalOrder.isDigit(ca)) {
        return -1;
      } else if (!NaturalOrder.isDigit(cb)) {
        return +1;
      } else if (ca < cb) {
        if (bias == 0) {
          bias = -1;
        }
      } else if (ca > cb) {
        if (bias == 0)
          bias = +1;
      } else if (ca === 0 && cb === 0) {
        return bias;
      }
    }
  },

  compare: function(o1, o2) {
    var a = o1.toString();
    var b = o2.toString();

    var ia = 0, ib = 0;
    var nza = 0, nzb = 0;
    var ca, cb;
    var result;

    while (true) {
      // only count the number of zeroes leading the last number compared
      nza = nzb = 0;

      ca = NaturalOrder.charAt(a, ia); cb = NaturalOrder.charAt(b, ib);

      // skip over leading spaces or zeros
      while (NaturalOrder.isSpaceChar(ca) || ca === '0') {
        if (ca === '0') {
          nza++;
        } else {
          // only count consecutive zeroes
          nza = 0;
        }

        ca = NaturalOrder.charAt(a, ++ia);
      }

      while (NaturalOrder.isSpaceChar(cb) || cb === '0') {
        if (cb === '0') {
          nzb++;
        } else {
          // only count consecutive zeroes
          nzb = 0;
        }

        cb = NaturalOrder.charAt(b, ++ib);
      }

      // process run of digits
      if (NaturalOrder.isDigit(ca) && NaturalOrder.isDigit(cb)) {
        if ((result = NaturalOrder.compareRight(a.substring(ia), b.substring(ib))) != 0) {
          return result;
        }
      }

      if (ca === 0 && cb === 0) {
        // The strings compare the same.  Perhaps the caller
        // will want to call strcmp to break the tie.
        return nza - nzb;
      }

      if (ca < cb) {
        return -1;
      } else if (ca > cb) {
        return +1;
      }

      ++ia; ++ib;
    }
  },

  charAt: function(s, i) {
    if (i >= s.length) {
      return 0;
    } else {
      return s.charAt(i);
    }
  },
  
  isDigit: function(num) {
    if (num.length>1){
      return false;
    }
    if (num === 0) {
      return false;
    }
    var string="1234567890";
    return string.indexOf(num)!=-1;
  },
  
  isSpaceChar: function(s) {
    return s.toString().match(/^\s$/);
  }
}
