module Nanoc::RuleDSL class ActionProvider < Nanoc::Int::ActionProvider identifier :rule_dsl # @api private attr_reader :rules_collection def self.for(site) rules_collection = Nanoc::RuleDSL::RulesCollection.new rule_memory_calculator = Nanoc::RuleDSL::RuleMemoryCalculator.new( rules_collection: rules_collection, site: site, ) action_provider = new(rules_collection, rule_memory_calculator) Nanoc::RuleDSL::RulesLoader.new(site.config, rules_collection).load action_provider end def initialize(rules_collection, rule_memory_calculator) @rules_collection = rules_collection @rule_memory_calculator = rule_memory_calculator end def rep_names_for(item) matching_rules = @rules_collection.item_compilation_rules_for(item) raise Nanoc::Int::Errors::NoMatchingCompilationRuleFound.new(item) if matching_rules.empty? matching_rules.map(&:rep_name).uniq end def memory_for(rep) @rule_memory_calculator[rep] end def snapshots_defs_for(rep) @rule_memory_calculator.snapshots_defs_for(rep) end def paths_for(rep) @rule_memory_calculator.paths_for_rep(rep) end def preprocess(site) ctx = new_preprocessor_context(site) @rules_collection.preprocessors.each_value do |preprocessor| ctx.instance_eval(&preprocessor) end end def postprocess(site, reps) dependency_tracker = Nanoc::Int::DependencyTracker::Null.new view_context = Nanoc::ViewContext.new( reps: reps, items: site.items, dependency_tracker: dependency_tracker, compiler: site.compiler, ) ctx = new_postprocessor_context(site, view_context) @rules_collection.postprocessors.each_value do |postprocessor| ctx.instance_eval(&postprocessor) end end # @api private def new_preprocessor_context(site) dependency_tracker = Nanoc::Int::DependencyTracker::Null.new view_context = Nanoc::ViewContext.new( reps: nil, items: nil, dependency_tracker: dependency_tracker, compiler: nil, ) Nanoc::Int::Context.new( config: Nanoc::MutableConfigView.new(site.config, view_context), items: Nanoc::MutableItemCollectionView.new(site.items, view_context), layouts: Nanoc::MutableLayoutCollectionView.new(site.layouts, view_context), ) end # @api private def new_postprocessor_context(site, view_context) Nanoc::Int::Context.new( config: Nanoc::ConfigView.new(site.config, view_context), items: Nanoc::PostCompileItemCollectionView.new(site.items, view_context), ) end end end