外部ファイルの結びつけ、fopen(),fclose(),initfile() ― 2015年01月11日 21:05
Watcom Fortran 77では、外部ファイルと措置番号を実行時に結びつけることができます。 しかし、あまり使い勝手がよいとは、限りません。 装置番号1とファイル"ABC.TXT"を結びつけるには、環境変数を設定する必要があります。
set 1=ABC.TXTこの方法だと、使っている装置番号を知っておく必要があります。あまり、賢くないやり方です。 別の方法を考えます。コマンドラインのパラメーターにファイル名を指定する方法を考えてみます。
program ABC.TXTこの方法は便利です。プログラム内部で使用されている装置番号を知る必要はありませんが、 外部ファイルと装置番号結びつける仕組みが必要です。その仕組みがWatcom Fortran 77にあり、それはopen文です。
open(unit=uid, file=fname, action=act, err=99) uid : 装置番号 fname : ファイル名(character型の文字列) act : 'READ','WRITE' 99 : ERRORが起きたときにジャンプする先このままでは、使いにくいので一枚、皮をかぶせます。fopen()です。
c fopen.for -- connect intenal file descripter and external file integer function fopen(uid, fn, act) integer uid integer*1 fn(*), act integer i character*261 cfn ! MAXNAME(261) character*5 cact ! READ WRITE include 'files.fi' if (act .eq. 82) then ! READ(LETR) cact = 'READ' else if (act .eq. 87) then ! WRITE(LETW) cact = 'WRITE' else ! error uid = -1 ! ERR(-1) fopen = -1 ! ERR(-1) return end if call is2cs(fn,cfn,261) ! MAXNAME(261) convert integer string to character string i = 1 while (i .le. 20) do ! MAXFIELS(20) if (finuse(i) .eq. 0) then ! NOUSE(0) open(unit=i, file=cfn, action=cact, err=99) finuse(i) = 1 ! INUSE(1) uid = i fopen = i if (act .eq. 82) then ! READ(LETR) flastc(i) = 81 ! MAXCARD+1(81) fbuf(i,81) = 10 ! NEWLINE(10) fbuf(i,82) = -2 ! EOS(-2) fmode(i) = 82 ! READ(LETR) else if (act .eq. 87) then ! WRITE(LETW) flastc(i) = 0 fmode(i) =87 ! WRITE(LETW) end if return endif i = i + 1 end while 99 continue uid = -1 ! ERR(-1) fopen = -1 ! ERR(-1) return end
includeは、Watcom Fortran 77の機能で、'files.fi'をコンパイル時に、読み込みます。
この中で、is2cs()は、integer*1の文字列をcharacter型の 文字列に変換するものです。
c is2cs -- copy integer string to character string subroutine is2cs(is,cs,maxsiz) integer*1 is(*) character cs(maxsiz) integer maxsiz character char integer i i = 1 ! clear character string while (i .le. maxsiz) do cs(i) = ' ' i = i + 1 end while i = 1 while (is(i) .ne. -2) do ! EOS(-2) if (i .ge. maxsiz) then ! MAXNAME(261) exit end if cs(i) = char(is(i)) i = i + 1 end while return end
files.fiは下記の通りです。
c files.fi -- file interface common valiables common /files/finuse,fbuf,flastc,fmode integer finuse(20) ! inuse flag MAXFILES(20) integer*1 fbuf(20,82) ! I/O buffer MAXFILES(20) MAXLINE(81)+1 integer flastc(20) ! characters in I/O buffer MAXFILES(20) integer*1 fmode(20) ! READ/WIRTE flag MAXFILES(20)
- finuse(i) : 装置番号iが使用中ならばINUSE、そうでなければNOUSE
- fbuf(i,82) : i番目の装置の入出力バッファー
- flastc(i) : i番目の装置の次の読み出し文字位置、または、次の書き出し位置
- fmode(i) : i番目の装置が入出力モード
fopen()の逆で、ファイルを切り離すfclose()を示します。これは、Watcom Fortran 77のclose()に皮をかぶせたものです。 uid=5,6を除外しているのは、標準入力と標準出力だからです。
c fclose.for -- disconnect internal filedescripter and extenal file subroutine fclose(uid) integer uid include 'files.fi' if (.not. ((uid .eq. 5) .or. (uid .eq. 6))) then if (fmode(uid) .eq. 87) then ! WRITE(LETW) call fputc(uid,-1) ! flush buffer by put EOF end if close(unit=uid, status='keep') finuse(uid) = 0 ! NOUSE(0) uid = 0 end if return end
'files.fi'にある変数を、fopen(),fclose()などを使う前に初期化する必要があります。初期化 モジュールinitfile()を作成します。標準入力と標準出力は事前にオープンする必要がないため、 読み出し位置、書き出し位置の初期値をここで設定します。
c initfile.for -- setup file manage array funit subroutine initfile() integer i include 'files.fi' i = 1 while (i .le. 20) do ! MAXFILES(20) finuse(i) = 0 ! NOUSE(0) i = i + 1 end while finuse(5) = 1 ! INUSE(1) for STDIN flastc(5) = 81 ! lastc of read buffer fbuf(5,81) = 10 ! NEWLINE(10) fbuf(5,82) = -2 ! EOS(-2) fmode(5) = 82 ! READ(LETR) finuse(6) = 1 ! INUSE(1) for STDOUT flastc(6) = 0 ! lastc of write buffer fmode(6) = 87 ! WRITE(LETW) return end
これらをコンパイルするのに、fc.batに修正が必要です。includeするファイルをサーチする場所を指定するオプションを 追加します。
@echo off rem fc2.for wfc386 ..\src\%1.for /INCPATH=..\src move ..\bat\%1.obj ..\obj
コメント
_ hero sky epic guild wars cheats ― 2015年07月25日 22:54
Hey! This is kind of off topic but I need some advice from an established blog. Is it very hard to set up your own blog? I'm not very techincal but I can figure things out pretty fast. I'm thinking about making my own but I'm not sure where to begin. Do you have any points or suggestions? With thanks
_ cheat for kim kardashian hollywood ― 2015年07月27日 01:11
This design is steller! You most certainly know how to keep a reader amused. Between your wit and your videos, I was almost moved to start my own blog (well, almost...HaHa!) Wonderful job. I really enjoyed what you had to say, and more than that, how you presented it. Too cool!
_ Rise Of Darkness Cheats ― 2015年07月27日 19:29
At this time it appears like Wordpress is the preferred blogging platform out there right now. (from what I've read) Is that what you are using on your blog?
_ How To Hack Rise Of Darkness ― 2015年07月28日 01:49
This is really interesting, You are a very skilled blogger. I have joined your feed and look forward to seeking more of your excellent post. Also, I have shared your website in my social networks!
_ Cheats For Rise Of Darkness ― 2015年07月28日 10:38
bookmarked!!, I love your site!
_ Rise Of Darkness Hack ― 2015年07月28日 10:55
It's the best time to make some plans for the future and it is time to be happy. I've read this post and if I could I desire to suggest you some interesting things or advice. Maybe you can write next articles referring to this article. I desire to read more things about it!
_ Battle Camp Hack ― 2015年07月28日 14:03
Highly descriptive blog, I liked that bit. Will there be a part 2?
_ How To Hack Rise Of Darkness ― 2015年07月28日 14:27
I'm amazed, I must say. Seldom do I encounter a blog that's both equally educative and engaging, and without a doubt, you've hit the nail on the head. The issue is something which not enough people are speaking intelligently about. I'm very happy I stumbled across this in my search for something concerning this.
_ Battle Camp Cheats ― 2015年07月28日 14:52
I was wondering if you ever thought of changing the structure of your website? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot of text for onlly having one or 2 pictures. Maybe you could space it out better?
_ Battle Camp Hack ― 2015年07月28日 18:06
Interesting blog! Is your theme custom made or did you download it from somewhere? A theme like yours with a few simple adjustements would really make my blog jump out. Please let me know where you got your theme. Appreciate it
_ Battle Camp Hack ― 2015年07月28日 19:04
You really make it seem so easy with your presentation but I find this topic to be really something that I think I would never understand. It seems ttoo complex and very broad for me. I am looking firward for your next post, I'll try to get the hang of it!
_ line Disney Tsum Tsum cheats ― 2015年07月28日 20:41
Spot on with this write-up, I truly believe that this amazing site needs a great deal more attention. I'll probably be back again to read through more, thanks for the information!
_ tsum tsum hack ― 2015年07月28日 20:59
My family all the time say that I am wasting my time here at net, except I know I am getting experience everyday bby reading thes fastidious articles.
_ Lucretia ― 2015年07月28日 21:05
Howdy! I could have sworn I've been to this blog before but after going through some of the posts I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be book-marking it and checking back regularly!
_ line disney tsum tsum cheats ― 2015年07月28日 22:23
If some one wants to be updated with hottest technologies after that he must be pay a quick visit this web page and be up to date all the time.
_ Celeste ― 2015年07月28日 22:50
hey there and thank you for your information - I've certainly picked up something nnew from right here. I did however expertise some technical issues using this site, as I experienced to reload the website lots of times previous too I could get it to load correctly. I had been wondering if your hosting is OK? Not that I am complaining, but sluggish loading instances times will very frequently affect your placemednt in google and could damage your high quality score if advertising and marketing with Adwords. Well I am adding this RSS to my email and can lolok out for much more of your respective fascinating content. Ensure that you update this again very soon.
_ tsum tsum hack for android ― 2015年07月28日 23:32
Amazing! This blog looks just like my old one! It's on a entirely different topic but it haas pretty much the same page layout and design. Wonderful choice of colors!
_ tsum tsum cheats ― 2015年07月29日 00:55
Do you mind if I quote a few of your posts as long as I provide credit and sources back tto your webpage? My website is in the exact same area of interest as yours and my users would genuinely benefit from a lot of the informaton you present here. Please let me know if this okay with you. Cheers!
_ tsum tsum hack ― 2015年07月29日 01:56
Thank you for some other informative website. The place else could I get that kind of information written in such a perfect means? I've a challenge that I am just now working on, and I have been on the glance out for such info.
_ Lenore ― 2015年07月29日 02:02
Good site you've got here.. It's difficult to find excellent writing like yours nowadays. I truly appreciate people like you! Take care!!
_ Lonnie ― 2015年08月26日 21:55
Great delivery. Great arguments. Keep up the great work.
_ 100 Free Plenty Fish Dating ― 2015年10月16日 14:48
What's up mates, pleasant paragraph and good urging commented here, I am truly enjoying by these.
_ Pof.com Dating ― 2015年10月16日 16:34
I visited many websites however the audio feature for audio songs current at this website is truly superb.
_ Plenty Of Fish Inbox ― 2015年10月16日 17:03
Hey, I think your site might be having browser compatibility issues. When I look at your website in Chrome, it looks fine but when opening in Internet Explorer, it has some overlapping. I just wanted to give you a quick heads up! Other then that, amazing blog!
_ Pleanty Of Fish.com ― 2015年10月17日 06:52
Hmm is anyone else encountering problems with the images on this blog loading? I'm trying to determine if its a problem on my end or if it's the blog. Any responses would be greatly appreciated.
_ Pof Dating Site ― 2015年10月18日 06:40
After I initially left a comment I appear to have clicked the -Notify me when new comments are added- checkbox and from now on each time a comment is added I get 4 emails with the same comment. Is there a way you can remove me from that service? Thanks a lot!
_ Pof.com Login Inbox ― 2015年10月18日 08:58
Do you mind if I quote a few of your articles as long as I provide credit and sources back to your blog? My blog is in the very same area of interest as yours and my users would really benefit from some of the information you present here. Please let me know if this okay with you. Appreciate it!
_ are qwest bars good for you ― 2015年10月18日 20:56
You actually make it seem so easy with your presentation however I to find this matter to be actually something that I believe I would by no means understand. It seems too complicated and very broad for me. I am having a look ahead to your next publish, I will try to get the hold of it!
_ quest bar recipes ― 2015年10月20日 03:04
It's an remarkable piece of writing designed for all the internet people; they will take advantage from it I am sure.
_ Plenty Of Naughty Fish ― 2015年10月22日 02:04
I was curious if you ever considered changing the page layout of your blog? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot of text for only having one or two images. Maybe you could space it out better?
_ match free trial ― 2015年10月25日 06:04
I do agree with all the ideas you've presented on your post.
They're very convincing and can definitely work. Nonetheless, the
posts are too short for novices. May you please prolong them a little from next time?
Thank you for the post.
They're very convincing and can definitely work. Nonetheless, the
posts are too short for novices. May you please prolong them a little from next time?
Thank you for the post.
_ quest bars uk ― 2015年10月26日 16:14
Your means of describing the whole thing in this post is really pleasant, every one can easily know it, Thanks a lot.
_ forskolin ― 2015年11月05日 09:37
If you are going for most excellent contents like me, just visit this site every day as it offers quality contents,
thanks
thanks
_ plenty of fish dating site of free dating ― 2015年11月06日 05:51
Hi, I read your blogs on a regular basis. Your story-telling style is awesome, keep doing what you're doing!
_ plenty of fish dating site of free dating ― 2015年11月07日 05:26
I am sure this piece of writing has touched all the internet viewers,
its really really nice piece of writing on building up new web site.
its really really nice piece of writing on building up new web site.
_ plenty of fish dating site of free dating ― 2015年11月07日 17:05
Admiring the dedication you put into your site and in depth information you offer.
It's good to come across a blog every once in a
while that isn't the same out of date rehashed material.
Wonderful read! I've bookmarked your site and I'm including your RSS feeds to my Google account.
It's good to come across a blog every once in a
while that isn't the same out of date rehashed material.
Wonderful read! I've bookmarked your site and I'm including your RSS feeds to my Google account.
_ krogerfeedback.com ― 2015年11月12日 20:23
Very nice post. I just stumbled upon your weblog and wanted to say that I have really
enjoyed surfing around your blog posts. In any case
I will be subscribing to your feed and I hope you write again very soon!
enjoyed surfing around your blog posts. In any case
I will be subscribing to your feed and I hope you write again very soon!
_ digital coupons kroger ― 2015年11月15日 18:30
you're really a excellent webmaster. The web site loading velocity is amazing.
It sort of feels that you're doing any unique trick.
Also, The contents are masterpiece. you've performed
a great process on this topic!
It sort of feels that you're doing any unique trick.
Also, The contents are masterpiece. you've performed
a great process on this topic!
_ kroger coupons sign in ― 2015年11月15日 20:20
Your method of telling everything in this piece of writing is actually
pleasant, all be able to effortlessly understand it, Thanks a lot.
pleasant, all be able to effortlessly understand it, Thanks a lot.
_ www.kroger.com digital coupons ― 2015年11月17日 06:03
Hi there everyone, it's my first visit at this site, and article is in fact
fruitful in support of me, keep up posting such articles or reviews.
fruitful in support of me, keep up posting such articles or reviews.
_ www.kroger.com digital coupons ― 2015年11月17日 14:41
Wonderful blog! I found it while searching on Yahoo News. Do you have any tips on how to
get listed in Yahoo News? I've been trying for a while but
I never seem to get there! Appreciate it
get listed in Yahoo News? I've been trying for a while but
I never seem to get there! Appreciate it
_ plenty of fish dating site of free dating ― 2015年12月06日 07:56
Great work! This is the type of information that are supposed to be shared across the internet.
Shame on Google for now not positioning this put up upper!
Come on over and talk over with my site . Thank you =)
Shame on Google for now not positioning this put up upper!
Come on over and talk over with my site . Thank you =)
_ www.krogerfeedback.com ― 2015年12月06日 14:07
Your mode of explaining everything in this article is in fact nice, every one can effortlessly know
it, Thanks a lot.
it, Thanks a lot.
_ www.krogerfeedback.com ― 2015年12月08日 03:28
This is a topic which is close to my heart... Many thanks!
Exactly where are your contact details though?
Exactly where are your contact details though?
_ where can i buy quest protein bars ― 2015年12月11日 19:17
Hurrah, that's what I was looking for, what a material!
present here at this website, thanks admin of this web page.
present here at this website, thanks admin of this web page.
_ krogerfeedback.com ― 2016年01月01日 01:31
Remarkable! Its in fact remarkable article,
I have got much clear idea about from this paragraph.
I have got much clear idea about from this paragraph.
_ descargar firefox ???? ― 2016年01月05日 16:42
This design is spectacular! You obviously know how to keep a reader amused.
Between your wit and your videos, I was almost moved to start my own blog
(well, almost...HaHa!) Great job. I really loved what you had to
say, and more than that, how you presented it.
Too cool!
Between your wit and your videos, I was almost moved to start my own blog
(well, almost...HaHa!) Great job. I really loved what you had to
say, and more than that, how you presented it.
Too cool!
_ quest bars ― 2016年02月09日 06:37
I love it when people get together and share ideas. Great
site, stick with it!
site, stick with it!
_ Quest Bars ― 2016年02月10日 02:14
I think that everything typed was actually very logical.
But, what about this? suppose you added a little
content? I ain't suggesting your information isn't solid., but what if you added a title to maybe grab a person's attention? I mean 外部ファイルの結びつけ、fopen(),fclose(),initfile(): アナクロなコンピューターエンジニアのつぶやき is kinda boring.
You could glance at Yahoo's front page and watch how they write post titles
to grab people to open the links. You might add a related
video or a related picture or two to grab readers excited
about what you've got to say. In my opinion, it would make your
posts a little livelier.
But, what about this? suppose you added a little
content? I ain't suggesting your information isn't solid., but what if you added a title to maybe grab a person's attention? I mean 外部ファイルの結びつけ、fopen(),fclose(),initfile(): アナクロなコンピューターエンジニアのつぶやき is kinda boring.
You could glance at Yahoo's front page and watch how they write post titles
to grab people to open the links. You might add a related
video or a related picture or two to grab readers excited
about what you've got to say. In my opinion, it would make your
posts a little livelier.
_ minecraft.exe ― 2016年02月21日 22:03
Thanks for the marvelous posting! I quite
enjoyed reading it, you might be a great author. I will make certain to bookmark your
blog and will come back someday. I want to encourage you to continue your great work,
have a nice holiday weekend!
enjoyed reading it, you might be a great author. I will make certain to bookmark your
blog and will come back someday. I want to encourage you to continue your great work,
have a nice holiday weekend!
※コメントの受付件数を超えているため、この記事にコメントすることができません。
トラックバック
このエントリのトラックバックURL: http://kida.asablo.jp/blog/2015/01/11/7536145/tb
最近のコメント