File: parse.c

package info (click to toggle)
picp 0.4d-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 272 kB
  • ctags: 444
  • sloc: ansic: 4,614; makefile: 63
file content (293 lines) | stat: -rw-r--r-- 8,127 bytes parent folder | download
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
//-----------------------------------------------------------------------------
//
//	Cosmodog, Ltd.
//	415 West Superior Street
//	Chicago, IL   60610-3429
//	http://www.cosmodog.com
//
//-----------------------------------------------------------------------------
//
//	Copyright (C) 1999 Cosmodog, Ltd.
//
//	This program is free software; you can redistribute it and/or
//	modify it under the terms of the GNU General Public License
//	as published by the Free Software Foundation; either version 2
//	of the License, or (at your option) any later version.
//
//	This program is distributed in the hope that it will be useful,
//	but WITHOUT ANY WARRANTY; without even the implied warranty of
//	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//	GNU General Public License for more details.
//
//	You should have received a copy of the GNU General Public License
//	along with this program; if not, write to the Free Software
//	Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
//
//-----------------------------------------------------------------------------
//
//	This module reads the input file, autodetects the file type, and returns
//	bytes as requested.  Valid file formats are Intel Hex and Motorola
//	S-record.  Intel Hex is identified by a leading : on each line; Motorola S
//	is identified by a leading S on each line.  Anything else is an error.
//
//	Call InitParse() once to initialize, then call GetNextByte() to get each
//	character.  GetNextByte() will return false when out of characters.
//
//-----------------------------------------------------------------------------
//
//	TO DO: need to verify checksum after reading in a record
//
//-----------------------------------------------------------------------------
//
// INTEL HEX:
//	:nnaaaarrdddddd...cc
//		where
//			nn   - number of data bytes
//			aaaa - address
//			rr   - record type (0 = data record, 1 = end record, 2 = extended address)
//			dd   - data bytes
//			cc   - checksum (0 minus the sum of all other bytes excluding the colon)
//
//	example:
//		data record:
//			:1000A0006707610AAE02EE046707610A0D028E005F
//
//			number of data bytes: 0x10 (16)
//			address: 0x00A0
//			record type: 0x00 (data record)
//			data: 0x67 0x07 0x61 0x0A 0xAE 0x02 0xEE 0x04 0x67 0x07 0x61 0x0A 0x0D 0x02 0x8E 0x00
//			checksum: 0x5f
//
//		end record:
//			:00000001FF
//
//			number of data bytes: 0x00
//			address: 0x0000 (unused)
//			record type: 0x01 (end record)
//			data: none
//			checksum: 0xff
//			
//	the checksum is set such that the sum of all bytes (excluding the colon) equals zero
//	the end record is treated as end of segment, and does not terminate processing
//
//-----------------------------------------------------------------------------
//
// MOTOROLA S:
//	Sxnnaaaadddddd...cc
//		where:
//			Sx   - the record type
//			nn   - the number of data bytes
//			aaaa - address (aaaa for S1, aaaaaa for S2, aaaaaa for S3)
//			dd   - data bytes
//			cc   - checksum
//
//	S0: comment record
//	S1: data record with 16 bit address
//	S2: data record with 24 bit address
//	S3: data record with 32 bit address
//	S7: end of file record?
//	S9: end of file record
//
//-----------------------------------------------------------------------------

#include "includes.h"


#define INTEL_CHAR		':'
#define MOT_CHAR		'S'

#define DATARECORD	0				// data record
#define ENDRECORD	1				// end record
#define SEGADDRESS	2				// segment address record
#define EXTADDRESS	4				// extended linear address record (INHX32)

#define MAX_LINE_LEN	256

char lineBuffer[MAX_LINE_LEN];		// place to read records from the input file
int byteCount;						// number of bytes read in and ready to be returned
int byteIdx;						// index to the next byte to be read
UINT32 byteAddress;					// address of the next byte to be read



// convert two ascii hex characters to an 8-bit unsigned int
//  return zero if out of range (not ascii hex)
//
static UINT8 atoh(char high, char low)
{
	char hi = toupper(high);
	char lo = toupper(low);
	int value = 0;
	if(hi >= '0' && hi <= '9')
	{
		value += ((hi - '0')<<4);
	}
	else if(hi >= 'A' && hi <= 'F')
	{
		value += ((hi - 'A' + 0x0a)<<4);
	}
	if(lo >= '0' && lo <= '9')
	{
		value += (lo - '0');
	}
	else if(lo >= 'A' && lo <= 'F')
	{
		value += (lo - 'A' + 0x0a);
	}
	return(value);
}


