iqdb changes

This commit is contained in:
r888888888
2014-03-24 14:38:06 -07:00
parent 6713673237
commit 1c2aed92d7
5 changed files with 78 additions and 31 deletions

View File

@@ -0,0 +1,29 @@
module Iqdb
class Command
attr_reader :database
def initialize(database)
@database = database
end
def process(&block)
IO.popen("iqdb #{database}", "w", &block)
end
def add(post)
hex = post.id.to_s(16)
process do |io|
io.puts "add 0 #{hex} :#{post.preview_file_path}"
io.puts "quit"
end
end
def remove(post_id)
hex = post_id.to_s(16)
process do |io|
io.puts "remove 0 #{hex}"
io.puts "quit"
end
end
end
end

View File

@@ -5,26 +5,7 @@ module Iqdb
FLAG_WIDTH_AS_SET = 0x08
FLAG_DISCARD_COMMON_COEFFS = 0x16
attr_reader :hostname, :port
def self.import(database)
IO.popen("iqdb #{database}", "w") do |io|
Post.find_each do |post|
puts "Adding #{post.id}"
io.puts "#{post.id.to_s(16)} :#{post.preview_file_path}"
end
end
end
def self.add(database, image_id, filename)
image_id_hex = image_id.to_s(16)
`iqdb add #{database} #{image_id_hex} :#{filename}`
end
def self.remove(database, image_id)
image_id_hex = image_id.to_s(16)
`iqdb remove 0 #{image_id_hex} #{database}`
end
attr_reader :hostname, :port, :socket
def initialize(hostname, port)
@hostname = hostname
@@ -36,7 +17,7 @@ module Iqdb
end
def close
@socket.close
socket.close
end
def request
@@ -46,9 +27,23 @@ module Iqdb
close
end
def query(dbid, results, filename, flags = FLAG_DISCARD_COMMON_COEFFS)
def add(post)
request do
@socket.puts "query #{dbid} #{flags} #{results} #{filename}"
hex = post.id.to_s(16)
socket.puts "add 0 #{hex} :#{post.preview_file_path}"
end
end
def remove(post_id)
request do
hext = post_id.to_s(16)
socket.puts "remove 0 #{hex}"
end
end
def query(results, filename, flags = FLAG_DISCARD_COMMON_COEFFS)
request do
socket.puts "query 0 #{flags} #{results} #{filename}"
responses = Responses::Collection.new(@socket.read)
end
end