Method: Autoproj::Ops::Import#import_selected_packages
- Defined in:
- lib/autoproj/ops/import.rb
#import_selected_packages(selection, parallel: ws.config.parallel_import_level, recursive: true, retry_count: nil, keep_going: false, install_vcs_packages: Hash.new, non_imported_packages: :checkout, auto_exclude: auto_exclude?, , filter: ->(package) { true }, **import_options) ⇒ Object
Import all packages from the given selection, and their dependencies
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/autoproj/ops/import.rb', line 196 def import_selected_packages(selection, parallel: ws.config.parallel_import_level, recursive: true, retry_count: nil, keep_going: false, install_vcs_packages: Hash.new, non_imported_packages: :checkout, auto_exclude: auto_exclude?, filter: ->(package) { true }, **) unless %i[checkout ignore return].include?(non_imported_packages) raise ArgumentError, "invalid value for 'non_imported_packages'. "\ "Expected one of :checkout, :ignore or :return "\ "but got #{non_imported_packages}" end # This is used in the ensure block, initialize as early as # possible executor = Concurrent::FixedThreadPool.new(parallel) manifest = ws.manifest selected_packages = selection.each_source_package_name.map do |pkg_name| manifest.find_package_definition(pkg_name) end.to_set # The reverse dependencies for the package tree. It is discovered as # we go on with the import # # It only contains strong dependencies. Optional dependencies are # not included, as we will use this only to take into account # package exclusion (and that does not affect optional dependencies) reverse_dependencies = Hash.new { |h, k| h[k] = Set.new } completion_queue = Queue.new pending_packages = Set.new # The set of all packages that are currently selected by +selection+ all_processed_packages = Set.new main_thread_imports = Array.new package_queue = selected_packages.to_a.sort_by(&:name) failures = Array.new missing_vcs = Array.new installed_vcs_packages = Set["none", "local"] while failures.empty? || keep_going # Allow 'filter' to parallelize as well if filter.respond_to?(:lookahead) package_queue.each { |pkg| filter.lookahead(pkg) } end # Queue work for all packages in the queue package_queue.each do |pkg| # Remove packages that have already been processed next if all_processed_packages.include?(pkg) vcs_installed = installed_vcs_packages.include?(pkg.vcs.type) if (non_imported_packages != :checkout) && !pkg.checked_out? all_processed_packages << pkg if non_imported_packages == :return completion_queue << [pkg, Time.now, false, nil] else ws.manifest.ignore_package(pkg.name) end next elsif install_vcs_packages && !vcs_installed missing_vcs << pkg next end all_processed_packages << pkg unless filter.call(pkg) completion_queue << [pkg, Time.now] next end importer = pkg.autobuild.importer if !pre_package_import(selection, manifest, pkg.autobuild, reverse_dependencies) next elsif !importer # The validity of this is checked in # pre_package_import completion_queue << [pkg, Time.now, false, nil] next elsif importer.interactive? main_thread_imports << pkg next elsif pkg.checked_out? && [:checkout_only] main_thread_imports << pkg next end begin pending_packages << pkg queue_import_work( executor, completion_queue, pkg, retry_count: retry_count, **.merge(allow_interactive: false) ) rescue Exception pending_packages.delete(pkg) raise end end package_queue.clear if completion_queue.empty? && pending_packages.empty? unless missing_vcs.empty? installed_vcs_packages.merge( install_vcs_packages_for( *missing_vcs, install_only: [:checkout_only], **install_vcs_packages ) ) package_queue.concat(missing_vcs) missing_vcs.clear next end # We've nothing to process anymore ... process # interactive imports if there are some. Otherwise, # we're done if main_thread_imports.empty? break else main_thread_imports.delete_if do |pkg| begin if retry_count pkg.autobuild.importer.retry_count = retry_count end result = pkg.autobuild.import( **.merge(allow_interactive: true) ) rescue StandardError => e end completion_queue << [pkg, Time.now, result, e] end end end # And wait for one to finish pkg, _time, _result, reason = completion_queue.pop pending_packages.delete(pkg) if reason if reason.kind_of?(Autobuild::InteractionRequired) main_thread_imports << pkg elsif auto_exclude manifest.add_exclusion( pkg.name, "#{pkg.name} failed to import with "\ "#{reason} and auto_exclude was true" ) selection.filter_excluded_and_ignored_packages(manifest) else # One importer failed... terminate Autoproj.error "import of #{pkg.name} failed" Autoproj.error reason.to_s unless reason.kind_of?(Interrupt) failures << reason end else new_packages = post_package_import( selection, manifest, pkg, reverse_dependencies, auto_exclude: auto_exclude ) if new_packages # Excluded dependencies might have caused the package to be # excluded as well ... do not add any dependency to the # processing queue if it is the case if manifest.excluded?(pkg.name) selection.filter_excluded_and_ignored_packages(manifest) elsif recursive package_queue = new_packages.sort_by(&:name) end end end end all_processed_packages.delete_if do |processed_pkg| ws.manifest.excluded?(processed_pkg.name) || ws.manifest.ignored?(processed_pkg.name) end [all_processed_packages, failures] ensure if failures && !failures.empty? && !keep_going Autoproj.error "waiting for pending import jobs to finish" end if executor executor.shutdown executor.wait_for_termination end end |