Class: CodeZauker::FileScanner

Inherits:
Object
  • Object
show all
Defined in:
lib/code_zauker.rb

Overview

Scan a file and push it inside redis… then it can provide handy method to find file scontaining the trigram…

Instance Method Summary collapse

Constructor Details

#initialize(redisConnection = nil) ⇒ FileScanner

Returns a new instance of FileScanner.



157
158
159
160
161
162
163
# File 'lib/code_zauker.rb', line 157

def initialize(redisConnection=nil)
  if redisConnection==nil
    @redis=Redis.new
  else
    @redis=redisConnection
  end
end

Instance Method Details

#disconnectObject



166
167
168
169
170
171
172
173
# File 'lib/code_zauker.rb', line 166

def disconnect()    
  begin
    @redis.quit
  rescue Errno::EAGAIN =>e
    # Nothing to do...
    puts "Ignored EAGAIN ERROR during disconnect..."
  end
end

#isearch(term) ⇒ Object

Do a case-insenitive search

using the special set of trigrams “trigram:ci:*” all downcase



343
344
345
346
347
348
349
350
351
352
353
354
# File 'lib/code_zauker.rb', line 343

def isearch(term)
  if term.length < GRAM_SIZE
    raise "FATAL: #{term} is shorter then the minimum size of #{GRAM_SIZE} character"
  end      
  termLowercase=term.downcase()
  trigramInAnd=split_in_trigrams(termLowercase,"trigram:ci")
  if trigramInAnd.length==0
    return []
  end      
  fileIds=    @redis.sinter(*trigramInAnd)
  return map_ids_to_files(fileIds)      
end

#load(filename) ⇒ Object



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
# File 'lib/code_zauker.rb', line 232

def load(filename)
  # Define my redis id...      
  # Already exists?...
  fid=@redis.get "fscan:id:#{filename}"
  if fid==nil 
    @redis.setnx "fscan:nextId",0
    fid=@redis.incr "fscan:nextId"
    # BUG: Consider storing it at the END of the processing
    @redis.set "fscan:id:#{filename}", fid
    @redis.set "fscan:id2filename:#{fid}",filename
  else
    # ADD MD5 Checksum
    #Digest::MD5.hexdigest("aaa")
    fileDigest = Digest::MD5.hexdigest(File.read(filename))
    storedDigest=@redis.get("cz:md5:#{filename}")
    if(fileDigest!=storedDigest)
      puts "#{filename} CHANGED...MD5: #{fileDigest} REINDEXING..."
      self.remove([filename]) 
    else          
      ## puts "#{filename} id:#{fid} MD% UP TO DATE and NOT RELOADED"
      return nil
    end

  end      
  # fid is the set key!...
  trigramScanned=0
  # TEST_LICENSE.txt: 3290 Total Scanned: 24628
  # The ratio is below 13% of total trigrams are unique for very big files
  # So we avoid a huge roundtrip to redis, and store the trigram on a memory-based set
  # before sending it to redis. This avoid
  # a lot of spourios work      
  s=Set.new
  util=Util.new()
  lines=util.get_lines(filename)
  adaptiveSize= TRIGRAM_DEFAULT_PUSH_SIZE

  lines.each do  |lineNotUTF8|
    l= util.ensureUTF8(lineNotUTF8)
    # Split each line into GRAM_SIZE-char chunks, and store in a redis set
    i=0
    for istart in 0...(l.length-GRAM_SIZE) 
      trigram = l[istart, GRAM_SIZE]
      # Avoid storing the 3space guy enterely
      if trigram==SPACE_GUY
        next
      end
      # push the trigram to redis (highly optimized)
      s.add(trigram)
      if s.length > adaptiveSize
        pushTrigramsSet(s,fid,filename)
        s=Set.new()             
      end
      trigramScanned += 1
      #puts "#{istart} Gram fscan:#{trigram}/  FileId: #{fid}"
    end
  end
  

  if s.length > 0
    pushTrigramsSet(s,fid,filename)
    s=nil
    #puts "Final push of #{s.length}"
  end


  trigramsOnFile=@redis.scard "fscan:trigramsOnFile:#{fid}"
  @redis.sadd "fscan:processedFiles", "#{filename}"
  trigramRatio=( (trigramsOnFile*1.0) / trigramScanned )* 100.0
  if trigramRatio < 10 or trigramRatio >75        
    puts "#{filename}\n\tRatio:#{trigramRatio.round}%  Unique #{GRAM_SIZE}-grams:#{trigramsOnFile} Total Scanned: #{trigramScanned} ?Binary" if trigramRatio >90 and trigramsOnFile>70
  end

  # Register digest...do at last for better security
  fileDigest = Digest::MD5.hexdigest(File.read(filename))
  @redis.set("cz:md5:#{filename}",fileDigest)

  return nil
