Sha256: 0750804e798c19c37d33cbb0d7ee21510209f2fc47c4a12b9ff23b8b14797fc1

Contents?: true

Size: 1.32 KB

Versions: 14

Compression:

Stored size: 1.32 KB

Contents

require "rubygems"
require "rake"
require "mkmf"

desc "Building event log dll"

def ensure_present(commands)
  commands.each do |c|
    unless find_executable c
      warn "Could not find #{c}. Windows Event Logging will not correctly function."
    end
  end
end

EVT_MC_FILE = "chef-log.man".freeze
EVT_RC_FILE = "chef-log.rc".freeze
EVT_RESOURCE_OBJECT = "resource.o".freeze
EVT_SHARED_OBJECT = "chef-log.dll".freeze
MC = "windmc".freeze
RC = "windres".freeze
CC = "gcc".freeze

ensure_present [MC, RC, CC]

task build: [EVT_RESOURCE_OBJECT, EVT_SHARED_OBJECT]
task default: [:build, :register]

file EVT_RC_FILE => EVT_MC_FILE do
  sh "#{MC} #{EVT_MC_FILE}"
end

file EVT_RESOURCE_OBJECT => EVT_RC_FILE do
  sh "#{RC} -i #{EVT_RC_FILE} -o #{EVT_RESOURCE_OBJECT}"
end

file EVT_SHARED_OBJECT => EVT_RESOURCE_OBJECT do
  sh "#{CC} -o #{EVT_SHARED_OBJECT} -shared #{EVT_RESOURCE_OBJECT}"
end

task register: EVT_SHARED_OBJECT do
  require "win32/eventlog"
  dll_file = File.expand_path(EVT_SHARED_OBJECT)
  begin
    Win32::EventLog.add_event_source(
      source: "Application",
      key_name: "Chef",
      event_message_file: dll_file,
      category_message_file: dll_file
    )
  rescue Errno::EIO => e
    puts "Skipping event log registration due to missing privileges: #{e}"
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
chef-14.13.11-universal-mingw32 ext/win32-eventlog/Rakefile
chef-15.0.300-universal-mingw32 ext/win32-eventlog/Rakefile
chef-15.0.298-universal-mingw32 ext/win32-eventlog/Rakefile
chef-15.0.293-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.12.9-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.12.3-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.11.21-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.10.9-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.9.13-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.8.12-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.7.17-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.6.47-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.5.33-universal-mingw32 ext/win32-eventlog/Rakefile
chef-14.3.37-universal-mingw32 ext/win32-eventlog/Rakefile