Add ability to specify number of threads

This commit is contained in:
Omar Roth 2018-02-03 16:13:14 -06:00
parent 1e2139d78c
commit 03aeb27b40
1 changed files with 20 additions and 1 deletions

View File

@ -15,10 +15,29 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
require "kemal"
require "option_parser"
require "pg"
require "xml"
require "./helpers"
threads = 10
OptionParser.parse! do |parser|
parser.banner = "Usage: invidious [arguments]"
parser.on("-t THREADS", "--threads=THREADS", "Number of threads for crawling") do |number|
begin
threads = number.to_i32
rescue ex
puts "THREADS must be integer"
exit
end
end
parser.on("-h", "--help", "Show this help") do
puts parser
exit
end
end
PG_DB = DB.open "postgres://kemal:kemal@localhost:5432/invidious"
URL = URI.parse("https://www.youtube.com")
CONTEXT = OpenSSL::SSL::Context::Client.new
@ -36,7 +55,7 @@ POOL = Deque.new(30) do
end
# Refresh pool by crawling YT
10.times do
threads.times do
spawn do
io = STDOUT
ids = Deque(String).new