Home

GEONius.com
8-Jun-2008
E-mail

The Windshield in a World of Bugs*

General Purpose Library
 
Networking Library
 
C++ Library
 
EPOCH Library
 
Applications
Windshield Chasing Bug!
Software Conventions
 
Porting and
Supported Platforms
 
Acknowledgements
 
On the Shelf

*Apologies to Mark Knopfler!

 

Design/Implementation/Documentation Conventions

My library software follows certain conventions that you might find useful to know when using or examining the software:

More to follow when I think of it ...

 

Porting and Supported Platforms

In writing my software, I try make it as portable as possible. I make use of ANSI C libraries and header files as much as I can. Function declarations are made in both ANSI C and non-ANSI C form, so the code will compile whether your compiler is ANSI C-compliant or not. I've attempted to isolate compiler and OS dependencies in a header file, pragmatics.h, except for some networking and time definitions that are found in skt_util.h and tv_util.h, respectively.

The operating systems I'm using on my current project are:

In previous years, I used: SunOS 4.1.3 (on SPARC platforms), HP/UX, Lynx OS 2.4 (on a PowerPC), and VxWorks (on 68040-based systems). Even before that, I was on a project for which we ported earlier versions of much of this software from UNIX to VMS (VAX C and UCX TCP/IP).

The software distributions generally include the following Makefiles:

I mostly work on Linux and Solaris machines, so my code is most heavily exercised under those operating systems. On Windows, I build static libraries and link them to console applications. I have access to an old VMS 5.5 VAXstation, so I've also been able to compile and test my programs under VMS/UCX.

[Palm Pilot]

My ISP runs FreeBSD, allowing me to build my code on that platform, but not test it. With respect to PalmOS, I've built my libraries with PRC-Tools and I've created a number of StdIOPalm applications that use the libraries. Click on the Palm Pilot thumbnail to see the screen output from a port scanner, scanet.

 

Acknowledgements

Thanks to the following people for bug and porting reports:

I don't have the changes required for the various ports, but at least I know it's possible to port the code to the various platforms with relatively little trouble. My apologies to anyone I've left out, including those who reported bugs (e.g., in the quadword utilities and in the IPC utilities) before I started keeping a list here.

 

General Purpose Library (csoft.tgz, 953K  -  csoft.zip, 1205K)

Command Line Processing

opt_util - full-word option scanning package for UNIX-style command lines or strings.

Data Structures

gsc_util - generic depth-first and breadth-first graph search package.
hash_util - hash table creation/search package.
list_util - generic list handling package.
tpl_util - N-tuple creation and element retrieval.

Error Reporting

aperror - perror(3)-like error reporting function.

Files

drs_util - directory scanning package.
fnm_util - file name parsing package.

Interprocess Communication

The IPC packages provide named message queues, semaphores, and shared memory segments under UNIX and VxWorks. Earlier versions of the semaphore and shared memory packages were ported to VMS by Fred Shaklan and myself; message queues were not needed, but they could have been easily emulated using mailboxes. If I ever work on VMS again, I'll port the new packages; the package APIs are operating system-independent.

msq_util - high-level interface to named message queues (UNIX and VxWorks).
nob_util - named objects database package.
sem_util - high-level interface to named semaphores (UNIX and VxWorks).
shm_util - high-level interface to named shared memory (UNIX and VxWorks).

Memory Management

meo_util - memory operations.

String Manipulation

get_util - miscellaneous string scanning functions.
rex_util - full-featured regular expression matching and substitution package.
str_util - miscellaneous string handling functions.
wcs_util - wide-character string handling functions.

Time

bmw_util - benchmarking package.
ts_util - POSIX timespec manipulation package.
tv_util - UNIX timeval manipulation package.

Miscellaneous

bit_util - bit manipulation functions.
id3_util - ID3 tag access functions.
xqt_util - shell execution package (high-level interface to UNIX shell or VMS CLI).

Networking

The following packages provide high-level, but powerful, interfaces to TCP/IP and UDP/IP networking:

tcp_util - high-level interface for TCP/IP network socket I/O.
udp_util - high-level interface for UDP/IP network socket I/O.

And the following packages implement higher-level protocols layered on top of the TCP_UTIL package:

lfn_util - high-level interface for LF-terminated network I/O.
nft_util - FTP server framework (UNIX, VMS, and VxWorks).
xnet_util - high-level interface to xdr(3)-based network I/O.

