lib/between_meals/changeset.rb (39 lines of code) (raw):

# vim: syntax=ruby:expandtab:shiftwidth=2:softtabstop=2:tabstop=2 # Copyright 2013-present Facebook # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'between_meals/changes/change' require 'between_meals/changes/cookbook' require 'between_meals/changes/role' require 'between_meals/changes/databag' module BetweenMeals # Convenience for dealing with changes # Represents a list of diffs between two revisions # as a series of Cookbook and Role objects # # Basically, you always want to use BetweenMeals::Changes through this # helper class. class Changeset class ReferenceError < RuntimeError end # rubocop:disable Metrics/ParameterLists def initialize( logger, repo, start_ref, end_ref, locations, track_symlinks = false ) # rubocop:enable Metrics/ParameterLists @logger = logger @repo = repo @cookbook_dirs = locations[:cookbook_dirs].dup @role_dir = locations[:role_dir] @databag_dir = locations[:databag_dir] @track_symlinks = track_symlinks # Figure out which files changed if refs provided # or return all files (full upload) otherwise if start_ref @files = [] @repo.changes(start_ref, end_ref).each do |file| @files << file end else @files = @repo.files end end def cookbooks BetweenMeals::Changes::Cookbook.find( @files, @cookbook_dirs, @logger, @repo, @track_symlinks ) end def roles BetweenMeals::Changes::Role.find(@files, @role_dir, @logger) end def databags BetweenMeals::Changes::Databag.find(@files, @databag_dir, @logger) end end end