class FilePathUtils

Constants

GLOB_MATCHER

Public Class Methods

add_path?(path) click to toggle source

return whether the given path is to be aggregated (no aggregation modifier defaults to same as +:)

# File lib/ceedling/file_path_utils.rb, line 60
def self.add_path?(path)
  return (path =~ /^-:/).nil?
end
extract_path(path) click to toggle source

extract directory path from between optional add/subtract aggregation modifiers and up to glob specifiers note: slightly different than File.dirname in that /files/foo remains /files/foo and does not become /files

# File lib/ceedling/file_path_utils.rb, line 39
def self.extract_path(path)
  path = path.sub(/^(\+|-):/, '')

  # find first occurrence of path separator followed by directory glob specifier: *, ?, {, }, [, ]
  find_index = (path =~ GLOB_MATCHER)

  # no changes needed (lop off final path separator)
  return path.chomp('/') if (find_index.nil?)

  # extract up to first glob specifier
  path = path[0..(find_index-1)]

  # lop off everything up to and including final path separator
  find_index = path.rindex('/')
  return path[0..(find_index-1)] if (not find_index.nil?)

  # return string up to first glob specifier if no path separator found
  return path
end
extract_path_no_aggregation_operators(path) click to toggle source

get path (and glob) lopping off optional +: / -: prefixed aggregation modifiers

# File lib/ceedling/file_path_utils.rb, line 65
def self.extract_path_no_aggregation_operators(path)
  return path.sub(/^(\+|-):/, '')
end
os_executable_ext(executable) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 32
def self.os_executable_ext(executable)
  return executable.ext('.exe') if SystemWrapper.windows?
  return executable
end
reform_glob(path) click to toggle source

all the globs that may be in a path string work fine with one exception; to recurse through all subdirectories, the glob is dir// but our paths use convention of only dir/**

# File lib/ceedling/file_path_utils.rb, line 72
def self.reform_glob(path)
  return path if (path =~ /\/\*\*$/).nil?
  return path + '/**'
end
standardize(path) click to toggle source

standardize path to use '/' path separator & have no trailing path separator

# File lib/ceedling/file_path_utils.rb, line 23
def self.standardize(path)
  if path.is_a? String
    path.strip!
    path.gsub!(/\\/, '/')
    path.chomp!('/')
  end
  return path
end

Public Instance Methods

form_fail_results_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 129
def form_fail_results_filepath(filepath)
  return File.join( @configurator.project_test_results_path, File.basename(filepath).ext(@configurator.extension_testfail) )
end
form_mocks_source_filelist(mocks) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 186
def form_mocks_source_filelist(mocks)
  list = (@file_wrapper.instantiate_file_list(mocks))
  sources = list.map{|file| "#{@configurator.cmock_mock_path}/#{file}#{@configurator.extension_source}"}
  return sources
end
form_pass_results_filelist(path, files) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 197
def form_pass_results_filelist(path, files)
  list = @file_wrapper.instantiate_file_list(files)
  return list.pathmap("#{path}/%n#{@configurator.extension_testpass}")
end
form_pass_results_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 125
def form_pass_results_filepath(filepath)
  return File.join( @configurator.project_test_results_path, File.basename(filepath).ext(@configurator.extension_testpass) )
end
form_preprocessed_file_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 165
def form_preprocessed_file_filepath(filepath)
  return File.join( @configurator.project_test_preprocess_files_path, File.basename(filepath) )
end
form_preprocessed_includes_list_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 169
def form_preprocessed_includes_list_filepath(filepath)
  return File.join( @configurator.project_test_preprocess_includes_path, File.basename(filepath) )
