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 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
|
/*
Written by Jeffrey Katcher under contract to Network Appliance.
Copyright (C) 1997
Network Appliance, Inc.
This code has been successfully compiled and run by Network
Appliance on various platforms, including Solaris 2 on an Ultra-170,
and Windows NT on a Compaq ProLiant. However, this PostMark source
code is distributed under the Artistic License appended to the end
of this file. As such, no support is provided. However, please report
any errors to the author, Jeffrey Katcher <katcher@netcom.com>, or to
Andy Watson <watson@netapp.com>.
Versions:
1.00 - Original release - 8/17/97
1.01 - Fixed endless loop on EOF,
Divide by zero when file_size_high=file_size_low - 10/29/97
(Thanks to Chuck Murnane)
1.1 - Added new commands to distribute work across multiple directories
and/or file systems and multiple work subdirectories.
Changed set location command (+,-) to allow file systems & weights
Added set subdirectories command and code to distribute work across
multiple subdirectories
Added file redirect to show and run commands
Improved help system - 4/8/98
1.11 - Fixed unfortunate problem where read_file opens in append mode thus
avoiding actual reads. (Thanks to Kent Peacock)
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <fcntl.h>
#ifdef _WIN32
#include <io.h>
#include <direct.h>
#define GETWD(x) getcwd(x,MAX_LINE)
#define MKDIR(x) mkdir(x)
#define SEPARATOR "\\"
#else
extern char *getwd();
#define GETWD(x) getwd(x)
#define MKDIR(x) mkdir(x,0700)
#define SEPARATOR "/"
#endif
#define MAX_LINE 255
#define MAX_FILENAME 80
#define KILOBYTE 1024
#define MEGABYTE (1000*KILOBYTE)
#define PROMPT "pm>"
#define RND(x) ((x>0)?(refrng_rand() % (x)):0)
typedef struct { /* ADT for table of CLI commands */
char *name; /* name of command */
int (*func)(); /* pointer to callback function */
char *help; /* descriptive help string */
} cmd;
extern int cli_set_size();
extern int cli_set_number();
extern int cli_set_seed();
extern int cli_set_transactions();
extern int cli_set_location();
extern int cli_set_subdirs();
extern int cli_set_read();
extern int cli_set_write();
extern int cli_set_buffering();
extern int cli_set_bias_read();
extern int cli_set_bias_create();
extern int cli_run();
extern int cli_show();
extern int cli_help();
extern int cli_quit();
cmd command_list[]={ /* table of CLI commands */
{"set size",cli_set_size,"Sets low and high bounds of files"},
{"set number",cli_set_number,"Sets number of simultaneous files"},
{"set seed",cli_set_seed,"Sets seed for random number generator"},
{"set transactions",cli_set_transactions,"Sets number of transactions"},
{"set location",cli_set_location,"Sets location of working files"},
{"set subdirectories",cli_set_subdirs,"Sets number of subdirectories"},
{"set read",cli_set_read,"Sets read block size"},
{"set write",cli_set_write,"Sets write block size"},
{"set buffering",cli_set_buffering,"Sets usage of buffered I/O"},
{"set bias read",cli_set_bias_read,
"Sets the chance of choosing read over append"},
{"set bias create",cli_set_bias_create,
"Sets the chance of choosing create over delete"},
{"run",cli_run,"Runs one iteration of benchmark"},
{"show",cli_show,"Displays current configuration"},
{"help",cli_help,"Prints out available commands"},
{"quit",cli_quit,"Exit program"},
NULL
};
/* Counters */
int files_created; /* number of files created */
int files_deleted; /* number of files deleted */
int files_read; /* number of files read */
int files_appended; /* number of files appended */
int bytes_written; /* number of bytes written to files */
int bytes_read; /* number of bytes read from files */
/* Configurable Parameters */
int file_size_low=500;
int file_size_high=10000; /* file size: fixed or random within range */
int simultaneous=500; /* simultaneous files */
int seed=42; /* random number generator seed */
int transactions=500; /* number of transactions */
int subdirectories=0; /* Number of subdirectories */
int read_block_size=512; /* I/O block sizes */
int write_block_size=512;
int bias_read=5; /* chance of picking read over append */
int bias_create=5; /* chance of picking create over delete */
int buffered_io=1; /* use C library buffered I/O */
/* Working Storage */
char *file_source; /* pointer to buffer of random text */
typedef struct {
char name[MAX_FILENAME+1]; /* name of individual file */
int size; /* current size of file, 0 = unused file slot */
} file_entry;
file_entry *file_table; /* table of files in use */
int file_allocated; /* pointer to last allocated slot in file_table */
typedef struct file_system_struct {
file_entry system;
struct file_system_struct *next,*prev;
} file_system;
file_system *file_systems; /* table of file systems/directories to use */
int file_system_weight; /* sum of weights for all file systems */
int file_system_count; /* number of configured file systems */
char **location_index; /* weighted index of file systems */
char *read_buffer; /* temporary space for reading file data into */
static unsigned long int refrng_next=1; /* state variable for random numbers */
/* portable standard random number generator -
returns integers from 0 to 2^32 */
int refrng_rand()
{
refrng_next=refrng_next*1103515245+12345;
return((unsigned int)(refrng_next/65536) % 32768);
}
/* set seed for portable standard random number generator */
void refrng_srand(seed)
unsigned int seed;
{
refrng_next=seed;
}
/* converts integer values to byte/kilobyte/megabyte strings */
char *scale(i)
int i;
{
static char buffer[MAX_LINE]; /* storage for current conversion */
if (i/MEGABYTE)
sprintf(buffer,"%.2f megabytes",(float)i/MEGABYTE);
else
if (i/KILOBYTE)
sprintf(buffer,"%.2f kilobytes",(float)i/KILOBYTE);
else
sprintf(buffer,"%d bytes",i);
return(buffer);
}
/* UI callback for 'set size' command - sets range of file sizes */
int cli_set_size(param)
char *param; /* remainder of command line */
{
char *token;
int size;
if (param && (size=atoi(param))>0)
{
file_size_low=size;
if ((token=strchr(param,' ')) && (size=atoi(token))>0 &&
size>=file_size_low)
file_size_high=size;
else
file_size_high=file_size_low;
}
else
fprintf(stderr,"Error: no file size low or high bounds specified\n");
return(1);
}
/* UI callback for 'set number' command - sets number of files to create */
int cli_set_number(param)
char *param; /* remainder of command line */
{
int size;
if (param && (size=atoi(param))>0)
simultaneous=size;
else
fprintf(stderr,"Error: no file number specified\n");
return(1);
}
/* UI callback for 'set seed' command - initial value for random number gen */
int cli_set_seed(param)
char *param; /* remainder of command line */
{
int size;
if (param && (size=atoi(param))>0)
seed=size;
else
fprintf(stderr,"Error: no random number seed specified\n");
return(1);
}
/* UI callback for 'set transactions' - configure number of transactions */
int cli_set_transactions(param)
char *param; /* remainder of command line */
{
int size;
if (param && (size=atoi(param))>0)
transactions=size;
else
fprintf(stderr,"Error: no transactions specified\n");
return(1);
}
int parse_weight(params)
char *params;
{
int weight=1;
char *split;
if (split=strrchr(params,' '))
{
*split='\0';
if ((weight=atoi(split+1))<=0)
{
fprintf(stderr,"Error: ignoring invalid weight '%s'\n",split+1);
weight=1;
}
}
return(weight);
}
void add_location(params,weight)
char *params;
int weight;
{
file_system *new_file_system;
if (new_file_system=(file_system *)calloc(1,sizeof(file_system)))
{
strcpy(new_file_system->system.name,params);
new_file_system->system.size=weight;
if (file_systems)
{
new_file_system->prev=file_systems->prev;
file_systems->prev->next=new_file_system;
file_systems->prev=new_file_system;
}
else
{
new_file_system->prev=new_file_system;
file_systems=new_file_system;
}
file_system_weight+=weight;
file_system_count++;
}
}
void delete_location(loc_name)
char *loc_name;
{
file_system *traverse;
for (traverse=file_systems; traverse; traverse=traverse->next)
if (!strcmp(traverse->system.name,loc_name))
{
file_system_weight-=traverse->system.size;
file_system_count--;
if (file_systems->prev==file_systems)
{
free(file_systems);
file_systems=NULL;
}
else
{
if (file_systems->prev==traverse)
file_systems->prev=traverse->prev;
if (traverse==file_systems)
file_systems=file_systems->next;
else
traverse->prev->next=traverse->next;
if (traverse->next)
traverse->next->prev=traverse->prev;
free(traverse);
}
break;
}
if (!traverse)
fprintf(stderr,"Error: cannot find location '%s'\n",loc_name);
}
void delete_locations()
{
file_system *next;
while (file_systems)
{
next=file_systems->next;
free(file_systems);
file_systems=next;
}
file_system_weight=0;
file_system_count=0;
}
/* UI callback for 'set location' - configure current working directory */
int cli_set_location(param)
char *param; /* remainder of command line */
{
if (param)
{
switch (*param)
{
case '+': /* add location to list */
add_location(param+1,parse_weight(param+1));
break;
case '-': /* remove location from list */
delete_location(param+1);
break;
default:
delete_locations();
add_location(param,parse_weight(param));
}
}
else
fprintf(stderr,"Error: no directory name specified\n");
return(1);
}
/* UI callback for 'set subdirectories' - configure number of subdirectories */
int cli_set_subdirs(param)
char *param; /* remainder of command line */
{
int subdirs;
if (param && (subdirs=atoi(param))>=0)
subdirectories=subdirs;
else
fprintf(stderr,"Error: invalid number of subdirectories specified\n");
return(1);
}
/* UI callback for 'set read' - configure read block size (integer) */
int cli_set_read(param)
char *param; /* remainder of command line */
{
int size;
if (param && (size=atoi(param))>0)
read_block_size=size;
else
fprintf(stderr,"Error: no block size specified\n");
return(1);
}
/* UI callback for 'set write' - configure write block size (integer) */
int cli_set_write(param)
char *param; /* remainder of command line */
{
int size;
if (param && (size=atoi(param))>0)
write_block_size=size;
else
fprintf(stderr,"Error: no block size specified\n");
return(1);
}
/* UI callback for 'set buffering' - sets buffering mode on or off
- true = buffered I/O (default), false = raw I/O */
int cli_set_buffering(param)
char *param; /* remainder of command line */
{
if (param && (!strcmp(param,"true") || !strcmp(param,"false")))
buffered_io=(!strcmp(param,"true"))?1:0;
else
fprintf(stderr,"Error: no buffering mode (true/false) specified\n");
return(1);
}
/* UI callback for 'set bias read' - sets probability of read vs. append */
int cli_set_bias_read(param)
char *param; /* remainder of command line */
{
int value;
if (param && (value=atoi(param))>=-1 && value<=10)
bias_read=value;
else
fprintf(stderr,
"Error: no bias specified (0-10 for greater chance,-1 to disable)\n");
return(1);
}
/* UI callback for 'set bias create' - sets probability of create vs. delete */
int cli_set_bias_create(param)
char *param; /* remainder of command line */
{
int value;
if (param && (value=atoi(param))>=-1 && value<=10)
bias_create=value;
else
fprintf(stderr,
"Error: no bias specified (0-10 for greater chance,-1 to disable)\n");
return(1);
}
/* populate file source buffer with 'size' bytes of readable randomness */
char *initialize_file_source(size)
int size; /* number of bytes of junk to create */
{
char *new_source;
int i;
if ((new_source=(char *)malloc(size))==NULL) /* allocate buffer */
fprintf(stderr,"Error: failed to allocate source file of size %d\n",size);
else
for (i=0; i<size; i++) /* file buffer with junk */
new_source[i]=32+RND(95);
return(new_source);
}
/* returns differences in times -
1 second is the minimum to avoid divide by zero errors */
time_t diff_time(t1,t0)
time_t t1;
time_t t0;
{
return((t1-=t0)?t1:1);
}
/* prints out results from running transactions */
void print_report(fp,end_time,start_time,t_end_time,t_start_time,deleted)
FILE *fp;
time_t end_time,start_time,t_end_time,t_start_time; /* timers from run */
int deleted; /* files deleted back-to-back */
{
time_t elapsed,t_elapsed;
int interval;
elapsed=diff_time(end_time,start_time);
t_elapsed=diff_time(t_end_time,t_start_time);
fprintf(fp,"Time:\n");
fprintf(fp,"\t%d seconds total\n",elapsed);
fprintf(fp,"\t%d seconds of transactions (%d per second)\n",t_elapsed,
transactions/t_elapsed);
fprintf(fp,"\nFiles:\n");
fprintf(fp,"\t%d created (%d per second)\n",files_created,
files_created/elapsed);
interval=diff_time(t_start_time,start_time);
fprintf(fp,"\t\tCreation alone: %d files (%d per second)\n",simultaneous,
simultaneous/interval);
fprintf(fp,"\t\tMixed with transactions: %d files (%d per second)\n",
files_created-simultaneous,(files_created-simultaneous)/t_elapsed);
fprintf(fp,"\t%d read (%d per second)\n",files_read,files_read/t_elapsed);
fprintf(fp,"\t%d appended (%d per second)\n",files_appended,
files_appended/t_elapsed);
fprintf(fp,"\t%d deleted (%d per second)\n",files_created,
files_created/elapsed);
interval=diff_time(end_time,t_end_time);
fprintf(fp,"\t\tDeletion alone: %d files (%d per second)\n",deleted,
deleted/interval);
fprintf(fp,"\t\tMixed with transactions: %d files (%d per second)\n",
files_deleted-deleted,(files_deleted-deleted)/t_elapsed);
fprintf(fp,"\nData:\n");
fprintf(fp,"\t%s read ",scale(bytes_read));
fprintf(fp,"(%s per second)\n",scale(bytes_read/elapsed));
fprintf(fp,"\t%s written ",scale(bytes_written));
fprintf(fp,"(%s per second)\n",scale(bytes_written/elapsed));
}
/* returns file_table entry of unallocated file
- if not at end of table, then return next entry
- else search table for gaps */
int find_free_file()
{
int i;
if (file_allocated<simultaneous<<1 && file_table[file_allocated].size==0)
return(file_allocated++);
else /* search entire table for holes */
for (i=0; i<simultaneous<<1; i++)
if (file_table[i].size==0)
{
file_allocated=i;
return(file_allocated++);
}
return(-1); /* return -1 only if no free files found */
}
/* write 'size' bytes to file 'fd' using unbuffered I/O */
void write_blocks(fd,size)
int fd;
int size; /* bytes to write to file */
{
int offset=0; /* offset into file */
int i;
/* write even blocks */
for (i=size; i>=write_block_size;
i-=write_block_size,offset+=write_block_size)
write(fd,file_source+offset,write_block_size);
write(fd,file_source+offset,i); /* write remainder */
bytes_written+=size; /* update counter */
}
/* write 'size' bytes to file 'fp' using buffered I/O */
void fwrite_blocks(fp,size)
FILE *fp;
int size; /* bytes to write to file */
{
int offset=0; /* offset into file */
int i;
/* write even blocks */
for (i=size; i>=write_block_size;
i-=write_block_size,offset+=write_block_size)
fwrite(file_source+offset,write_block_size,1,fp);
fwrite(file_source+offset,i,1,fp); /* write remainder */
bytes_written+=size; /* update counter */
}
void create_file_name(dest)
char *dest;
{
char conversion[MAX_LINE+1];
*dest='\0';
if (file_system_count)
{
strcat(dest,
location_index[(file_system_count==1)?0:RND(file_system_weight)]);
strcat(dest,SEPARATOR);
}
if (subdirectories>1)
{
sprintf(conversion,"s%d%s",RND(subdirectories),SEPARATOR);
strcat(dest,conversion);
}
sprintf(conversion,"%d",++files_created);
strcat(dest,conversion);
}
/* creates new file of specified length and fills it with data */
void create_file(buffered)
int buffered; /* 1=buffered I/O (default), 0=unbuffered I/O */
{
FILE *fp=NULL;
int fd=-1;
int free_file; /* file_table slot for new file */
if ((free_file=find_free_file())!=-1) /* if file space is available */
{ /* decide on name and initial length */
create_file_name(file_table[free_file].name);
file_table[free_file].size=
file_size_low+RND(file_size_high-file_size_low);
if (buffered)
fp=fopen(file_table[free_file].name,"w");
else
fd=open(file_table[free_file].name,O_RDWR|O_CREAT,0644);
if (fp || fd!=-1)
{
if (buffered)
{
fwrite_blocks(fp,file_table[free_file].size);
fclose(fp);
}
else
{
write_blocks(fd,file_table[free_file].size);
close(fd);
}
}
else
fprintf(stderr,"Error: cannot open '%s' for writing\n",
file_table[free_file].name);
}
}
/* deletes specified file from disk and file_table */
void delete_file(number)
int number;
{
if (file_table[number].size)
{
if (remove(file_table[number].name))
fprintf(stderr,"Error: Cannot delete '%s'\n",file_table[number].name);
else
{ /* reset entry in file_table and update counter */
file_table[number].size=0;
files_deleted++;
}
}
}
/* reads entire specified file into temporary buffer */
void read_file(number,buffered)
int number; /* number of file to read (from file_table) */
int buffered; /* 1=buffered I/O (default), 0=unbuffered I/O */
{
FILE *fp=NULL;
int fd=-1;
int i;
if (buffered)
fp=fopen(file_table[number].name,"r");
else
fd=open(file_table[number].name,O_RDONLY,0644);
if (fp || fd!=-1)
{ /* read as many blocks as possible then read the remainder */
if (buffered)
{
for (i=file_table[number].size; i>=read_block_size; i-=read_block_size)
fread(read_buffer,read_block_size,1,fp);
fread(read_buffer,i,1,fp);
fclose(fp);
}
else
{
for (i=file_table[number].size; i>=read_block_size; i-=read_block_size)
read(fd,read_buffer,read_block_size);
read(fd,read_buffer,i);
close(fd);
}
/* increment counters to record transaction */
bytes_read+=file_table[number].size;
files_read++;
}
else
fprintf(stderr,"Error: cannot open '%s' for reading\n",
file_table[number].name);
}
/* appends random data to a chosen file up to the maximum configured length */
void append_file(number,buffered)
int number; /* number of file (from file_table) to append date to */
int buffered; /* 1=buffered I/O (default), 0=unbuffered I/O */
{
FILE *fp=NULL;
int fd=-1;
int block; /* size of data to append */
if (file_table[number].size<file_size_high)
{
if (buffered)
fp=fopen(file_table[number].name,"a");
else
fd=open(file_table[number].name,O_RDWR|O_APPEND,0644);
if ((fp || fd!=-1) && file_table[number].size<file_size_high)
{
block=RND(file_size_high-file_table[number].size)+1;
if (buffered)
{
fwrite_blocks(fp,block);
fclose(fp);
}
else
{
write_blocks(fd,block);
close(fd);
}
file_table[number].size+=block;
files_appended++;
}
else
fprintf(stderr,"Error: cannot open '%s' for append\n",
file_table[number].name);
}
}
/* finds and returns the offset of a file that is in use from the file_table */
int find_used_file() /* only called after files are created */
{
int used_file;
while (file_table[used_file=RND(simultaneous<<1)].size==0)
;
return(used_file);
}
/* reset global counters - done before each test run */
void reset_counters()
{
files_created=0;
files_deleted=0;
files_read=0;
files_appended=0;
bytes_written=0;
bytes_read=0;
}
/* perform the configured number of file transactions
- a transaction consisted of either a read or append and either a
create or delete all chosen at random */
void run_transactions(buffered)
int buffered; /* 1=buffered I/O (default), 0=unbuffered I/O */
{
int percent; /* one tenth of the specified transactions */
int i;
percent=transactions/10;
for (i=0; i<transactions; i++)
{
if (bias_read!=-1) /* if read/append not locked out... */
{
if (RND(10)<bias_read) /* read file */
read_file(find_used_file(),buffered);
else /* append file */
append_file(find_used_file(),buffered);
}
if (bias_create!=-1) /* if create/delete not locked out... */
{
if (RND(10)<bias_create) /* create file */
create_file(buffered);
else /* delete file */
delete_file(find_used_file());
}
if ((i % percent)==0) /* if another tenth of the work is done...*/
{
putchar('.'); /* print progress indicator */
fflush(stdout);
}
}
}
char **build_location_index(list,weight)
file_system *list;
int weight;
{
char **index;
int count;
int i=0;
if ((index=(char **)calloc(1,weight*sizeof(char *)))==NULL)
fprintf(stderr,"Error: cannot build weighted index of locations\n");
else
for (; list; list=list->next)
for (count=0; count<list->system.size; count++)
index[i++]=list->system.name;
return(index);
}
void create_subdirectories(dir_list,base_dir,subdirs)
file_system *dir_list;
char *base_dir;
int subdirs;
{
char dir_name[MAX_LINE+1]; /* buffer holding subdirectory names */
char save_dir[MAX_LINE+1];
int i;
if (dir_list)
{
for (; dir_list; dir_list=dir_list->next)
create_subdirectories(NULL,dir_list->system.name,subdirs);
}
else
{
if (base_dir)
sprintf(save_dir,"%s%s",base_dir,SEPARATOR);
else
*save_dir='\0';
for (i=0; i<subdirs; i++)
{
sprintf(dir_name,"%ss%d",save_dir,i);
MKDIR(dir_name);
}
}
}
void delete_subdirectories(dir_list,base_dir,subdirs)
file_system *dir_list;
char *base_dir;
int subdirs;
{
char dir_name[MAX_LINE+1]; /* buffer holding subdirectory names */
char save_dir[MAX_LINE+1];
int i;
if (dir_list)
{
for (; dir_list; dir_list=dir_list->next)
delete_subdirectories(NULL,dir_list->system.name,subdirs);
}
else
{
if (base_dir)
sprintf(save_dir,"%s%s",base_dir,SEPARATOR);
else
*save_dir='\0';
for (i=0; i<subdirs; i++)
{
sprintf(dir_name,"%ss%d",save_dir,i);
rmdir(dir_name);
}
}
}
/* CLI callback for 'run' - benchmark execution loop */
int cli_run(param) /* none */
char *param; /* unused */
{
time_t start_time,t_start_time,t_end_time,end_time; /* elapsed timers */
int delete_base; /* snapshot of deleted files counter */
FILE *fp=NULL; /* file descriptor for directing output */
int i; /* generic iterator */
reset_counters(); /* reset counters before each run */
refrng_srand(seed); /* initialize random number generator */
/* allocate file space and fill with junk */
file_source=initialize_file_source(file_size_high<<1);
/* allocate read buffer */
read_buffer=(char *)malloc(read_block_size);
/* allocate table of files at 2 x simultaneous files */
file_allocated=0;
if ((file_table=(file_entry *)calloc(simultaneous<<1,sizeof(file_entry)))==
NULL)
fprintf(stderr,"Error: Failed to allocate table for %d files\n",
simultaneous<<1);
if (file_system_count>0)
location_index=build_location_index(file_systems,file_system_weight);
/* create subdirectories if necessary */
if (subdirectories>1)
{
printf("Creating subdirectories...");
fflush(stdout);
create_subdirectories(file_systems,NULL,subdirectories);
printf("Done\n");
}
time(&start_time); /* store start time */
/* create files in specified directory until simultaneous number */
printf("Creating files...");
fflush(stdout);
for (i=0; i<simultaneous; i++)
create_file(buffered_io);
printf("Done\n");
printf("Performing transactions");
fflush(stdout);
time(&t_start_time);
run_transactions(buffered_io);
time(&t_end_time);
printf("Done\n");
/* delete remaining files */
printf("Deleting files...");
fflush(stdout);
delete_base=files_deleted;
for (i=0; i<simultaneous<<1; i++)
delete_file(i);
printf("Done\n");
/* print end time and difference, transaction numbers */
time(&end_time);
/* delete previously created subdirectories */
if (subdirectories>1)
{
printf("Deleting subdirectories...");
fflush(stdout);
delete_subdirectories(file_systems,NULL,subdirectories);
printf("Done\n");
}
if (location_index)
{
free(location_index);
location_index=NULL;
}
if (param)
if ((fp=fopen(param,"a"))==NULL)
fprintf(stderr,"Error: Cannot direct output to file '%s'\n",param);
if (!fp)
fp=stdout;
print_report(fp,end_time,start_time,t_end_time,t_start_time,
files_deleted-delete_base);
if (param && fp!=stdout)
fclose(fp);
/* free resources allocated for this run */
free(file_table);
free(read_buffer);
free(file_source);
return(1); /* return 1 unless exit requested, then return 0 */
}
/* CLI callback for 'show' - print values of configuration variables */
int cli_show(param)
char *param; /* optional: name of output file */
{
char current_dir[MAX_LINE+1]; /* buffer containing working directory */
file_system *traverse;
FILE *fp=NULL; /* file descriptor for directing output */
if (param)
if ((fp=fopen(param,"a"))==NULL)
fprintf(stderr,"Error: Cannot direct output to file '%s'\n",param);
if (!fp)
fp=stdout;
fprintf(fp,"Current configuration is:\n");
fprintf(fp,"Transactions: %d\n",transactions);
fprintf(fp,"Files range between %s ",scale(file_size_low));
fprintf(fp,"and %s in size\n",scale(file_size_high));
fprintf(fp,"Random number generator seed is %d\n",seed);
fprintf(fp,"The base number of files is %d\n",simultaneous);
fprintf(fp,"Working director%s: %s\n",(file_system_count>1)?"ies":"y",
(file_system_count==0)?GETWD(current_dir):"");
for (traverse=file_systems; traverse; traverse=traverse->next)
printf("\t%s (weight=%d)\n",traverse->system.name,traverse->system.size);
fprintf(fp,"%d subdirector%s will be used\n",subdirectories,
(subdirectories==1)?"y":"ies");
fprintf(fp,"Block sizes are: read=%s, ",scale(read_block_size));
fprintf(fp,"write=%s\n",scale(write_block_size));
fprintf(fp,"Biases are: read/append=%d, create/delete=%d\n",bias_read,
bias_create);
fprintf(fp,"%ssing Unix buffered file I/O\n",buffered_io?"U":"Not u");
if (param && fp!=stdout)
fclose(fp);
return(1); /* return 1 unless exit requested, then return 0 */
}
/* CLI callback for 'quit' - returns 0 causing UI to exit */
int cli_quit(param) /* none */
char *param; /* unused */
{
return(0); /* return 1 unless exit requested, then return 0 */
}
/* CLI callback for 'help' - prints help strings from command_list */
int cli_help(param)
char *param; /* optional: specific command to get help for */
{
int i; /* traversal variable for command table */
if (param) /* if a command is specified... */
for (i=0; command_list[i].name; i++) /* walk command table */
if (!strcmp(command_list[i].name,param))
{
printf("%s - %s\n",command_list[i].name,command_list[i].help);
break;
}
if (!param || !command_list[i].name)
for (i=0; command_list[i].name; i++) /* traverse command table */
printf("%s - %s\n",command_list[i].name,command_list[i].help);
return(1); /* return 1 unless exit requested, then return 0 */
}
/* read CLI line from user, translate aliases if any, return fgets status */
char *cli_read_line(buffer,size)
char *buffer; /* empty input line */
int size;
{
char *result;
printf("%s",PROMPT); /* print prompt */
fflush(stdout); /* force prompt to print */
if (result=fgets(buffer,size,stdin)) /* read line safely */
{
buffer[strlen(buffer)-1]='\0'; /* delete final CR */
if (!strcmp(buffer,"?")) /* translate aliases */
strcpy(buffer,"help");
if (!strcmp(buffer,"exit"))
strcpy(buffer,"quit");
}
return(result); /* return success of fgets */
}
/* parse CLI input line */
int cli_parse_line(buffer)
char *buffer; /* line of user input */
{
int result=1; /* default return status */
int len; /* length of parsed command */
int i; /* traversal variable for command table */
if (*buffer=='!') /* check for shell escape */
system((strlen(buffer)>1)?buffer+1:getenv("SHELL"));
else
{
for (i=0; command_list[i].name; i++) /* walk command table */
if (!strncmp(command_list[i].name,buffer,
len=strlen(command_list[i].name)))
{ /* if command matches... */
result=(command_list[i].func)
(((int)strlen(buffer)>len)?buffer+len+1:NULL);
break; /* call function and pass remainder of line as parameter */
}
if (!command_list[i].name) /* if no commands were called... */
printf("Eh?\n"); /* tribute to Canadian diction */
}
return(result); /* return 1 unless exit requested, then return 0 */
}
/* read config file if present and process it line by line
- if 'quit' is in file then function returns 0 */
int read_config_file(filename,buffer)
char *filename; /* file name of config file */
char *buffer; /* temp storage for each line read from file */
{
int result=1; /* default exit value - proceed with UI */
FILE *fp;
if (fp=fopen(filename,"r")) /* open config file */
{
printf("Reading configuration from file '%s'\n",filename);
while (fgets(buffer,MAX_LINE,fp) && result) /* read lines until 'quit' */
{
buffer[strlen(buffer)-1]='\0'; /* delete final CR */
result=cli_parse_line(buffer); /* process line as typed in */
}
fclose(fp);
}
return(result);
}
/* main function - reads config files then enters get line/parse line loop */
void main(argc,argv)
int argc;
char *argv[];
{
char buffer[MAX_LINE+1]; /* storage for input command line */
printf("PostMark v1.11 : 4/8/98\n");
if (read_config_file((argc==2)?argv[1]:".pmrc",buffer))
while (cli_read_line(buffer,MAX_LINE) && cli_parse_line(buffer))
;
}
/*
The "Artistic License"
Preamble
The intent of this document is to state the conditions under which a
Package may be copied, such that the Copyright Holder maintains some
semblance of artistic control over the development of the package,
while giving the users of the package the right to use and distribute
the Package in a more-or-less customary fashion, plus the right to make
reasonable modifications.
Definitions:
"Package" refers to the collection of files distributed by the
Copyright Holder, and derivatives of that collection of files
created through textual modification.
"Standard Version" refers to such a Package if it has not been
modified, or has been modified in accordance with the wishes
of the Copyright Holder as specified below.
"Copyright Holder" is whoever is named in the copyright or
copyrights for the package.
"You" is you, if you're thinking about copying or distributing
this Package.
"Reasonable copying fee" is whatever you can justify on the
basis of media cost, duplication charges, time of people involved,
and so on. (You will not be required to justify it to the
Copyright Holder, but only to the computing community at large
as a market that must bear the fee.)
"Freely Available" means that no fee is charged for the item
itself, though there may be fees involved in handling the item.
It also means that recipients of the item may redistribute it
under the same conditions they received it.
1. You may make and give away verbatim copies of the source form of the
Standard Version of this Package without restriction, provided that you
duplicate all of the original copyright notices and associated disclaimers.
2. You may apply bug fixes, portability fixes and other modifications
derived from the Public Domain or from the Copyright Holder. A Package
modified in such a way shall still be considered the Standard Version.
3. You may otherwise modify your copy of this Package in any way, provided
that you insert a prominent notice in each changed file stating how and
when you changed that file, and provided that you do at least ONE of the
following:
a) place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet or
an equivalent medium, or placing the modifications on a major archive
site such as uunet.uu.net, or by allowing the Copyright Holder to include
your modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
4. You may distribute the programs of this Package in object code or
executable form, provided that you do at least ONE of the following:
a) distribute a Standard Version of the executables and library files,
together with instructions (in the manual page or equivalent) on where
to get the Standard Version.
b) accompany the distribution with the machine-readable source of
the Package with your modifications.
c) give non-standard executables non-standard names, and clearly
document the differences in manual pages (or equivalent), together
with instructions on where to get the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
5. You may charge a reasonable copying fee for any distribution of this
Package. You may charge any fee you choose for support of this
Package. You may not charge a fee for this Package itself. However,
you may distribute this Package in aggregate with other (possibly
commercial) programs as part of a larger (possibly commercial) software
distribution provided that you do not advertise this Package as a
product of your own. You may embed this Package's interpreter within
an executable of yours (by linking); this shall be construed as a mere
form of aggregation, provided that the complete Standard Version of the
interpreter is so embedded.
6. The scripts and library files supplied as input to or produced as
output from the programs of this Package do not automatically fall
under the copyright of this Package, but belong to whomever generated
them, and may be sold commercially, and may be aggregated with this
Package. If such scripts or library files are aggregated with this
Package via the so-called "undump" or "unexec" methods of producing a
binary executable image, then distribution of such an image shall
neither be construed as a distribution of this Package nor shall it
fall under the restrictions of Paragraphs 3 and 4, provided that you do
not represent such an executable image as a Standard Version of this
Package.
7. C subroutines (or comparably compiled subroutines in other
languages) supplied by you and linked into this Package in order to
emulate subroutines and variables of the language defined by this
Package shall not be considered part of this Package, but are the
equivalent of input as in Paragraph 6, provided these subroutines do
not change the language in any way that would cause it to fail the
regression tests for the language.
8. Aggregation of this Package with a commercial distribution is always
permitted provided that the use of this Package is embedded; that is,
when no overt attempt is made to make this Package's interfaces visible
to the end user of the commercial distribution. Such use shall not be
construed as a distribution of this Package.
9. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
The End
*/
|