Probs with accessing variables in yaml file

R

Rebhan, Gilbert

Hi,

i have a script that is configured via yaml file :

---script-----------

require 'yaml'=20
require 'highline/import'
require 'win32/registry'

config=3DYAML.load_file("cvs_login.yaml")

[ ... ]

def filesed!(pattern, replaceString, filename)
regexPattern =3D Regexp.compile(pattern)
tmpFilename =3D "#{filename}.#{Time.now.usec}"
tmpFile =3D File.new(tmpFilename, "w")
srcFile =3D File.open(filename)
srcFile.each_line do |line|
tmpFile.print line.gsub(regexPattern) {|match|
replaceString
}
end
tmpFile.close
srcFile .close
File.rename(tmpFilename, filename)
end

if config['targetdirs']

Win32::Registry::HKEY_CURRENT_USER.open('Software\Cvsnt\cvspass') do
|reg|
@cvsreg =3D
reg[":pserver:#{ENV["USERNAME"]}@cvsprod:d:/cvsrepos/test"]
end

config['targetdirs'].each do |dir|
Dir.chdir(dir)
puts "\n\n"
Dir.glob(config['targetfilepattern']).each do |file|
puts "... processing "<<File.expand_path("#{file}")
puts 'bla'<<@cvsreg
puts 'replaceto =3D=3D '<<config['replaceto']
=20
#filesed!("<Passwort>.*<\/Passwort>","<Passwort><![CDATA[@cvsreg]]><\/Pa
sswort>","#{file}")
filesed!(config['replacefrom'],config['replaceto'],"#{file}")
end
end
puts "\n\nDone !!"
sleep 1
else
puts "\n\nDone !!"
sleep 1
end

---script-----------

--yaml-------------

cvs_login.yaml looks like =3D

targetdirs:
- Y:/tempwork

targetfilepattern: "Scm*.xml"

replacefrom: "<Passwort>.*<\/Passwort>"
replaceto: "<Passwort><![CDATA[#{@cvsreg}]><\/Passwort>"

--yaml--------------

Question =3D

If i write :
puts 'replaceto =3D=3D '<<"<Passwort><![CDATA[#{@cvsreg}]]><\/Passwort>"
direct into the script it's echoed correct, but it doesn't work via yaml
file;
when running via yaml the line in my xml file get's replaced to =3D

<Passwort><![CDATA[#{@cvsreg}]><\/Passwort>


Where's the failure ??


Regards, Gilbert
 
R

Rebhan, Gilbert

=20

Hi,

don't know if there's another | better way, but
i solved it like that =3D

yaml has now =3D

replaceto1: "<Passwort><![CDATA["
replaceto2: "]></Passwort>"


and my script has =3D

s=3Dconfig['replaceto1']<<"#{@cvsreg}"<<config['replaceto2']
[...]
filesed!(config['replacefrom'],s,"#{file}")
=20


Gilbert
 
J

Jano Svitok

Hi,

don't know if there's another | better way, but
i solved it like that =

yaml has now =

replaceto1: "<Passwort><![CDATA["
replaceto2: "]></Passwort>"


and my script has =

s=config['replaceto1']<<"#{@cvsreg}"<<config['replaceto2']
[...]
filesed!(config['replacefrom'],s,"#{file}")

Hi,

the #{} are evaluated when the string is instantiated, i.e. in normal
case when the line containing the literal (note: the LITERAL) is
evaluated. When you load the string from yaml, these #{} are not
evaluated at all.

What you might want to do is to add quotes around and call eval --
e.g. config['replaceto'] = eval("\"#{config['replaceto']}\""), with
all the dangerous implications of eval. (Note the double use of #{}...
once it is evaluated as the line is parsed to create another literal
that is then passed to eval to expand again. I could have avoided the
outer expansion by using "\"" + config[...] + "\"", but I guess this
one's faster), and it's shorter in any case.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,570
Members
45,045
Latest member
DRCM

Latest Threads

Top