// set up to interpret the line as an intel hex record
// DEBUG should verify the checksum here
//
static bool GetIntelRecord(FILE *theFile)
{
	bool done = false;
	switch(atoh(lineBuffer[7],lineBuffer[8]))
	{
		case DATARECORD:												// don't know how to cope with anything but 16-bit addresses for now
			byteIdx = 9;													// the ninth character is the high nibble of the first data byte
			byteCount = atoh(lineBuffer[1],lineBuffer[2]);
			byteAddress = atoh(lineBuffer[3],lineBuffer[4])*256 + atoh(lineBuffer[5],lineBuffer[6]);
			break;
			
		case ENDRECORD:
			break;
			
		case SEGADDRESS:
		case EXTADDRESS:
		default:
			done = true;
			break;
	}
	return(!done);
}


// interpret the line as a motorola s-record
// DEBUG should verify the checksum here
//
static bool GetMotRecord(FILE *theFile)
{
	bool done = false;
	

	switch(lineBuffer[1])
	{
		case '0':														// comment record, don't fail but show that it didn't give us any new bytes
			byteCount = atoh(lineBuffer[2],lineBuffer[3]) - 3;			// don't count the address or checksum
			byteAddress = 0;
			byteIdx = 8;
			fprintf(stderr,"comment: ");
			while(byteCount)
			{
				fputc(atoh(lineBuffer[byteIdx],lineBuffer[byteIdx+1]),stderr);	// display the comment
				byteIdx+=2;
				byteCount--;
			}
			fputc('\n',stderr);
			break;
			
		case '1':														// 16 bit address
			byteCount = atoh(lineBuffer[2],lineBuffer[3]) - 3;			// don't count the address or checksum
			byteAddress = (atoh(lineBuffer[4],lineBuffer[5])<<8) +
							atoh(lineBuffer[6],lineBuffer[7]);
			byteIdx = 8;
			break;
			
		case '2':														// 24 bit address
			byteCount = atoh(lineBuffer[2],lineBuffer[3]) - 4;			// don't count the address or checksum
			byteAddress = (atoh(lineBuffer[4],lineBuffer[5])<<16) +
							(atoh(lineBuffer[6],lineBuffer[7])<<8) +
							atoh(lineBuffer[8],lineBuffer[9]);
			byteIdx = 10;
			break;
			
		case '3':														// 32 bit address
			byteCount = atoh(lineBuffer[2],lineBuffer[3]) - 5;			// don't count the address or checksum
			byteAddress = (atoh(lineBuffer[4],lineBuffer[5])<<24) +
							(atoh(lineBuffer[6],lineBuffer[7])<<16) +
							(atoh(lineBuffer[8],lineBuffer[9])<<8) +
							atoh(lineBuffer[10],lineBuffer[11]);
			byteIdx = 12;
			break;
			
		case '9':														// end record
		case '7':														// also end record?
			break;

		default:
			done = true;
			break;
	}
	return(!done);
}


// read the next record, return true if read, false if end of file (or end record)
//
static bool GetRecord(FILE *theFile)
{
	bool done = false;
	bool overflow = false;		// set true when oversized line is read
	
	if( GetLine(theFile, lineBuffer, MAX_LINE_LEN,&done,&overflow) )
	{
		if(overflow)
		{
			fprintf(stderr,"Line too long, truncation occurred\n");
		}
		if(!done)
		{
			if(lineBuffer[0] == INTEL_CHAR)
			{
				done = !GetIntelRecord(theFile);
			}
			else if(lineBuffer[0] == MOT_CHAR)
			{
				done = !GetMotRecord(theFile);
			}
			else
			{
				fprintf(stderr,"Unrecognized record format: '%c'\n",lineBuffer[0]);
				done = true;
			}
		}
	}
	return(!done);					// return true if okay
}


// read the next byte, report its address and value
// read next record as needed
// return true if read okay, false if end of file or error
//
bool GetNextByte(FILE *theFile, UINT32 *address, UINT8 *data)
{
	bool fail = false;
	
	while(!byteCount && !fail)			// do as often as necessary to skip comment records
	{
		fail = !GetRecord(theFile);		// read in another record, if possible
	}
	if(!fail)
	{
		*data = atoh(lineBuffer[byteIdx],lineBuffer[byteIdx+1]);
		*address = byteAddress;
		byteIdx += 2;
		byteCount--;
		byteAddress++;
	}
	return(!fail);
}


void InitParse()
{
	byteCount = 0;
	byteIdx = 0;
	byteAddress = 0;
}