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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
|
subroutine cabort(messg, abortf)
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c conditional abort; if abortf is .true.
c
character*(*) messg
logical abortf
call echo(messg)
if (abortf) then
call warn(3,'* uwxafs data file handling abort *')
return
endif
return
c end subroutine cabort
end
subroutine putrec(iounit,array,nw,skey,nkey,ier)
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c
c put data record to a random access data file
c
c iounit : i/o unit no(integer,input)
c array : data to be put(any type,input)
c nw : no of words in array(integer,input)
c skey : symbolic key for the record(character,input)
c nkey : numeric key for the record(integer,input)
c ier : error code(integer,output)
c 1 - unit not declared
c 2 - nw .lt. 0
c 3 - file protection violated
c 4 - skey is blank
c 5 - rewrite interlock not cleared
c 6 - record length is different for rewrite
c 7 - nkey does not exist
c 8 - index full
c
c skey must be given always and nkey should be zero for new record
c non zero nkey means rewrite. - nw should be equal to current one
c
implicit integer(a-z)
c
parameter (indxl=191, nu=2, iword = 128 )
c
character*(*) skey
character*80 fname(nu),ctmp
character*2048 cindx(nu)
integer*2 indx(4,0:indxl,nu)
logical abortf,safe,rewrt,modify(nu)
c
common /uwdata/ unit(nu),modify,abortf,safe,rewrt,nldoc,indx
common /uwdocs/ cindx,fname
c
save /uwdata/,/uwdocs/
c
real array(nw)
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('putrec: unit not declared',abortf)
ier=1
return
endif
c
if(nw.lt.0) then
call cabort('putrec: no data to write',abortf)
ier=2
return
endif
c
if(modify(u)) then
call cabort('putrec: '//fname(u)//
$ ' has no write permission',abortf)
ier=3
return
endif
c
if(skey.eq.' ') then
call cabort('putrec: skey not given',abortf)
ier=4
return
endif
c
last=indx(2,0,u)
if(nkey.ne.0) then
c rewrite
if(.not.rewrt) then
call cabort('putrec: rewrite interlock not cleared',abortf)
ier=5
return
endif
rewrt=.false.
c rewrite
if(nkey.gt.last) then
call cabort('putrec: old nkey does not exist',abortf)
ier=7
return
endif
if(nw.ne.indx(2,nkey,u)) then
call cabort('putrec: old/new record length dont match',abortf)
ier=6
return
endif
pru=indx(1,nkey,u)
c
c new record
else
if(last.ge.indxl) then
call cabort('putrec: index full',abortf)
ier=8
return
endif
pru=indx(1,0,u)
endif
c
nblk = (nw + iword - 1)/iword
do 10 i = 1 , nblk
l = min(i*iword, nw)
write(iounit, rec=i+pru-1)(array(j),j=(i-1)*iword+1,l)
10 continue
c
c new index for rewrite
if(nkey.ne.0) then
call echo('putrec: symbolic key overwritten'//
$ cindx(u)(nkey*10+1:nkey*10+10))
cindx(u)(nkey*10+1:nkey*10+10)=skey
else
c new index for new record
cindx(u)(last*10+11:last*10+20)=skey
indx(1,last+1,u)=indx(1,0,u)
indx(2,last+1,u)=nw
endif
c new no of entries and eof block no
indx(1,0,u)=indx(1,0,u)+nblk
indx(2,0,u)=last+1
ier=0
c check duplicate key
ctmp=skey
ntmp=nkey
100 continue
do 500 n=1,last
if(ctmp.ne.cindx(u)(n*10+1:n*10+10)) go to 500
if(n.ne.ntmp) go to 510
500 continue
c no duplicate key
go to 600
c put an asterisk, if one is not there already
510 continue
do 520 i=6,10
if(cindx(u)(n*10+i:n*10+i).eq.'*') go to 520
cindx(u)(n*10+i:n*10+i)='*'
c check again if new skey is duplicate
ctmp=cindx(u)(n*10+1:n*10+10)
ntmp=n
go to 100
520 continue
call cabort('putrec: same skey occured five times',abortf)
600 continue
if(safe) then
call wrindx(iounit)
else
modify(u)=.true.
endif
return
c end subroutine putrec
end
subroutine putdoc(iounit,doc,nl,skey,nkey,ier)
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c
c put documentation lines to a random access data file
c iounit : fortran i/o unit no(integer,input)
c doc : document lines(character,input)
c nl : no of lines to be written(integer,input)
c skey : symbolic key associated with the record(char,in)
c nkey : numeric key associated with the record(integer,in)
c ier : error code (integer,output)
c 1 - unit not declared
c 2 - nl .le. 0
c 3 -
c 4 - skey not given
c 5 - rewrite interlock not cleared
c 6 - skey not found
c if doc='doc' , internal buffer is used
c symbolic key must be given
c for new record, nkey should be zero.
c
implicit integer(a-z)
c
parameter (indxl=191, nu=2 )
c
character*(*) skey
character*80 fname(nu), doctmp*100
character*2048 cindx(nu)
integer*2 indx(4,0:indxl,nu)
logical abortf,safe,rewrt,modify(nu)
c
common /uwdata/ unit(nu),modify,abortf,safe,rewrt,nldoc,indx
common /uwdocs/ cindx,fname
c
save /uwdata/,/uwdocs/
c
parameter(maxl=20, maxchr=100 )
character*(maxchr) dbuf(maxl)
common /uwdbuf/ dbuf
save /uwdbuf/
c
character*(*) doc(*)
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('putdoc: unit not declared',abortf)
ier=1
return
endif
c
c convert form to the case of this routine.
c 'case' controls the the case of this routine
doctmp = doc(1)
call smcase(doctmp, 'case')
c
if ((nl.le.0).and.(doctmp.ne.'doc')) then
call cabort('putdoc: no documents to write',abortf)
ier=2
return
endif
c
if(skey.eq.' ') then
call cabort('putdoc: skey must be given',abortf)
ier=4
return
endif
c
last=indx(2,0,u)
c
if(nkey.ne.0) then
c existing record
if(.not.rewrt) then
call cabort('putdoc: rewrite interlock not cleared',abortf)
ier=5
return
endif
rewrt=.false.
iord=nkey
else
c new record
call gnkey(iounit,skey,iord,ier)
if(iord.eq.0) then
call cabort('putdoc: skey not found',abortf)
ier=6
return
endif
endif
c
c write at the end, always
pru=indx(1,0,u)
if (doctmp.eq.'doc') then
c write internal buffer
indx(4,iord,u)=nldoc
nblk=(nldoc+4)/5
do 10 i=1,nblk
lblk=min(i*5,nldoc)
write(iounit, rec=pru+i-1) (dbuf(j),j=i*5-4,lblk)
10 continue
else
c write doc
indx(4,iord,u)=nl
nblk=(nl+4)/5
do 20 i=1,nblk
lblk=min(i*5,nl)
write(iounit, rec=pru+i-1)(doc(j),j=i*5-4,lblk)
20 continue
endif
c adjust index
indx(3,iord,u)=pru
indx(1,0,u)=pru+nblk
c if (safe) write out new index
if(safe) then
call wrindx(iounit)
else
c otherwise, mark it
c new index will be written when closrf is called
modify(u)=.true.
endif
ier=0
return
c end subroutine putdoc
end
subroutine openrf(iounit,lfn,aflag,sflag,ftype,irecl,ier)
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c
c openrf uses direct access binary files with word size irecl.
c irecl = 128 on vax, 512 otherwise?
c
c structure of random data file
c
c block size=512 byte=128 word
c
c block 1-3 : indx(4,0:indxl,u)
c block 4-7 : cindx(u)*2048
c
c first data block is 8
c
c indx(1,0,u) address of eof (non exisiting)
c indx(2,0,u)=no of entries
c indx(3,0,u)=1776 for identification
c indx(4,0,u)=704 same purpose
c
c indx(1,n,u)=address of data n
c indx(2,n,u)=no of words for data n
c indx(3,n,u)=address of doc n
c indx(4,n,u)=no of lines for doc n
c
c cindx(u)(1:10)=ftype
c cindx(u)(n*10+1:n*10+10)=skey for nkey n
c---------------------------
implicit integer(a-z)
parameter (indxl = 191, nu = 2)
character*(*) ftype,lfn,aflag,sflag
character*80 fname(nu),fn, aflg*10, sflg*10
character*2048 cindx(nu)
integer*2 indx(4,0:indxl,nu)
logical abortf,safe,rewrt,exist
logical clor, modify(nu)
c
common /uwdata/ unit(nu),modify,abortf,safe,rewrt,nldoc,indx
common /uwdocs/ cindx,fname
c
save /uwdata/,/uwdocs/
c
ccc data unit,nldoc/nu*0,0/
ccc data abortf,safe/.true.,.false./
c
clor =.false.
c find out the case of this routine.
c 'case' controls the the case of this routine
sflg = sflag
aflg = aflag
call smcase(aflg, 'case')
call smcase(sflg, 'case')
c
abortf = (aflg.ne.'noabort')
safe = safe.or.(sflg.eq.'safe')
c
c if lfn is blank, lfn=for0un where un is fortran i/o no
if(lfn.eq.' ') then
fn = 'for0'
write(fn(5:6),1,err=9999)iounit
1 format(i2.2)
else
fn=lfn
endif
inquire (file=fn,exist=exist)
c
call gunit(iounit,u)
if(u.eq.0) then
c assign iounit no to unit(n), a table
do 100 n=1,nu
if(unit(n).eq.0) then
unit(n)=iounit
u=n
fname(u)=fn
go to 110
endif
100 continue
c
call cabort('openrf: max no of files exceeded',abortf)
ier=1
return
110 continue
c
else
call echo('openrf: unit reopened')
endif
c
if(ftype.eq.' ') then
c no modify permit
modify(u)=.true.
else
modify(u)=.false.
endif
c
if(exist) then
c file exists
if(.not.modify(u)) then
c can modify the file
open(iounit, file=fn, recl=irecl, access='direct',
$ status='old', iostat=iosb, err=9999)
else
c cannot modify the file
open(iounit, file=fn, recl=irecl, access='direct',
$ status='old')
cccccc $ ,readonly)
endif
c read in existing index
do 10 i=1,3
read(iounit,rec=i)((indx(k,l,u),k=1,4),l=i*64-64,i*64-1)
10 continue
do 20 i=1,4
read(iounit,rec=i+3)cindx(u)(i*512-511:i*512)
20 continue
c
if(indx(3,0,u).ne.1776 .or. indx(4,0,u).ne.704) then
call cabort('openrf: wrong file',abortf)
ier=4
return
endif
ier=0
c
if(ftype.ne.' '.and.ftype.ne.cindx(u)(1:10))then
call cabort('openrf: wrong file type',abortf)
ier=3
return
endif
return
c
c new file
c
else
if(ftype.eq.' ') then
call cabort('openrf: ftype needed for file creation',abortf)
ier=5
return
endif
c create a new file
open(iounit,file=fn,recl=irecl,access='direct',
x status='new')
cindx(u)=ftype
c index initialization
do 30 i=1,indxl
do 30 j=1,4
indx(j,i,u)=0
30 continue
indx(1,0,u)=8
indx(2,0,u)=0
indx(3,0,u)=1776
indx(4,0,u)=704
ier=0
go to 99
endif
c
entry wrindx(iounit)
c write out index
call gunit(iounit,u)
99 continue
do 101 i=1,3
write(iounit,rec=i,err=9999)
$ ((indx(j,k,u),j=1,4),k=i*64-64,i*64-1)
101 continue
do 111 i=1,4
write(iounit,rec=i+3,err=9999)cindx(u)(i*512-511:i*512)
111 continue
if(clor) go to 77
9998 return
9999 ier=iosb
go to 9998
c
entry closrf(iounit,ier)
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('openrf: unit not declared',abortf)
ier=1
return
endif
c reset i/o unit table
unit(u)=0
ier=0
c if modified, rewrite index
clor=.false.
if(modify(u)) then
clor=.true.
go to 99
endif
77 continue
close(iounit)
clor=.false.
return
c
entry rwrtrf(iounit,ier)
c rewrite interlock. safeguard.
call gunit(iounit,u)
if(u.eq.0) then
call cabort('openrf: unit not declared',abortf)
ier=1
return
endif
c
rewrt=.true.
return
c end subroutine openrf
end
block data uwbdat
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c
c block data statements for uwxafs
c
implicit integer(a-z)
parameter (indxl = 191, nu = 2)
integer*2 indx(4,0:indxl,nu)
logical abortf,safe,rewrt
logical modify(nu)
c
common /uwdata/ unit(nu),modify,abortf,safe,rewrt,nldoc,indx
save /uwdata/
data unit,nldoc/nu*0,0/
data abortf,safe/.true.,.false./
c end block data
end
subroutine getrec(iounit,array,nw,skey,nkey,ntw,ier)
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c
c get data record from a data file
c iounit : i/o unit number (integer,input)
c array : array to receive data (any type,output)
c nw : maximum no of words to receive(integer,input)
c skey : symbolic key of data record to get(character,input)
c nkey : numeric key of data record to get(integer,input)
c ntw : actual no of words received(integer,output)
c ier : error code(integer,output)
c 1 - unit not declared
c 2 - nw .lt. 0
c 3 - nkey .gt. indxl .or. .lt. 0
c 4 - nkey not on file
c 5 - two keys do not match
c 6 - skey not on file
c either nkey(with skey=' ') or skey(with nkey=0) may be
c given. if both are given, they should match.
c
implicit integer(a-z)
c
parameter (indxl=191, nu=2, iword=128 )
c
character*(*) skey
character*80 fname(nu)
character*2048 cindx(nu)
integer*2 indx(4,0:indxl,nu)
logical abortf,safe,rewrt,modify(nu)
c
common /uwdata/ unit(nu),modify,abortf,safe,rewrt,nldoc,indx
common /uwdocs/ cindx,fname
c
save /uwdata/,/uwdocs/
c
real array(nw)
call gunit(iounit,u)
if(u.eq.0) then
call cabort('getrec: iounit not declared',abortf)
ier=1
return
endif
c
if(nw.le.0) then
call cabort('getrec: no data to get',abortf)
ier=2
return
endif
c
last=indx(2,0,u)
if(nkey.ne.0) then
if(nkey.lt.0.or.nkey.gt.indxl) then
call cabort('getrec: nkey out of bounds',abortf)
ier=3
return
elseif(nkey.gt.last) then
call cabort('getrec: nkey does not exist',abortf)
ier=4
return
elseif((skey.ne.' ').and.(skey.ne.cindx(u)(nkey*10+1:
$ nkey*10+10))) then
call cabort('getrec: skey mismatch',abortf)
ier=5
return
endif
iord=nkey
c
c skey is given
c
else
call gnkey(iounit,skey,iord,iii)
if(iord.eq.0) then
call cabort('getrec: skey not found',abortf)
ier=6
return
endif
endif
c
pru=indx(1,iord,u)
ntw=indx(2,iord,u)
if(ntw.gt.nw) then
ntw=nw
call echo('getrec: field shorter than data')
endif
c
c iword is no of words in a block
nblk = ( ntw + iword - 1) / iword
do 10 i = 1, nblk
l = min(i*iword, ntw)
read(iounit,rec=pru+i-1)(array(j),j=(i-1)*iword+1,l)
10 continue
ier=0
return
c end subroutine getrec
end
subroutine getdoc(iounit,doc,nl,skey,nkey,ntl,ier)
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c
c get documentation lines from data file
c
c input parameters
c iounit : i/o unit number (integer,input)
c doc : document array (character,in-out)
c nl : no of lines to get (integer,input)
c skey : symbolic key of record (character,input)
c nkey : numeric key of record (integer,input)
c ntc : number of lines actually got(integer,output)
c ier : error code (integer,output)
c 1 - unit not declared
c 2 - nl negative or zero
c 3 - nkey .gt. indxl .or. nkey .lt. 1
c 4 - nkey is not on file
c 5 - skey and nkey don't match
c 6 - skey is not on file
c
c if skey is blank, nkey is used. if nkey is 0, skey is used.
c if both are given, they should match.
c
c if doc is equal to 'doc' then data are transferred
c to internal buffer. nl is ignored in this case.
c see routines getline, addline and prntdoc for
c the manipulation of this buffer
c
implicit integer(a-z)
parameter (indxl = 191, nu = 2 )
c
character*80 fname(nu), doctmp*100
character*2048 cindx(nu)
integer*2 indx(4,0:indxl,nu)
logical abortf, safe, rewrt, modify(nu)
c
common /uwdata/ unit(nu),modify,abortf,safe,rewrt,nldoc,indx
common /uwdocs/ cindx,fname
c
save /uwdata/,/uwdocs/
c
parameter (maxl=20, maxchr=100 )
character*(maxchr) dbuf(maxl)
common /uwdbuf/ dbuf
save /uwdbuf/
c
character*(*) skey,doc(*)
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('getdoc: unit not declared',abortf)
ier=1
return
endif
c
c convert form to the case of this routine.
c 'case' controls the the case of this routine
doctmp = doc(1)
call smcase(doctmp, 'case')
c
if ((nl.le.0).and.(doctmp.ne.'doc')) then
call cabort('getdoc: no document lines to get',abortf)
ier=2
return
endif
c
if(nkey.ne.0) then
if(nkey.lt.0.or.nkey.gt.indxl) then
call cabort('getdoc: nkey out of bounds',abortf)
ier=3
return
elseif(indx(1,nkey,u).eq.0) then
call cabort('getdoc: nkey does not exist',abortf)
ier=4
return
elseif(skey.ne.' '.and.
$ skey.ne.cindx(u)(nkey*10+1:nkey*10+10)) then
call cabort('getdoc: skey mismatch',abortf)
ier=5
return
endif
iord=nkey
c skey is not given
else
call gnkey(iounit,skey,iord,ier)
if(iord.eq.0) then
call cabort('getdoc: skey not found',abortf)
ier=6
return
endif
endif
c
pru=indx(3,iord,u)
c
c to document buffer
if (doctmp.eq.'doc') then
nldoc=indx(4,iord,u)
nblk=(nldoc+4)/5
ntl=nldoc
do 10 i=1,nblk
read(iounit,rec=pru+i-1) (dbuf(j),j=i*5-4,i*5)
10 continue
c to doc
else
ntl=indx(4,iord,u)
ntl=min(ntl,nl)
nblk=(ntl+4)/5
do 20 i=1,nblk
lblk=min(i*5,ntl)
read(iounit,rec=pru+i-1) (doc(j),j=i*5-4,lblk)
20 continue
endif
ier=0
return
c end subroutine getdoc
end
subroutine hash(array, narray, doc, ndoc, skey)
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c
c generate 5 character string composed of alphanumerics
c
c since this routine is not called too often, execution speed
c is not as important as getting a reasonably pseudo-random skey.
c *** note: random numbers done as in numerical recipes
c-----------------------------------------------------------------------
parameter(maxpts = 4096)
parameter(imod = 6655, imul = 936, iadd = 1399)
parameter(jmod = 14406, jmul = 967, jadd = 3041)
parameter(kmod = 7875, kmul = 211, kadd = 1663)
parameter(lmod = 6075, lmul = 106, ladd = 1283)
parameter(ihalf= 3333, imost= 5555, jhalf= 7201, jthrd= 4821)
c
double precision work(maxpts), sum(4), zero
double precision pi, gold, goldm1, e1, aver, part
parameter(zero = 0.d0, pi = 3.141592653589793d0 )
parameter(e1= 2.7182818280)
parameter(gold = 1.618033989d0, goldm1 = 0.618033989d0)
character*(*) doc(*)
character*(5) skey
real array(*)
integer ikey(5), iran(131)
logical loop
c
c initialize
nwork = 2*narray
skey = 'skey0'
if (narray.le.0) return
ichr0 = ichar('0')
ichra = ichar('a')
do 15 i = 1, 5
ikey(i) = 0
15 continue
do 18 i = 1, 4
sum(i) = zero
18 continue
c get measure of the magnitude of the data two different ways
c ihalf ~= imod/2 , so that roughly half the values
c are used to make the partial sum
aver = 1.d-1
part = 2.d-1
do 30 i = 1, narray
aver = abs( dble(array(i)) / narray ) + aver
irndm = mod(imul*(i + narray) + iadd, imod)
if ( (i.gt.2) .and. (irndm.gt.ihalf) ) then
part = abs( dble(array(i)) / narray ) + part
if (irndm.gt.imost) then
part = abs( dble(array(i-2)) / narray ) + part
else
part = abs( dble(array(i-1)) / narray ) + part
end if
end if
30 continue
c create work array such that all values of work are of the order 1.
c - most values are scaled to one of the two different measures of
c magnitude from above.
c - a few values get scaled to be on the order of 1 without reference
c to these values (should prevent against two arrays differing only
c by a constant factor from having the same skey)
c - couldn't resist the golden mean and fine structure constant.
if (abs(aver).le.1.d-3) aver = 1.d-2
if (abs(part).le.1.d-3) part = 1.d-2
do 150 i = 1, narray
loop = .true.
work(i) = abs( dble(array(i)) / aver )
work(i+narray) = abs( dble(array(i)) / part )
j = i*kmul + kadd + narray
jrndm = mod(jmul*j + jadd, jmod)
if ( jrndm.lt.jthrd ) then
work(i) = work(i) * pi
elseif ( jrndm.gt.jhalf ) then
j = mod(i*j + jrndm, narray - 1 ) + 1
work(i+narray) = abs( dble(array(i)+array(j)) / e1)
100 continue
if(loop.and.(work(i+narray).le.(0.0072974d0))) then
work(i+narray) = work(i+narray) * gold
loop = .false.
go to 100
elseif(loop.and.(work(i+narray).ge.( 137.036d0))) then
work(i+narray) = work(i+narray) * goldm1
loop = .false.
go to 100
endif
end if
150 continue
c
c generate iran: a list of 131 pseudo-random integers that
c do not depend on the data at all
do 200 i = 1, 131
j = i*imul + iadd
jtmp = mod(jmul*j + jadd, jmod) + 1
ktmp = mod(kmul*jtmp + kadd, kmod) + 3
iran(i) = mod(lmul*ktmp + ladd, lmod) + 7
200 continue
c
c collect 4 different sums from the work array:
c each value in the work array is multiplied by a pseudo-randomly
c selected integer between 20 and 120, and 4 different sums are made.
c since each value in work() is on the order of 1, each of the sums
c should be of the order 100*narray. with narray being something
c between 100 and 1000, each of the different sums will be a random
c number on the order of 50 000. this value mod 36 should be a good
c random number.
c
do 500 i = 1, nwork
c get some random numbers, and make them bigger than 50
i1 = mod (i * imul + iadd, imod ) + 53
i2 = mod (i * jmul + jadd, jmod ) + 67
i3 = mod (i * kmul + kadd, kmod ) + 31
i4 = mod (i * lmul + ladd, lmod ) + 79
c use these to make random numbers between [1, 130 ]
j1 = mod( jmul*i1 + kadd, 109) + 3
j2 = mod( kmul*i2 + ladd, 119) + 5
j3 = mod( lmul*i3 + iadd, 111) + 7
j4 = mod( imul*i4 + jadd, 123) + 1
c use these for the iran array of random numbers to get a set
c of numbers between [20 and 150]
k1 = mod( jmul*( i4 + iran(j1)) + kadd, 73 ) + 43
k2 = mod( kmul*( i2 + iran(j2)) + ladd, 111 ) + 37
k3 = mod( lmul*( i1 + iran(j3)) + iadd, 91 ) + 29
k4 = mod( imul*( i3 + iran(j4)) + jadd, 121 ) + 19
c do "randomly weighted" sum of work array
sum(1) = sum(1) + work(i) * k1
sum(2) = sum(2) + work(i) * k2
sum(3) = sum(3) + work(i) * k3
sum(4) = sum(4) + work(i) * k4
500 continue
c turn the sums to integers between 1 and 36 for ikey(1) - ikey(4)
do 900 i = 1, 4
880 continue
if (abs(sum(i)).ge.100 000 000) then
sum(i) = sum(i) / gold
go to 880
end if
isum = int( sum(i) )
ikey(i) = mod(isum, 36)
900 continue
c ikey(5) : sum from document array
isum = 0
im = mod(iran(16) * ndoc + iran(61), 353) + 27
ia = mod(iran(77) * ndoc + iran(52), 347) + 19
do 2000 i = 1, ndoc
call triml( doc(i) )
jlen = max(1, istrln( doc(i)))
do 1800 j = 1, jlen
kseed = mod( (j + 2*i) * imul + jadd , 127) + 1
k = mod( iran(kseed) * im + ia , 13) + 3
isum = isum + k * ichar( doc(i)(j:j) )
1800 continue
2000 continue
ikey(5) = mod(isum, 36)
c
c map integers 1 to 36 to numerals and letters
c ascii assumed but not required. the numerals must be
c ordered 0 - 9 and the letters must be ordered a - z.
do 4000 i = 1, 5
if (ikey(i).le.9) then
ikey(i) = ikey(i) + ichr0
else
ikey(i) = ikey(i) - 10 + ichra
end if
4000 continue
c write skey from ikey
do 5000 i = 1, 5
skey(i:i) = char( ikey(i) )
5000 continue
call upper(skey)
return
c end subroutine hash
end
subroutine gunit(iounit,u)
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c
c match unit no with iounit no
c iounit : fortran i/o unit no(integer,input)
c u : corresponding index(1,2.. upto nu, in order of
c call to openrf routine)(integer,output)
c relation unit(u)=iounit
implicit integer(a-z)
c
parameter (indxl=191, nu=2 )
c
character*80 fname(nu)
character*2048 cindx(nu)
integer*2 indx(4,0:indxl,nu)
logical abortf,safe,rewrt,modify(nu)
c
common /uwdata/ unit(nu),modify,abortf,safe,rewrt,nldoc,indx
common /uwdocs/ cindx,fname
c
save /uwdata/,/uwdocs/
c
u=0
do 10 n=1,nu
if(unit(n).eq.iounit) then
u = n
go to 20
end if
10 continue
20 continue
return
c end subroutine gunit
end
subroutine rfmisc
c
c copyright university of washington 1981
c part of uwxafs binary (rdf) file handling
c
c miscellaneous routines for handling uwexafs files. most of
c the entries here are to find out what's inside a file.
c copyright university of washington 1981
c
implicit integer(a-z)
c
parameter (indxl=191, nu=2)
c
character*(*) skey,ftype,lfn
character*80 fname(nu)
character*2048 cindx(nu)
integer*2 indx(4,0:indxl,nu)
logical abortf,safe,rewrt,modify(nu)
c
common /uwdata/ unit(nu),modify,abortf,safe,rewrt,nldoc,indx
common /uwdocs/ cindx,fname
c
save /uwdata/,/uwdocs/
c
entry gskey(iounit,nkey,skey,ier)
c
c get symbolic key from a numeric key
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('gskey: unit not declared',abortf)
ier=1
return
endif
if(nkey.lt.0.or.nkey.gt.indxl) then
call cabort('gskey: nkey out of range',abortf)
ier=2
return
endif
c if nkey does not exist, skey=' '
skey=cindx(u)(nkey*10+1:nkey*10+10)
ier=0
return
c
entry gnkey(iounit,skey,nkey,ier)
c
c get a numeric key from a symbolic key
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('gnkey: unit not declared',abortf)
ier=1
return
endif
c
last=indx(2,0,u)
do 300 n=1,last
if(skey.eq.cindx(u)(n*10+1:n*10+10)) go to 310
300 continue
c skey not found
nkey=0
return
c
310 continue
nkey=n
ier=0
return
c
entry gftype(iounit,ftype,ier)
c
c get file-type from a i/o unit no
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('gftype: iounit not declared',abortf)
ier=1
return
endif
c
ftype=cindx(u)(1:10)
ier=0
return
c
entry glfn(iounit,lfn,ier)
c
c get filename from i/o unit no
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('gfln: iounit not declared',abortf)
ier=1
return
endif
c
lfn=fname(u)
ier=0
return
c
entry gflen(iounit,flen,ier)
c
c get the length of a file from i/o unit no
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('gflen: iounit not declared',abortf)
ier=1
return
endif
c
flen=indx(1,0,u)-1
return
c
entry gnie(iounit,nie,ier)
c
c get number of entries from i/o unit no
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('gnie: iounit not declared ',abortf)
ier=1
return
endif
c
nie=indx(2,0,u)
ier=0
return
c
entry grlen(iounit,nkey,rlen,ier)
c
c get the length of a data record (in words) from a numeric key
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('grlen: iounit not declared ',abortf)
ier=1
return
endif
c
if(nkey.lt.0.or.nkey.gt.indxl) then
call cabort('grlen: nkey out of range',abortf)
ier=2
return
endif
c
rlen=indx(2,nkey,u)
ier=0
return
c
entry gdlen(iounit,nkey,dlen,ier)
c
c get the length of document (in lines) from a numeric key
c
call gunit(iounit,u)
if(u.eq.0) then
call cabort('gdlen: unit not declared',abortf)
ier=1
return
endif
c
if(nkey.lt.0.or.nkey.gt.indxl) then
call cabort('gdlen: nkey out of range',abortf)
ier=2
return
endif
c
dlen=indx(4,nkey,u)
ier=0
return
c
c end subroutine rfmisc
end
|