The IOX package simplifies the writing of I/O-event-driven applications (e.g., network servers):

iox_util - I/O and timer event dispatcher.
port_util - simple listening ports for IOX dispatcher-based network servers.

The remaining packages are an assortment of networking support functions:

net_util - miscellaneous network functions.
skt_util - socket support functions.

Version-Independent Messages

These three packages implement version-independent messages as described in Appendix B of Robert Martin's Designing Object-Oriented C++ Applications Using the Booch Method. (What he calls attributed data trees, I call name/value lists.) VIM network streams are layered on top of the TCP_UTIL package.

nvp_util - name/value pairs.
nvl_util - lists of name/value pairs.
vim_util - version-independent message streams.

CORBA-Lite

The CORBA-Lite packages provide a lightweight implementation of CORBA TCP/IP messaging.

coli_util - CORBA messaging functions.
comx_util - CORBA marshaling functions.
gimx_util - GIOP marshaling utilities.
iiop_util - Internet Inter-ORB Protocol (IIOP) streams.
 

C++ EPOCH Version 3/4 Remote Access Library (cppsoft.zip, 842K)

[Studying C++ Book]

The ZIP file contains 3 library directories:

liberal - the general-purpose networking code and the EPOCH-specific code.
libxdr - an XDR library for use on platforms (e.g., Windows) that don't have an XDR library.
regex - the BOOST regular expression library for use on platforms (e.g., Windows) that don't have a regex(3) library.

The latter two libraries can be dropped if you build a subset of the liberal library. The classes in this library generally have counterparts in the libgpl library above.

Dispatcher - I/O events dispatcher.
HashTable - hash table creation and search.
OptionsScan - command-line options scanning.
Endpoint - network endpoint.
TcpEndpoint - TCP/IP endpoint.
BufferedTCP - buffered TCP/IP stream.
EpochStream - EPOCH network stream.
EpochMessage - EPOCH network message.
CortexStream - CORTEX network stream.
NVar - named variables.
NVarSet - sets of named variables.
NVarFile - files of named variable sets.
GSegment - EPOCH global variable segments.
GVar - EPOCH global variables.
 

C EPOCH Version 3/4 Library (libepl)

eco_util - EPOCH V4 CORBA-Lite utilities.
edb_util - EPOCH events database utilities.
epc_util - EPOCH network communications.
gv_util - EPOCH global variables.
ins_util - IN-SNEC CORTEX utilities.
nvf_util - named variable set files.
nvr_util - named variable utilities.
nvs_util - named variable sets.
 

Applications

anise
A pocket FTP/WWW server.
finc
Networking extensions to John Sadler's Ficl (Forth Inspired Command Language) interpreter.
gentle
A network server that provides each client with its own Tcl interpreter, extended with networking and hardware debugging commands. (Derived from earlier programs, nicl and picl!)
npath
Collects function-by-function metrics for C source code. The metrics include lines-of-code, Halstead's Software Science volume, McCabe's cyclomatic complexity, and NPATH.

Generic Tools

chafn - change file names.
colior - dump CORBA Interoperable Object Reference (IOR).
dump - formatted dump program.
duop - dump Opera files.
ffc - format file in columns.
gflow - graph flow.
tag311 - add/change ID3v1.1 tags on MP3 files.
talknet - network talk utility.

Project-Specific Tools (EPOCH)

cdc - EPOCH CORBA command database client.
const - EPOCH V3 node management client.
cornet - CORTEX network tool.
dart - EPOCH CORBA data retriever client.
db4u - EPOCH CORBA telemetry database client.
direct - EPOCH V3 directive submitter.
dirt - EPOCH CORBA directive submitter.
dumpaev - EPOCH archive dumper.
eire - EPOCH V3 events reader.
eniac - Enertec interactive client.
epcot - EPOCH-CORTEX telemetry server.
f4rd - EPOCH CORBA telemetry frame reader.
glop - EPOCH V3 global variable print.
milk - EPOCH device handler reader/writer.
noman - EPOCH CORBA node management client.
psic - EPOCH CORBA telemetry point service client.
stamp - EPOCH V3 stored command client.
v3net - generic EPOCH client/server network tool.
v4ever - EPOCH CORBA events reader.

Alex Measday  /  E-mail