Skip to content

Commit 828f5e0

Browse files
committed
Add checkpoint
Use real names instead of documented names for some WTAS fields
1 parent 0815e34 commit 828f5e0

File tree

12 files changed

+272
-68
lines changed

12 files changed

+272
-68
lines changed

CHANGES.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
2+
History
3+
=======
4+
March 2016 (v1.0)
5+
* Initial release
6+
7+
April 2016 (v1.1)
8+
* Update to support MQ V9 pageset statistics
9+
* Improved formatting for import to Access
10+
* Fixed some mis-labelled columns
11+
12+
June 2016 (v1.1.1)
13+
* Add the "hidden" WTASCORR field
14+
* Print the buildtime to help know what version is in use
15+
* Clearer printing of which records were unrecognised
16+
17+
June 2016 (v1.1.2)
18+
* Add SQL mode to generate DDL corresponding to column headings
19+
* printWQ now has more descriptive column names
20+
21+
July 2016
22+
* Add progress indicator
23+
24+
August 2016
25+
* Add correlator field to better link WQ/WTID/WTAS
26+
* Add user-written content in docs directory. How to use SQL.
27+
28+
October 2016
29+
* Support reading from large (>2GB) files
30+
* SMF 115 subtype 231 (CHIN) records do not use same scale for qwhsdurn
31+
(though this seems to be undocumented)
32+
33+
February 2017
34+
* STCK durations printed as just microseconds value when in SQL mode. Still
35+
split as seconds/microseconds otherwise.
36+
37+
May 2017
38+
* Added support for the 903 SMF extensions
39+
* Using a VERS flag during the build to select correct base header file
40+
and features
41+
42+
Oct 2017
43+
* Found that some 115 subtypes do not have a QWHS structure correctly
44+
created; cannot rely on it being there
45+
46+
Jan 2018
47+
* QCTDNS structure is not initialised when there has been no activity
48+
* Can now process files that have not been downloaded with the RDW option,
49+
as some sites do not have suitable ftp package available. New option
50+
is "-f NORDW".

README.md

Lines changed: 0 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -27,56 +27,6 @@ See mqsmfcsv.doc for more information on using or building this code, and
2727
thoughts on possible enhancements to the code or this repository.
2828

2929

30-
History
31-
=======
32-
March 2016 (v1.0)
33-
* Initial release
34-
35-
April 2016 (v1.1)
36-
* Update to support MQ V9 pageset statistics
37-
* Improved formatting for import to Access
38-
* Fixed some mis-labelled columns
39-
40-
June 2016 (v1.1.1)
41-
* Add the "hidden" WTASCORR field
42-
* Print the buildtime to help know what version is in use
43-
* Clearer printing of which records were unrecognised
44-
45-
June 2016 (v1.1.2)
46-
* Add SQL mode to generate DDL corresponding to column headings
47-
* printWQ now has more descriptive column names
48-
49-
July 2016
50-
* Add progress indicator
51-
52-
August 2016
53-
* Add correlator field to better link WQ/WTID/WTAS
54-
* Add user-written content in docs directory. How to use SQL.
55-
56-
October 2016
57-
* Support reading from large (>2GB) files
58-
* SMF 115 subtype 231 (CHIN) records do not use same scale for qwhsdurn
59-
(though this seems to be undocumented)
60-
61-
February 2017
62-
* STCK durations printed as just microseconds value when in SQL mode. Still
63-
split as seconds/microseconds otherwise.
64-
65-
May 2017
66-
* Added support for the 903 SMF extensions
67-
* Using a VERS flag during the build to select correct base header file
68-
and features
69-
70-
Oct 2017
71-
* Found that some 115 subtypes do not have a QWHS structure correctly
72-
created; cannot rely on it being there
73-
74-
Jan 2018
75-
* QCTDNS structure is not initialised when there has been no activity
76-
* Can now process files that have not been downloaded with the RDW option,
77-
as some sites do not have suitable ftp package available. New option
78-
is "-f NORDW".
79-
8030
Pull requests
8131
=============
8232
Contributions to this package can be accepted under the terms of the

bin/aix/convH

0 Bytes
Binary file not shown.

bin/aix/mqsmfcsv

-208 KB
Binary file not shown.

bin/linux/convH

48 Bytes
Binary file not shown.

bin/linux/mqsmfcsv

-141 KB
Binary file not shown.

bin/win/mqsmfcsv.exe

7.5 KB
Binary file not shown.

mqsmfcsv.doc

2 KB
Binary file not shown.

src/Makefile.unix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CC=cc
33
CFLAGS= -I.
44
PLATFLAGS=
5-
SRC = mqsmf.c \
5+
SRC = \
66
smfDDL.c \
77
smfDate.c \
88
smfConv.c \
@@ -30,7 +30,8 @@ SRC = mqsmf.c \
3030
printQTST.c \
3131
printWQ.c \
3232
printWTAS.c \
33-
printWTID.c
33+
printWTID.c \
34+
mqsmf.c
3435

3536
HDR = mqsmfstruc.h \
3637
mqsmf.h

0 commit comments

Comments
 (0)