Вход Регистрация
Файл: wysiwyg/live/scripts/common/codemirror/lib/util/searchcursor.js
Строк: 197
<?php
(function(){
  function 
SearchCursor(cmqueryposcaseFold) {
    
this.atOccurrence falsethis.cm cm;
    if (
caseFold == nullcaseFold typeof query == "string" && query == query.toLowerCase();

    
pos pos cm.clipPos(pos) : {line0ch0};
    
this.pos = {frompostopos};

    
// The matches method is filled in based on the type of query.
    // It takes a position and a direction, and returns an object
    // describing the next occurrence of the query, or null if no
    // more matches were found.
    
if (typeof query != "string"// Regexp match
      
this.matches = function(reversepos) {
        if (
reverse) {
          var 
line cm.getLine(pos.line).slice(0pos.ch), match line.match(query), start 0;
          while (
match) {
            var 
ind line.indexOf(match[0]);
            
start += ind;
            
line line.slice(ind 1);
            var 
newmatch line.match(query);
            if (
newmatchmatch newmatch;
            else break;
            
start++;
          }
        }
        else {
          var 
line cm.getLine(pos.line).slice(pos.ch), match line.match(query),
          
start match && pos.ch line.indexOf(match[0]);
        }
        if (
match)
          return {
from: {linepos.linechstart},
                  
to: {linepos.linechstart match[0].length},
                  
matchmatch};
      };
    else { 
// String query
      
if (caseFoldquery query.toLowerCase();
      var 
fold caseFold ? function(str){return str.toLowerCase();} : function(str){return str;};
      var 
target query.split("n");
      
// Different methods for single-line and multi-line queries
      
if (target.length == 1)
        
this.matches = function(reversepos) {
          var 
line fold(cm.getLine(pos.line)), len query.lengthmatch;
          if (
reverse ? (pos.ch >= len && (match line.lastIndexOf(querypos.ch len)) != -1)
              : (
match line.indexOf(querypos.ch)) != -1)
            return {
from: {linepos.linechmatch},
                    
to: {linepos.linechmatch len}};
        };
      else
        
this.matches = function(reversepos) {
          var 
ln pos.lineidx = (reverse target.length 0), match target[idx], line fold(cm.getLine(ln));
          var 
offsetA = (reverse line.indexOf(match) + match.length line.lastIndexOf(match));
          if (
reverse offsetA >= pos.ch || offsetA != match.length
              
offsetA <= pos.ch || offsetA != line.length match.length)
            return;
          for (;;) {
            if (
reverse ? !ln ln == cm.lineCount() - 1) return;
            
line fold(cm.getLine(ln += reverse ? -1));
            
match target[reverse ? --idx : ++idx];
            if (
idx && idx target.length 1) {
              if (
line != match) return;
              else continue;
            }
            var 
offsetB = (reverse line.lastIndexOf(match) : line.indexOf(match) + match.length);
            if (
reverse offsetB != line.length match.length offsetB != match.length)
              return;
            var 
start = {linepos.linechoffsetA}, end = {linelnchoffsetB};
            return {
fromreverse end starttoreverse start end};
          }
        };
    }
  }

  
SearchCursor.prototype = {
    
findNext: function() {return this.find(false);},
    
findPrevious: function() {return this.find(true);},

    
find: function(reverse) {
      var 
self thispos this.cm.clipPos(reverse this.pos.from this.pos.to);
      function 
savePosAndFail(line) {
        var 
pos = {linelinech0};
        
self.pos = {frompostopos};
        
self.atOccurrence false;
        return 
false;
      }

      for (;;) {
        if (
this.pos this.matches(reversepos)) {
          
this.atOccurrence true;
          return 
this.pos.match || true;
        }
        if (
reverse) {
          if (!
pos.line) return savePosAndFail(0);
          
pos = {linepos.line-1chthis.cm.getLine(pos.line-1).length};
        }
        else {
          var 
maxLine this.cm.lineCount();
          if (
pos.line == maxLine 1) return savePosAndFail(maxLine);
          
pos = {linepos.line+1ch0};
        }
      }
    },

    
from: function() {if (this.atOccurrence) return this.pos.from;},
    
to: function() {if (this.atOccurrence) return this.pos.to;},

    
replace: function(newText) {
      var 
self this;
      if (
this.atOccurrence)
        
self.pos.to this.cm.replaceRange(newTextself.pos.fromself.pos.to);
    }
  };

  
CodeMirror.defineExtension("getSearchCursor", function(queryposcaseFold) {
    return new 
SearchCursor(thisqueryposcaseFold);
  });
})();
?>
Онлайн: 1
Реклама