1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
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
|
# frozen_string_literal: true
require 'digest'
require 'erb'
require 'fileutils'
require 'open3'
require 'shellwords'
require 'tempfile'
require_relative 'resource'
require_relative '../chained'
require_relative 'file_backup'
module RCM
# Base class shared by all file-system resources (files, symlinks,
# touch, directories). Manages path, state (:present/:absent/:purged),
# permissions (mode/owner/group), and parent-directory lifecycle.
# Does NOT include content/templating — those belong in BaseFile so
# Touch and Directory (which have no file content) don't inherit them.
class BasicFile < Resource
include Chained
include FileBackup
# Raised by validate when an unsupported DSL option is used.
# Defined here so BasicFile#validate can raise it even when the
# concrete class does not extend BaseFile.
class UnsupportedOperation < StandardError; end
def initialize(file_path)
super(file_path)
@file_path = file_path
@is = :present
end
def is(what) = @is = validate(__method__, what.to_sym, :present, :absent, :purged)
def manage(what) = @manage_directory = validate(__method__, what.to_sym, :directory) == :directory
def path(file_path = nil) = file_path.nil? ? @file_path : @file_path = file_path
def without(what) = @without_backup = validate(__method__, what.to_sym, :backup) == :backup
def mode(what) = @mode = what
def owner(what) = @owner = what
def group(what) = @group = what
def evaluate!
unless super
@mode = nil
return false
end
true
end
protected
def permissions!(file_path = path)
return unless ::File.exist?(file_path)
stat = ::File.stat(file_path)
set_mode!(stat)
set_owner!(stat)
end
# Reject DSL options that are not valid for this resource type.
def validate(method, what, *valids)
return what if valids.include?(what)
raise UnsupportedOperation,
"Unsupported '#{method}' operation #{what} (#{what.class})"
end
# Delete the resource and optionally remove orphaned parent directories.
# Used by File, Symlink, and Touch; Directory overrides this.
def evaluate_absent!
if ::File.exist?(@file_path)
do? "Deleting #{@file_path}" do
backup!(@file_path)
::File.delete(@file_path) if ::File.file?(@file_path)
end
end
cleanup_parent_directory! if @manage_directory
end
def create_parent_directory!
dirname = ::File.dirname(@file_path)
return if ::File.directory?(dirname)
do? "Creating parent directory #{dirname}" do
FileUtils.mkdir_p(dirname)
end
end
def cleanup_parent_directory!
parent_dir = ::File.dirname(@file_path)
while Dir.empty?(parent_dir)
do? "Deleting empty parent directory #{parent_dir}" do
Dir.rmdir(parent_dir)
end
parent_dir = ::File.dirname(parent_dir)
end
end
private
def set_mode!(stat, file_path = path)
return if @mode.nil?
current_mode = stat.mode.to_s(8).split('')[-4..].join.to_i(8)
return if current_mode == @mode
do? "Changing mode of #{file_path} to #{@mode}" do
FileUtils.chmod(@mode, file_path)
end
end
# rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
def set_owner!(stat, file_path = path)
return if @owner.nil? && @group.nil?
current_owner = Etc.getpwuid(stat.uid)
current_group = Etc.getgrgid(stat.gid)
return if (@owner.nil? || @owner == current_owner) && (@group.nil? || @group == current_group)
do? "Changing owner of #{file_path} to #{@owner || ''}:#{@group || ''}" do
FileUtils.chown(@owner, @group, file_path)
end
end
# rubocop:enable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
end
# Intermediate base for resources that carry file content: regular files
# and symlinks. Adds content storage with optional ERB templating or
# sourcefile reading. Touch and Directory extend BasicFile directly so
# they are not burdened with content/from (ISP).
class BaseFile < BasicFile
def from(what) = @from = validate(__method__, what.to_sym, :sourcefile, :template)
# Return or set the resource's content.
# Getter: resolves ERB templates or reads sourcefile on demand.
# Setter: stores plain text or joins an array with newlines.
def content(text = nil)
if text.nil?
text = @from == :sourcefile ? ::File.read(@content) : @content
return @from == :template ? ERB.new(text).result : text
end
@content = text.instance_of?(Array) ? text.join("\n") : text
end
end
# Manages regular files: write content, ensure/remove individual lines,
# delete. Writes via a temp file so the final rename is atomic.
# rubocop:disable Metrics/ClassLength
class File < BaseFile
class AgentCommandFailed < StandardError; end
class InvalidAgentSpec < StandardError; end
class MissingAgentInput < StandardError; end
attr_reader :agent_name, :prompt_name
def agent(spec = nil, prompt_name = nil)
agent_name, prompt_name = resolved_agent_spec(spec, prompt_name)
if agent_name.nil? || prompt_name.nil?
raise InvalidAgentSpec, 'Expected exactly one agent name and one prompt name'
end
@agent_name = agent_name
@prompt_name = prompt_name
end
def agent_processing? = !@agent_name.nil?
def line(line) = @ensure_line = line
def evaluate!
return unless super
return evaluate_ensure_line! unless @ensure_line.nil?
return evaluate_absent! if %i[absent purged].include?(@is)
return evaluate_agent_processing! if agent_processing?
create_parent_directory! if @manage_directory
write!(content)
ensure
permissions!
end
private
def evaluate_ensure_line!
return evaluate_ensure_line_absent! if %i[absent].include?(@is)
return write!(@ensure_line) unless ::File.file?(@file_path)
return if ::File.readlines(@file_path, chomp: true).include?(@ensure_line)
do? "Appending line #{@ensure_line} to #{@file_path}" do
::File.open(@file_path, 'a') do |fd|
fd.puts(@ensure_line)
end
end
end
def evaluate_ensure_line_absent!
return unless ::File.file?(@file_path)
lines = ::File.readlines(@file_path, chomp: true)
return unless lines.include?(@ensure_line)
do? "Removing line #{@ensure_line} from #{@file_path}" do
write!(lines.reject { |line| line == @ensure_line }.join("\n"))
end
end
def normalize_agent_reference(name)
normalized = name&.to_s&.strip
return if normalized.nil? || normalized.empty?
normalized.gsub(/\s+/, ' ')
end
def resolved_agent_spec(spec, prompt_name)
agent_name = normalize_agent_reference(spec)
prompt_name = normalize_agent_reference(prompt_name)
candidates = resolved_agent_candidates(agent_name, prompt_name)
return candidates.first if candidates.one?
raise InvalidAgentSpec, 'Ambiguous agent specification' if candidates.length > 1
return [agent_name, prompt_name] unless prompt_name.nil?
return [agent_name, nil] unless agent_name&.include?(' ')
agent_name.split(/\s+/, 2)
end
def resolved_agent_candidates(agent_name, prompt_name)
phrase = [agent_name, prompt_name].compact.join(' ')
parts = phrase.split(/\s+/)
return [] if parts.length < 2
(1...parts.length).filter_map do |index|
candidate_agent_name = parts[0...index].join(' ')
candidate_prompt_name = parts[index..].join(' ')
next unless definition_registered?(AgentDefinition, candidate_agent_name)
next unless definition_registered?(PromptDefinition, candidate_prompt_name)
[candidate_agent_name, candidate_prompt_name]
end
end
def definition_registered?(klass, name)
dsl.class.object(klass.id_for(name))
rescue klass::InvalidName
false
end
def evaluate_agent_processing!
raise MissingAgentInput, "File #{@file_path} does not exist for agent processing" unless ::File.file?(@file_path)
agent_definition, prompt_definition = agent_configuration!
if option :dry
info "Processing #{@file_path} with agent #{@agent_name} and prompt #{@prompt_name} - dry run!"
return
end
input = ::File.read(@file_path)
output = run_agent!(input, agent_definition, prompt_definition)
create_parent_directory! unless ::File.directory?(::File.dirname(@file_path))
write!(output)
end
# rubocop:disable Metrics/MethodLength
def write!(text)
# In dry-run mode skip all filesystem access and just report what would
# happen — the parent directory may not exist yet so we cannot write the
# temporary file at all.
if option :dry
info "Writing file #{@file_path} - dry run!"
return
end
tmp_path = "#{@file_path}.rcmtmp"
::File.write(tmp_path, text)
if ::File.file?(@file_path)
different, checksum, = different?(@file_path, tmp_path)
unless different
::File.delete(tmp_path) # File has not changed, not doing anything
return
end
backup!(@file_path, checksum) # File changed, backup!
end
info "Writing file #{@file_path}"
::File.rename(tmp_path, @file_path)
::File.delete(tmp_path) if ::File.file?(tmp_path)
end
# rubocop:enable Metrics/MethodLength
# rubocop:disable Metrics/AbcSize, Metrics/MethodLength
def run_agent!(input, agent_definition, prompt_definition)
Tempfile.create(['rcm-agent-input', '.txt']) do |tmp|
tmp.write(input)
tmp.flush
tmp.close
command = render_agent_command(agent_definition.command.to_s, prompt_definition.text.to_s, tmp.path)
info "Processing #{@file_path} with agent #{@agent_name} and prompt #{@prompt_name}"
stdout, stderr, status = Open3.capture3(command, stdin_data: input)
return stdout if status.success?
message = stderr.to_s.strip
message = 'no stderr output' if message.empty?
raise AgentCommandFailed,
"Agent #{@agent_name} failed for #{@file_path} (exit #{status.exitstatus}): #{message}"
end
end
# rubocop:enable Metrics/AbcSize, Metrics/MethodLength
def agent_configuration!
[
dsl.object!(AgentDefinition, @agent_name, error_class: DSL::NoSuchAgentDefinition, kind: 'agent'),
dsl.object!(PromptDefinition, @prompt_name, error_class: DSL::NoSuchPromptDefinition, kind: 'prompt')
]
end
def render_agent_command(template, prompt_text, input_path)
command = template.dup
command.gsub!(/\bINPUT\b/, Shellwords.escape(input_path))
command.gsub!(/\bPROMPT\b/, Shellwords.escape(prompt_text))
command.gsub!(/\bFILE_PATH\b/, Shellwords.escape(@file_path))
command
end
end
# rubocop:enable Metrics/ClassLength
# Adds the `file` resource keyword to the DSL.
class DSL
def file(file_path = nil, &block)
register_keyword(File, :file, file_path) do |f|
next unless block
result = f.instance_eval(&block)
f.content(result) unless f.agent_processing? || result.nil?
end
end
end
end
|