HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
drives_sup.c
Go to the documentation of this file.
1 
11 #include "user_config.h"
12 
13 #include "drives_sup.h"
14 
18 
25 void hpdir_init()
26 {
27  memset(hpdir.model,0,sizeof(hpdir.model) -1); // 1
28 // 2
29  memset(hpdir.comment,0,sizeof(hpdir.comment) -1);
30  memset(hpdir.TYPE,0,sizeof(hpdir.TYPE) -1); // 3
31  hpdir.ID = 0; // 4
32  hpdir.mask_stat2 = 0; // 5
33  hpdir.id_stat2 = 0; // 6
34  hpdir.DEVICE_NUMBER = 0; // 7
35  hpdir.UNITS_INSTALLED = 0x8001; // 8
36  hpdir.CYLINDERS = 0; // 9
37  hpdir.HEADS= 0; // 10
38  hpdir.SECTORS= 0; // 11
39  hpdir.BYTES_PER_SECTOR = 0; // 12
40  hpdir.INTERLEAVE = 0; // 13
41  hpdir.FIXED = 1; // 14 ALWAYS 1
42 
43 // Computed values
44  hpdir.BLOCKS = 0;
45 }
46 
47 
48 // =============================================
57 long lif_dir_count(long blocks)
58 {
59  int scale = 0;
60  long num = 1;
61  while(blocks)
62  {
63  scale++;
64  blocks >>= 1;
65  }
66  scale>>=1;
67  while(scale--)
68  num <<=1;
69  return(num);
70 }
71 
72 
79 int hpdir_find_drive(char *model, int list, int verbose)
80 {
81  int len;
82  int errors = 0;
83  int driveinfo=0;
84  int found = 0;
85  FILE *cfg;
86  char *ptr;
87  char str[256];
88  char token[128];
89 
90  hpdir_init();
91 
92  cfg = fopen("hpdir.ini","rb");
93 
94 #ifndef LIF_STAND_ALONE
95  if(cfg == NULL)
96  cfg = fopen("/hpdir.ini","rb");
97 #else
98  if(cfg == NULL)
99  {
100  char name[2048];
101  len = readlink("/proc/self/exe", name, sizeof(name) -2);
102  dirname (name);
103  strcat (name, "/hpdir.ini");
104  cfg = fopen(name, "rb");
105  }
106 #endif
107 
108  if(cfg == NULL)
109  {
110  if(verbose)
111  printf("Error: hpdir.ini not found!\n");
112  return(0);
113  }
114 
115 // printf("Searching /hpdir.ini for model:%s\n", model);
116 
117  while( (ptr = fgets(str, sizeof(str)-2, cfg)) != NULL)
118  {
119  errors = 0;
120  ptr = str;
121 
122  trim_tail(ptr);
123  ptr = skipspaces(ptr);
124 
125  len = strlen(ptr);
126  if(!len)
127  continue;
128 
129 // Skip comments
130  if(*ptr == ';' || *ptr == '#' )
131  continue;
132 
133  if(*ptr == '[' && driveinfo == 1 )
134  break;
135 
136 // MODEL something else
137  ptr = get_token(ptr, token, sizeof(token)-2);
138 
139  if(MATCHI(token,"[driveinfo]"))
140  {
141  driveinfo = 1;
142  continue;
143  }
144 
145  if( driveinfo != 1)
146  continue;
147 
148  if(list)
149  {
150  printf("%s %s\n", token, ptr);
151  continue;
152  }
153 
154  if ( ! MATCHI(model,token) )
155  continue;
156 
157  hpdir_init();
158 
159  if(verbose)
160  printf("Model: %s found in hpdir.ini\n", model);
161 
162 // 1 Model
163  strncpy(hpdir.model,token,sizeof(hpdir.model)-2);
164 
165 // =
166  ptr = get_token(ptr, token, sizeof(token)-2);
167 
168 // 2 Comment
169  ptr = get_token(ptr, hpdir.comment, sizeof(hpdir.comment)-2);
170 
171 // 3 AMIGO/SS80/CS80
172  ptr = get_token(ptr, hpdir.TYPE, sizeof(hpdir.TYPE)-2);
173 
174 // 4 Identify ID
175  ptr = get_token(ptr, token, sizeof(token)-2);
176  hpdir.ID = get_value(token);
177 
178 // 5 MASK STAT 2
179  ptr = get_token(ptr, token, sizeof(token)-2);
181 
182 // 6 STAT2
183  ptr = get_token(ptr, token, sizeof(token)-2);
185 
186 // 7 BCD include model number
187  ptr = get_token(ptr, token, sizeof(token)-2);
189 
190 // 8 Units installed
191  ptr = get_token(ptr, token, sizeof(token)-2);
193 
194 // 9 Cylinders
195  ptr = get_token(ptr, token, sizeof(token)-2);
197 
198 // 10 Heads
199  ptr = get_token(ptr, token, sizeof(token)-2);
201 
202 // 11 Sectors
203  ptr = get_token(ptr, token, sizeof(token)-2);
205 
206 // 12 Bytes Per Block/Sector
207  ptr = get_token(ptr, token, sizeof(token)-2);
209 
210 // 13 Interleave
211  ptr = get_token(ptr, token, sizeof(token)-2);
213 
214 // Computed values
216 
217  if(errors)
218  {
219  if(verbose)
220  printf("Error /hpdir.ini parsing\n");
221  break;
222  }
223  found = 1;
224  break;
225 
226  } // while
227  fclose(cfg);
228  if(verbose && !found)
229  printf("Model: %s NOT found in hpdir.ini\n", model);
230  return(found);
231 }
get_value
MEMSPACE int32_t get_value(char *str)
get a number
Definition: parsing.c:432
fopen
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
Definition: posix.c:801
printf
MEMSPACE int printf(const char *format,...)
get_token
MEMSPACE char * get_token(char *str, char *token, int max)
return next token
Definition: parsing.c:323
MATCHI
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
Definition: parsing.c:183
strcat
MEMSPACE WEAK_ATR char * strcat(char *dest, const char *src)
Append string.
Definition: stringsup.c:199
fgets
MEMSPACE char * fgets(char *str, int size, FILE *stream)
get a string from stdin See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:432
hpdir_t::UNITS_INSTALLED
long UNITS_INSTALLED
Definition: drives_sup.h:42
hpdir_t::TYPE
char TYPE[32]
Definition: drives_sup.h:37
hpdir_t::HEADS
long HEADS
Definition: drives_sup.h:44
hpdir
hpdir_t hpdir
hpdir.ini file processing
Definition: drives_sup.c:15
hpdir_t::CYLINDERS
long CYLINDERS
Definition: drives_sup.h:43
trim_tail
MEMSPACE void trim_tail(char *str)
Trim White space and control characters from end of string.
Definition: parsing.c:49
hpdir_t::model
char model[MODEL_SIZE]
Definition: drives_sup.h:35
hpdir_t::BYTES_PER_SECTOR
long BYTES_PER_SECTOR
Definition: drives_sup.h:46
NULL
#define NULL
Definition: user_config.h:85
__file
FILE type structure.
Definition: posix.h:158
strlen
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
Definition: stringsup.c:144
drives_sup.h
fclose
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
Definition: posix.c:1261
hpdir_t::INTERLEAVE
long INTERLEAVE
Definition: drives_sup.h:47
hpdir_t::FIXED
long FIXED
Definition: drives_sup.h:48
hpdir_t::id_stat2
long id_stat2
Definition: drives_sup.h:40
hpdir_t::ID
long ID
Definition: drives_sup.h:38
token
MEMSPACE int token(char *str, char *pat)
Search for token in a string matching user pattern.
Definition: parsing.c:392
hpdir_t::mask_stat2
long mask_stat2
Definition: drives_sup.h:39
hpdir_t::comment
char comment[64]
Definition: drives_sup.h:36
strncpy
MEMSPACE WEAK_ATR char * strncpy(char *dest, const char *src, size_t size)
copy a string of at most N characters
Definition: stringsup.c:179
skipspaces
MEMSPACE char * skipspaces(char *ptr)
Skip white space in a string - tabs and spaces.
Definition: parsing.c:70
hpdir_t::BLOCKS
long BLOCKS
Definition: drives_sup.h:50
hpdir_init
void hpdir_init()
hpdir.ini file processing
Definition: drives_sup.c:25
dirname
MEMSPACE int dirname(char *str)
POSIX directory name of a filename. Return the index of the last '/' character.
Definition: posix.c:1577
hpdir_t::SECTORS
long SECTORS
Definition: drives_sup.h:45
hpdir_t
Definition: drives_sup.h:33
hpdir_find_drive
int hpdir_find_drive(char *model, int list, int verbose)
Find drive parameters in hpdir.ini file.
Definition: drives_sup.c:79
hpdir_t::DEVICE_NUMBER
long DEVICE_NUMBER
Definition: drives_sup.h:41
lif_dir_count
long lif_dir_count(long blocks)
LIF Directory blocks ~= sqrt(blocks);.
Definition: drives_sup.c:57