end

#map_ids_to_files(fileIds) ⇒ Object



325
326
327
328
329
330
331
332
333
334
# File 'lib/code_zauker.rb', line 325

def map_ids_to_files(fileIds)
  filenames=[]
  # fscan:id2filename:#{fid}....
  fileIds.each do | id |
    file_name=@redis.get("fscan:id2filename:#{id}")
    filenames.push(file_name)  if !file_name.nil?
  end      
  #puts " ** Files found:#{filenames} from ids #{fileIds}"
  return filenames
end

#reindex(fileList) ⇒ Object



401
402
403
404
405
406
407
# File 'lib/code_zauker.rb', line 401

def reindex(fileList)
  #puts "Reindexing... #{fileList.length} files..."
  fileList.each do |current_file |
    self.remove([current_file])        
    self.load(current_file)
  end
end

#remove(filePaths = nil) ⇒ Object

Remove the files from the index, updating trigrams



422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
# File 'lib/code_zauker.rb', line 422

def remove(filePaths=nil)
  if filePaths==nil
    fileList=[]
    storedFiles=@redis.keys "fscan:id:*"
    storedFiles.each do |fileKey|
      filename=fileKey.split("fscan:id:")[1]
      fileList.push(filename)
    end
  else
    fileList=filePaths
  end
  # puts "Files to remove from index...#{fileList.length}"      
  fileList.each do |filename|
    fid=@redis.get "fscan:id:#{filename}"
    trigramsToExpurge=@redis.smembers "fscan:trigramsOnFile:#{fid}"
    if trigramsToExpurge.length==0
      puts "?Nothing to do on #{filename}"
    end
    puts "#{filename} id=#{fid} Trigrams: #{trigramsToExpurge.length} Expurging..."        
    trigramsToExpurge.each do | ts |          
      begin
        @redis.srem "trigram:ci:#{ts.downcase}",fid
        #putc "."
      rescue ArgumentError
        # Ignore  "ArgumentError: invalid byte sequence in UTF-8"
        # and proceed...
      end
    end
    #putc "\n"
    
    @redis.del  "fscan:id:#{filename}", "fscan:trigramsOnFile:#{fid}", "fscan:id2filename:#{fid}"
    @redis.srem "fscan:processedFiles",  filename
  end
  return nil
end

#removeAllObject

Remove all the keys



410
411
412
413
414
415
416
417
418
419
# File 'lib/code_zauker.rb', line 410

def removeAll()
  tokill=[]
  tokill=@redis.keys("fscan:*")
  tokill.push(*(@redis.keys("trigram*")))      
  tokill.each do | x |
    @redis.del x
    #puts "Deleted #x"
  end
  @redis.del "fscan:processedFiles"
end

#search(term) ⇒ Object

search

Find a list of file candidates to a search string The search string is padded into trigrams

Starting from 0.0.9 is case insensitive and equal to isearch



397
398
399
# File 'lib/code_zauker.rb', line 397

def search(term)
  return self.isearch(term)
end

#wsearch(term) ⇒ Object

wild cards search

You can search trigram in the form public*class*Apple will match java declaration of MyApple but not YourAppManager



361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# File 'lib/code_zauker.rb', line 361

def wsearch(term)
  # Split stuff
  #puts "Wild Search request:#{term}"
  m=term.split("*")
  if m.length>0
    trigramInAnd=Set.new()
    #puts "*= Found:#{m.length}"
    m.each do | wtc |
      wt=wtc.downcase()
      #puts "Splitting  #{wt}"
      trigSet=split_in_trigrams(wt,"trigram:ci")
      trigramInAnd=trigramInAnd.merge(trigSet)
    end
    # puts "Trigrams: #{trigramInAnd.length}"
    # trigramInAnd.each do | x |
    #   puts "#{x}"
    # end
    if trigramInAnd.length==0
      return []
    end      
    fileIds=@redis.sinter(*trigramInAnd)
    fileNames=map_ids_to_files(fileIds)
    #puts "DEBUG #{fileIds} #{fileNames}"
    return fileNames     
  else
    puts "Warn no Wild!"
    return search(term)
  end
end