# external gems require 'confstruct' require 'rsolr' require 'retries' require 'json' # sul-dlss gems require 'harvestdor' require 'stanford-mods' require 'dor-fetcher' # stdlib require 'logger' require "harvestdor-indexer/version" module Harvestdor # Base class to harvest from DOR via harvestdor gem and then index class Indexer attr_accessor :error_count, :success_count, :max_retries attr_accessor :total_time_to_parse,:total_time_to_solr attr_accessor :dor_fetcher_client, :client_config # Class level config variable @@config ||= Confstruct::Configuration.new() def initialize yml_path, client_config_path, options = {} @success_count=0 # the number of objects successfully indexed @error_count=0 # the number of objects that failed @max_retries=10 # the number of times to retry an object @total_time_to_solr=0 @total_time_to_parse=0 @yml_path = yml_path config.configure(YAML.load_file(yml_path)) if yml_path config.configure options yield(config) if block_given? @client_config = YAML.load_file(client_config_path) if client_config_path && File.exists?(client_config_path) @dor_fetcher_client=DorFetcher::Client.new({:service_url => client_config["dor_fetcher_service_url"]}) end # to allow class level access to config variables for record_merger and solr_doc_builder # (rather than passing a lot of params to constructor) def self.config @@config ||= Confstruct::Configuration.new() end def config Indexer.config end def logger @logger ||= load_logger(config.log_dir, config.log_name) end # per this Indexer's config options # harvest the druids via DorFetcher # create a Solr profiling document for each druid # write the result to the Solr index def harvest_and_index start_time=Time.now logger.info("Started harvest_and_index at #{start_time}") if whitelist.empty? druids.each { |druid| index druid } else whitelist.each { |druid| index druid } end solr_client.commit total_time=elapsed_time(start_time) total_objects=@success_count+@error_count logger.info("Finished harvest_and_index at #{Time.now}: final Solr commit returned") logger.info("Total elapsed time for harvest and index: #{(total_time/60.0).round(2)} minutes") logger.info("Avg solr commit time per object (successful): #{(@total_time_to_solr/@success_count).round(2)} seconds") unless (@total_time_to_solr == 0 || @success_count == 0) logger.info("Avg solr commit time per object (all): #{(@total_time_to_solr/total_objects).round(2)} seconds") unless (@total_time_to_solr == 0 || @error_count == 0 || total_objects == 0) logger.info("Avg parse time per object (successful): #{(@total_time_to_parse/@success_count).round(2)} seconds") unless (@total_time_to_parse == 0 || @success_count == 0) logger.info("Avg parse time per object (all): #{(@total_time_to_parse/total_objects).round(2)} seconds") unless (@total_time_to_parse == 0 || @error_count == 0 || total_objects == 0) logger.info("Avg complete index time per object (successful): #{(total_time/@success_count).round(2)} seconds") unless (@success_count == 0) logger.info("Avg complete index time per object (all): #{(total_time/total_objects).round(2)} seconds") unless (@error_count == 0 || total_objects == 0) logger.info("Successful count: #{@success_count}") logger.info("Error count: #{@error_count}") logger.info("Total records processed: #{total_objects}") end # return Array of druids contained in the DorFetcher pulling indicated by DorFetcher params # @return [Array] or enumeration over it, if block is given. (strings are druids, e.g. ab123cd1234) def druids if @druids.nil? start_time=Time.now logger.info("Starting DorFetcher pulling of druids at #{start_time}.") @druids = @dor_fetcher_client.druid_array(@dor_fetcher_client.get_collection(strip_default_set_string(), {})) logger.info("Completed DorFetcher pulling of druids at #{Time.now}. Found #{@druids.size} druids. Total elapsed time for DorFetcher pulling = #{elapsed_time(start_time,:minutes)} minutes") end return @druids end # Add the document to solr, retry if an error occurs. # See https://github.com/ooyala/retries for docs on with_retries. # @param [Hash] doc a Hash representation of the solr document # @param [String] id the id of the document being sent, for logging def solr_add(doc, id) max_tries=@max_retries ? @max_retries : 10 #if @max_retries isn't set, use 10 handler = Proc.new do |exception, attempt_number, total_delay| logger.debug "#{exception.class} on attempt #{attempt_number} for #{id}" # logger.debug exception.backtrace end with_retries(:max_tries => max_tries, :handler => handler, :base_sleep_seconds => 1, :max_sleep_seconds => 5) do |attempt| logger.debug "Attempt #{attempt} for #{id}" solr_client.add(doc) logger.info "Successfully indexed #{id} on attempt #{attempt}" end end # create Solr doc for the druid and add it to Solr, unless it is on the blacklist. # NOTE: don't forget to send commit to Solr, either once at end (already in harvest_and_index), or for each add, or ... def index druid if blacklist.include?(druid) logger.info("Druid #{druid} is on the blacklist and will have no Solr doc created") else logger.fatal("You must override the index method to transform druids into Solr docs and add them to Solr") begin start_time=Time.now logger.info("About to index #{druid} at #{start_time}") #logger.debug "About to index #{druid}" doc_hash = {} doc_hash[:id] = druid # doc_hash[:title_tsim] = smods_rec(druid).short_title # you might add things from Indexer level class here # (e.g. things that are the same across all documents in the harvest) solr_client.add(doc_hash) logger.info("Indexed #{druid} in #{elapsed_time(start_time)} seconds") @success_count+=1 # TODO: provide call to code to update DOR object's workflow datastream?? rescue => e @error_count+=1 logger.error "Failed to index #{druid} in #{elapsed_time(start_time)} seconds: #{e.message}" end end end # return the MODS for the druid as a Stanford::Mods::Record object # @param [String] druid e.g. ab123cd4567 # @return [Stanford::Mods::Record] created from the MODS xml for the druid def smods_rec druid start_time=Time.now ng_doc = harvestdor_client.mods druid logger.info("Fetched MODs for #{druid} in #{elapsed_time(start_time)} seconds") raise "Empty MODS metadata for #{druid}: #{ng_doc.to_xml}" if ng_doc.root.xpath('//text()').empty? mods_rec = Stanford::Mods::Record.new mods_rec.from_nk_node(ng_doc.root) mods_rec end # the public xml for this DOR object, from the purl page # @param [String] druid e.g. ab123cd4567 # @return [Nokogiri::XML::Document] the public xml for the DOR object def public_xml druid start_time=Time.now ng_doc = harvestdor_client.public_xml druid logger.info("Fetched public_xml for #{druid} in #{elapsed_time(start_time)} seconds") raise "No public xml for #{druid}" if !ng_doc raise "Empty public xml for #{druid}: #{ng_doc.to_xml}" if ng_doc.root.xpath('//text()').empty? ng_doc end # the contentMetadata for this DOR object, ultimately from the purl public xml # @param [Object] object a String containing a druid (e.g. ab123cd4567), or # a Nokogiri::XML::Document containing the public_xml for an object # @return [Nokogiri::XML::Document] the contentMetadata for the DOR object def content_metadata object start_time=Time.now ng_doc = harvestdor_client.content_metadata object logger.info("Fetched content_metadata in #{elapsed_time(start_time)} seconds") raise "No contentMetadata for #{object.inspect}" if !ng_doc || ng_doc.children.empty? ng_doc end # the identityMetadata for this DOR object, ultimately from the purl public xml # @param [Object] object a String containing a druid (e.g. ab123cd4567), or # a Nokogiri::XML::Document containing the public_xml for an object # @return [Nokogiri::XML::Document] the identityMetadata for the DOR object def identity_metadata object start_time=Time.now ng_doc = harvestdor_client.identity_metadata object logger.info("Fetched identity_metadata in #{elapsed_time(start_time)} seconds") raise "No identityMetadata for #{object.inspect}" if !ng_doc || ng_doc.children.empty? ng_doc end # the rightsMetadata for this DOR object, ultimately from the purl public xml # @param [Object] object a String containing a druid (e.g. ab123cd4567), or # a Nokogiri::XML::Document containing the public_xml for an object # @return [Nokogiri::XML::Document] the rightsMetadata for the DOR object def rights_metadata object start_time=Time.now ng_doc = harvestdor_client.rights_metadata object logger.info("Fetched rights_metadata in #{elapsed_time(start_time)} seconds") raise "No rightsMetadata for #{object.inspect}" if !ng_doc || ng_doc.children.empty? ng_doc end # the RDF for this DOR object, ultimately from the purl public xml # @param [Object] object a String containing a druid (e.g. ab123cd4567), or # a Nokogiri::XML::Document containing the public_xml for an object # @return [Nokogiri::XML::Document] the RDF for the DOR object def rdf object start_time=Time.now ng_doc = harvestdor_client.rdf object logger.info("Fetched rdf in #{elapsed_time(start_time)} seconds") raise "No RDF for #{object.inspect}" if !ng_doc || ng_doc.children.empty? ng_doc end def solr_client @solr_client ||= RSolr.connect(config.solr.to_hash) end # @return an Array of druids ('oo000oo0000') that should NOT be processed def blacklist # avoid trying to load the file multiple times if !@blacklist && !@loaded_blacklist @blacklist = load_blacklist(config.blacklist) if config.blacklist end @blacklist ||= [] end # @return an Array of druids ('oo000oo0000') that should be processed def whitelist # avoid trying to load the file multiple times if !@whitelist && !@loaded_whitelist @whitelist = load_whitelist(config.whitelist) if config.whitelist end @whitelist ||= [] end # Get only the druid from the end of the default_set string # from the yml file def strip_default_set_string() Indexer.config.default_set.split('_').last end protected #--------------------------------------------------------------------- def harvestdor_client @harvestdor_client ||= Harvestdor::Client.new({:config_yml_path => @yml_path}) end def elapsed_time(start_time,units=:seconds) elapsed_seconds=Time.now-start_time case units when :seconds return elapsed_seconds.round(2) when :minutes return (elapsed_seconds/60.0).round(1) when :hours return (elapsed_seconds/3600.0).round(2) else return elapsed_seconds end end # populate @blacklist as an Array of druids ('oo000oo0000') that will NOT be processed # by reading the File at the indicated path # @param [String] path - path of file containing a list of druids def load_blacklist path if path && !@loaded_blacklist @loaded_blacklist = true @blacklist = load_id_list path end end # populate @blacklist as an Array of druids ('oo000oo0000') that WILL be processed # (unless a druid is also on the blacklist) # by reading the File at the indicated path # @param [String] path - path of file containing a list of druids def load_whitelist path if path && !@loaded_whitelist @loaded_whitelist = true @whitelist = load_id_list path end end # return an Array of druids ('oo000oo0000') # populated by reading the File at the indicated path # @param [String] path - path of file containing a list of druids # @return [Array] an Array of druids def load_id_list path if path list = [] f = File.open(path).each_line { |line| list << line.gsub(/\s+/, '') if !line.gsub(/\s+/, '').empty? && !line.strip.start_with?('#') } list end rescue msg = "Unable to find list of druids at " + path logger.fatal msg raise msg end # Global, memoized, lazy initialized instance of a logger # @param [String] log_dir directory for to get log file # @param [String] log_name name of log file def load_logger(log_dir, log_name) Dir.mkdir(log_dir) unless File.directory?(log_dir) @logger ||= Logger.new(File.join(log_dir, log_name), 'daily') end end # Indexer class end # Harvestdor module