newLISP Fan Club

Forum => newLISP in the real world => Topic started by: csfreebird on March 05, 2013, 12:57:39 AM

Title: How to edit this file using newlisp file APIs
Post by: csfreebird on March 05, 2013, 12:57:39 AM
Hello

  I want to edit my script file, fill in correct value for CLOUD_ENGINE_HOME variable. Its value is empty at first.

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
CLOUD_ENGINE_HOME=
DAEMON=$CLOUD_ENGINE_HOME/nginx/bin/nginx


Then I excute my newlisp codes as follows:

> (set 'file (open "/etc/init.d/nginx" "update"))
3
> (search file "CLOUD_ENGINE_HOME=" true)
442
> (write file "/opt/cloud_engine_homen")
23
> (close file)
true


My files was modified, but it deleted some characters of third line:

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
CLOUD_ENGINE_HOME=/opt/cloud_engine_home
OME/nginx/bin/nginx

DAEMON=$CLOUD_ENGINE_HOME/nginx/bin/nginx

was changed into

OME/nginx/bin/nginx



What mistake did I make?
Title: Re: How to edit this file using newlisp file APIs
Post by: cormullion on March 05, 2013, 04:07:52 AM
Not sure that write inserts characters... Perhaps it just overwrites...
Title: Re: How to edit this file using newlisp file APIs
Post by: saulgoode on March 05, 2013, 04:30:33 AM
You are overwriting the characters that follow "CLOUD_ENGINE_HOME=".



You may have to split your file into lines and then replace the entire line.



For example (note: I do not do much Newlisp coding so there is probably a better way):
#!/usr/bin/newlisp
(set 'filename (main-args 2))
(set 'entire-file (read-file filename))
(set 'lines (parse entire-file "n"))
(replace "CLOUD_ENGINE_HOME=" lines "CLOUD_ENGINE_HOME=/opt/cloud_engine_home")
(device (open filename "write"))
(while lines
  (println (pop lines)) )
(close (device))
(exit)
Title: Re: How to edit this file using newlisp file APIs
Post by: csfreebird on March 05, 2013, 04:33:22 AM
Quote from: "cormullion"Not sure that write inserts characters... Perhaps it just overwrites...

Thanks for your reminding. I will try to open the file using "append" option instead of "update" tomorrow.
Title: Re: How to edit this file using newlisp file APIs
Post by: csfreebird on March 05, 2013, 05:45:02 PM
I tried "append" option, unfortunately this caused "/opt/cloud_engine_home" was inserted at the end of file.

esac

exit 0
/opt/cloud_engine_home



I just want to modify one part of my file instead of rewriting the whole file.

Could anyone give me a simple way?



I hope write APIs could provide one option for indicating insert or overwrite, just like most editors.
Title: Re: How to edit this file using newlisp file APIs
Post by: cormullion on March 06, 2013, 01:45:15 AM
I don't think there's an "insert text in file" option anywhere. But Saul's solution above is fine.

Note that there's a write-file function: So this is possible:
(set 'input-file {/tmp/temp.txt})
(set 'lines (parse (read-file input-file)  "n"))
(replace "CLOUD_ENGINE_HOME=" lines "CLOUD_ENGINE_HOME=/opt/cloud_engine_home")
(write-file input-file (join lines "n"))
Title: Re: How to edit this file using newlisp file APIs
Post by: csfreebird on March 06, 2013, 07:46:55 AM
It seems I have no other choice for now.

Anyway, thank for your giving.
Title: Re: How to edit this file using newlisp file APIs
Post by: saulgoode on March 09, 2013, 10:18:30 PM
Quote from: "cormullion"(write-file input-file (join lines "n"))

Aha, join was the function I was missing. I have always been fond of the strbreakup and unbreakupstr functionality of SIOD (//http) and GIMP's Script-fu interpreter, and the fact that Newlisp offers this with parse and join is a definite plus.