gpt4 book ai didi

ruby-on-rails - 是否从父 rake 加载环境中为每个任务调用多个任务

转载 作者:太空宇宙 更新时间:2023-11-03 17:15:33 31 4
gpt4 key购买 nike

如果我有一个调用多个其他 rake 的 rake 。

一旦我启动父级抽成

rake myapp:main

然后在 rake 中完成的调用将为每个任务加载环境,或者在运行 rake myapp:main 时加载它的一次性事件?

namespace :myapp do
desc "Main Run"
task :main => :environment do
Rake::Task['myapp:task1'].invoke
Rake::Task['myapp:task2'].invoke
end

task :task1 => :environment do
# Does the first task
end

task :task2 => :environment do
# Does the second task
end
end

最佳答案

为@Shadwell 的回答添加详细信息..

=> :environment 指定 :environment 任务(由 Rails 定义)是您的任务的依赖项,必须在您的任务执行之前调用。

你可以在这里看到:environment任务的定义

https://github.com/rails/rails/blob/d70ba48c4dd6b57d8f38612ea95a3842337c1419/railties/lib/rails/application.rb#L428-432

Rake 跟踪调用了哪些任务,当它到达一个已经被调用的依赖时,它知道它可以跳过它。

https://github.com/jimweirich/rake/blob/5e59bccecaf480d1de565ab34fd15e54ff667660/lib/rake/task.rb#L195-204

# Invoke all the prerequisites of a task.
def invoke_prerequisites(task_args, invocation_chain) # :nodoc:
if application.options.always_multitask
invoke_prerequisites_concurrently(task_args, invocation_chain)
else
prerequisite_tasks.each { |p|
prereq_args = task_args.new_scope(p.arg_names)
p.invoke_with_call_chain(prereq_args, invocation_chain)
}
end
end

Rake 维护一个实例变量@already_invoked 以了解任务是否已经被调用。同样可以在下面的方法中看到

https://github.com/jimweirich/rake/blob/5e59bccecaf480d1de565ab34fd15e54ff667660/lib/rake/task.rb#L170-184

def invoke_with_call_chain(task_args, invocation_chain) # :nodoc:
new_chain = InvocationChain.append(self, invocation_chain)
@lock.synchronize do
if application.options.trace
application.trace "** Invoke #{name} #{format_trace_flags}"
end
return if @already_invoked
@already_invoked = true
invoke_prerequisites(task_args, new_chain)
execute(task_args) if needed?
end
rescue Exception => ex
add_chain_to(ex, new_chain)
raise ex
end

关于ruby-on-rails - 是否从父 rake 加载环境中为每个任务调用多个任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25280370/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com