end
form_preprocessed_mockable_headers_filelist(mocks) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 177
def form_preprocessed_mockable_headers_filelist(mocks)
  list = @file_wrapper.instantiate_file_list(mocks)
  headers = list.map do |file|
    module_name = File.basename(file).sub(/^#{@configurator.cmock_mock_prefix}/, '').sub(/\.[a-zA-Z]+$/,'')
    "#{@configurator.project_test_preprocess_files_path}/#{module_name}#{@configurator.extension_header}"
  end
  return headers
end
form_release_build_asm_object_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 96
def form_release_build_asm_object_filepath(filepath)
  return File.join( @configurator.project_release_build_output_asm_path, File.basename(filepath).ext(@configurator.extension_object) )
end
form_release_build_asm_objects_filelist(files) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 104
def form_release_build_asm_objects_filelist(files)
  return (@file_wrapper.instantiate_file_list(files)).pathmap("#{@configurator.project_release_build_output_asm_path}/%n#{@configurator.extension_object}")
end
form_release_build_c_list_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 108
def form_release_build_c_list_filepath(filepath)
  return File.join( @configurator.project_release_build_output_c_path, File.basename(filepath).ext(@configurator.extension_list) )
end
form_release_build_c_object_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 92
def form_release_build_c_object_filepath(filepath)
  return File.join( @configurator.project_release_build_output_c_path, File.basename(filepath).ext(@configurator.extension_object) )
end
form_release_build_c_objects_filelist(files) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 100
def form_release_build_c_objects_filelist(files)
  return (@file_wrapper.instantiate_file_list(files)).pathmap("#{@configurator.project_release_build_output_c_path}/%n#{@configurator.extension_object}")
end
form_release_build_cache_path(filepath) click to toggle source

release ###

# File lib/ceedling/file_path_utils.rb, line 84
def form_release_build_cache_path(filepath)
  return File.join( @configurator.project_release_build_cache_path, File.basename(filepath) )
end
form_release_dependencies_filelist(files) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 112
def form_release_dependencies_filelist(files)
  return (@file_wrapper.instantiate_file_list(files)).pathmap("#{@configurator.project_release_dependencies_path}/%n#{@configurator.extension_dependencies}")
end
form_release_dependencies_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 88
def form_release_dependencies_filepath(filepath)
  return File.join( @configurator.project_release_dependencies_path, File.basename(filepath).ext(@configurator.extension_dependencies) )
end
form_runner_filepath_from_test(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 133
def form_runner_filepath_from_test(filepath)
  return File.join( @configurator.project_test_runners_path, File.basename(filepath, @configurator.extension_source)) + @configurator.test_runner_file_suffix + @configurator.extension_source
end
form_runner_object_filepath_from_test(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 141
def form_runner_object_filepath_from_test(filepath)
  return (form_test_build_c_object_filepath(filepath)).sub(/(#{@configurator.extension_object})$/, "#{@configurator.test_runner_file_suffix}\\1")
end
form_temp_path(filepath, prefix='') click to toggle source

instance methods ##########

# File lib/ceedling/file_path_utils.rb, line 79
def form_temp_path(filepath, prefix='')
  return File.join( @configurator.project_temp_path, prefix + File.basename(filepath) )
end
form_test_build_asm_object_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 149
def form_test_build_asm_object_filepath(filepath)
  return File.join( @configurator.project_test_build_output_asm_path, File.basename(filepath).ext(@configurator.extension_object) )
end
form_test_build_c_object_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 145
def form_test_build_c_object_filepath(filepath)
  return File.join( @configurator.project_test_build_output_c_path, File.basename(filepath).ext(@configurator.extension_object) )
end
form_test_build_cache_path(filepath) click to toggle source

tests ###

# File lib/ceedling/file_path_utils.rb, line 117
def form_test_build_cache_path(filepath)
  return File.join( @configurator.project_test_build_cache_path, File.basename(filepath) )
end
form_test_build_list_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 161
def form_test_build_list_filepath(filepath)
  return File.join( @configurator.project_test_build_output_path, File.basename(filepath).ext(@configurator.extension_list) )
end
form_test_build_map_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 157
def form_test_build_map_filepath(filepath)
  return File.join( @configurator.project_test_build_output_path, File.basename(filepath).ext(@configurator.extension_map) )
end
form_test_build_objects_filelist(sources) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 173
def form_test_build_objects_filelist(sources)
  return (@file_wrapper.instantiate_file_list(sources)).pathmap("#{@configurator.project_test_build_output_c_path}/%n#{@configurator.extension_object}")
end
form_test_dependencies_filelist(files) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 192
def form_test_dependencies_filelist(files)
  list = @file_wrapper.instantiate_file_list(files)
  return list.pathmap("#{@configurator.project_test_dependencies_path}/%n#{@configurator.extension_dependencies}")
end
form_test_dependencies_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 121
def form_test_dependencies_filepath(filepath)
  return File.join( @configurator.project_test_dependencies_path, File.basename(filepath).ext(@configurator.extension_dependencies) )
end
form_test_executable_filepath(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 153
def form_test_executable_filepath(filepath)
  return File.join( @configurator.project_test_build_output_path, File.basename(filepath).ext(@configurator.extension_executable) )
end
form_test_filepath_from_runner(filepath) click to toggle source
# File lib/ceedling/file_path_utils.rb, line 137
def form_test_filepath_from_runner(filepath)
  return filepath.sub(/#{TEST_RUNNER_FILE_SUFFIX}/, '')
end