Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29533 ディスカッション

Code to write a registry (.reg) file

ferrad1
新規コントリビューター I
7,544件の閲覧回数

A registry (.reg) file looks a little removed from a regular text, no doubt a lot to do with us of unicode, but also other strange bytes.  Is there a bit of Fortran code which will write a .reg file in the required format?

0 件の賞賛
1 解決策
Steve_Lionel
名誉コントリビューター III
7,449件の閲覧回数

You're writing with formatted output, which will always add a line terminator (CR-LF) at the end of each record. Using ADVANCE='NO' doesn't stop this. The only way to avoid getting the terminators is to use unformatted, stream output.

元の投稿で解決策を見る

13 返答(返信)
andrew_4619
名誉コントリビューター III
7,529件の閲覧回数

You can write all ask plain text, binary records have a type deliminator and then comma separated hex values. A simple reg file write could be 10 lines of code. Look at the wiki page. 

ferrad1
新規コントリビューター I
7,512件の閲覧回数

Ok, I've written a .reg file which writes an identical file to the one that is exported from regedit, with exception of an extra 0D0A at the end of the file.  I tried ADVANCE=NO in the format statement, but it still writes these extra 2 bytes.

ferrad1_0-1618366614760.png

Any idea how to suppress them?

Steve_Lionel
名誉コントリビューター III
7,497件の閲覧回数

Use ACCESS='STREAM' and FORM='UNFORMATTED' to write direct binary. 

ferrad1
新規コントリビューター I
7,475件の閲覧回数

I tried access='stream' and form='unformatted' but I still get the stray 0d 0a at the end of the file.

Reg files attached (renamed as .txt)

andrew_4619
名誉コントリビューター III
7,466件の閲覧回数

Both files have CR LF  (0D00 0A00) twice at the end in double byte character format (Bigendian) but in the one you write an additional CRLF  (0D0A) is output in single byte format at the end. However I an not trusting anything I see in a text editor I would want to read type bytes as a stream byte by byte and check that.

ferrad1
新規コントリビューター I
7,460件の閲覧回数

Yes, the file I write has an extra od oa at the end (which I don't write).  The regedit exported one doesn't.

I look at them in https://hexed.it/

andrew_4619
名誉コントリビューター III
7,453件の閲覧回数

Well I am not sure what is happening here. When I write a text file from Fortran I get an ANSI/UTF-8 file with single byte characters. Your file is double byte encoded and then has a EOF in single byte format. But the Fortran runtime as I see it only supports ANSI for formatted (text) files.  Do you gave an example code a few lines showing the open, write and close so we can test/replicate? Someone else may be able to see the problem but I think I would need to plod through step by step through what you are doing.

ferrad1
新規コントリビューター I
7,451件の閲覧回数

Here is the code, with the middle portion stripped out, but you can get the idea:

      open(unit=2,file='aqreg.reg',status='unknown')
      write(2,'(a)',advance='no') &
      char(z'ff')//char(z'fe')//char(z'57')//char(z'00')//char(z'69')//char(z'00')//char(z'6e')//char(z'00')//char(z'64')//char(z'00')//char(z'6f')//char(z'00')//char(z'77')//char(z'00')//char(z'73')//char(z'00')//&
      char(z'0d')//char(z'00')//char(z'0a')//char(z'00')//char(z'0d')//char(z'00')//char(z'0a')//char(z'00')
      close(unit=2)
Steve_Lionel
名誉コントリビューター III
7,450件の閲覧回数

You're writing with formatted output, which will always add a line terminator (CR-LF) at the end of each record. Using ADVANCE='NO' doesn't stop this. The only way to avoid getting the terminators is to use unformatted, stream output.

ferrad1
新規コントリビューター I
7,434件の閲覧回数

I still get the 0d 0a:

ferrad1_0-1618418940098.png

      open(unit=2,file='aqcomp.inc',status='unknown',access='stream',form='unformatted')
      write(2) ecstring
      close(unit=2)

ecstring is of length 55

IanH
名誉コントリビューター III
7,422件の閲覧回数

The most recent file is not remotely something that the registry editor would accept for an import.

I cannot reproduce the extra CR-LF using a recent compilers.

(Use of a hardcoded unit number below 10 makes me nervous - prefer a value obtained using the NEWUNIT specifier, but that does not appear to be the issue here.)

The registry editor will import "ansi" encoded files (as would be written by normal/boring Fortran formatted write statements), so none of this should be necessary.  When checking the results of an import, be mindful of registry redirection - are you looking in the right place?

(From a Fortran language point of view, the easiest way to write UTF-16LE encoded files is via an appropriate ENCODING specifier in the OPEN statement.  But Fortran processor support for different encodings is processor dependent, and the Intel Fortran runtime does not support UTF-16LE encoding.)

ferrad1
新規コントリビューター I
7,419件の閲覧回数

Yes I know this is not a registry file, I was just experimenting with dummy code.  I did run your code and I did not get the trailing 0d 0a, so it must be something in my code or compilation options.  Thanks for helping out.

andrew_4619
名誉コントリビューター III
7,486件の閲覧回数

When I export a .reg file I get a text file (on my system it is encoded UCS2 LE BOM but ANSI should be OK) with CRLF at the end of every line. Attach your 2 reg files you are comparing.

返信