HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Data Structures | Macros | Typedefs | Functions
lifutils.h File Reference

LIF file utilities. More...

#include "user_config.h"

Go to the source code of this file.

Data Structures

struct  lifvol_t
 Disk Layout. More...
 
struct  lifdir_t
 Directory layout. More...
 
struct  lif_t
 Master LIF data structure Contains image file name Volume Structure Current Directory Entry read/write flag. More...
 

Macros

#define LIF_SECTOR_SIZE   256
 Depends on how much free ram we have. More...
 
#define LIF_DIR_SIZE   32
 LIF directory entry size. More...
 
#define LIF_DIR_RECORDS_PER_SECTOR   (LIF_SECTOR_SIZE/LIF_DIR_SIZE)
 

Typedefs

typedef struct stat stat_t
 

Functions

MEMSPACE void lif_help (int full)
 Help Menu for User invoked GPIB functions and tasks See: int gpib_tests(char *str) More...
 
MEMSPACE int lif_tests (int argc, char *argv[])
 LIF user tests. More...
 
MEMSPACE void * lif_calloc (long size)
 Allocate and clear memory Displays message on errors. More...
 
MEMSPACE void lif_free (void *p)
 Free allocated memory Displays message on errors. More...
 
MEMSPACE char * lif_stralloc (char *str)
 Allocate and copy a string Displays message on errors. More...
 
MEMSPACE FILElif_open (char *name, char *mode)
 Open a file that must exist Displays message on errors. More...
 
MEMSPACE stat_tlif_stat (char *name, stat_t *p)
 Stat a file Displays message on errors. More...
 
MEMSPACE int lif_seek_msg (FILE *fp, long offset, char *msg)
 
MEMSPACE long lif_read (lif_t *LIF, void *buf, long offset, int bytes)
 Read data from a LIF image Displays message on errors. More...
 
MEMSPACE int lif_write (lif_t *LIF, void *buf, long offset, int bytes)
 Write data to an LIF image Displays message on errors. More...
 
MEMSPACE int lif_chars (int c, int index __attribute__((unused)))
 Check if characters in a LIF volume or LIF file name are valid. More...
 
MEMSPACE int lif_B2S (uint8_t *B, uint8_t *name, int size)
 Convert LIF space padded string name into normal string. More...
 
MEMSPACE int lif_checkname (char *name)
 Check volume LIF name or directory name is valid. More...
 
MEMSPACE void lif_S2B (uint8_t *B, uint8_t *name, int size)
 Convert string to LIF directory record. More...
 
MEMSPACE int lif_fixname (uint8_t *B, char *name, int size)
 Convert name into a valid LIF name Only use the basename() part of the string and remove any file name extentions LIF names may have only these characters: [A-Z][A-Z0-09_]+ LIF names are converted to upper case LIF names are padded at the end with spaces Any invalid input characters are converted into spaces. More...
 
MEMSPACE void lif_vol2str (lif_t *LIF, uint8_t *B)
 Convert LIF volume records into byte vector. More...
 
MEMSPACE void lif_str2vol (uint8_t *B, lif_t *LIF)
 Convert byte vector into LIF volume records. More...
 
MEMSPACE void lif_dir2str (lif_t *LIF, uint8_t *B)
 Convert LIF directory records into byte vector. More...
 
MEMSPACE void lif_str2dir (uint8_t *B, lif_t *LIF)
 Convert byte vector into byte vector. More...
 
MEMSPACE uint8_t lif_BIN2BCD (uint8_t data)
 Convert number >= 0 and <= 99 to BCD. More...
 
MEMSPACE int lif_BCD2BIN (uint8_t bin)
 Convert BCD in the range 0 and <= 99 to BIN BCD format: each hex nibble has a digit 0 .. 9. More...
 
MEMSPACE void lif_time2lifbcd (time_t t, uint8_t *bcd)
 UNIX time to LIF BCD time format The BCD year is only the lower 2 digits of the year So We assume that values <= 70 are years >= 2000 BCD Day and Month start at 1 Note: If t == 0 we set ALL BCD digits to 0. More...
 
MEMSPACE time_t lif_lifbcd2time (uint8_t *bcd)
 convert BCD date into time_t value The BCD year is only the lower 2 digits of the year So We assume that values <= 70 are years >= 2000 BCD Day and Month start at 1 If ALL BCD digits are 0 we return 0 More...
 
MEMSPACE char * lif_ctime_gmt (time_t *tp)
 GMT version of POSIX ctime(). More...
 
MEMSPACE char * lif_lifbcd2timestr (uint8_t *bcd)
 
MEMSPACE void lif_image_clear (lif_t *LIF)
 File seek with error message. More...
 
MEMSPACE void lif_dir_clear (lif_t *LIF)
 Clear DIR part of LIF structure. More...
 
MEMSPACE void lif_vol_clear (lif_t *LIF)
 Clear VOL part of LIF structure. More...
 
MEMSPACE void lif_dump_vol (lif_t *LIF, char *msg)
 Dump LIF struture data for debugging. More...
 
MEMSPACE int lif_check_volume (lif_t *LIF)
 Check Volume Table for values in range. More...
 
MEMSPACE int lif_check_dir (lif_t *LIF)
 Validate Directory record values We only do basic out of bounds tests for this record Purged or EOF directory records are NOT checked and always return 1. More...
 
MEMSPACE lif_tlif_create_volume (char *imagename, char *liflabel, long dirstart, long dirsectors, long filesectors)
 Create LIF image with Volume, Directory and optional empty filespace. More...
 
MEMSPACE void lif_close_volume (lif_t *LIF)
 Free LIF structure and close any files. More...
 
MEMSPACE uint32_t lif_bytes2sectors (uint32_t bytes)
 Convert bytes into used sectors. More...
 
MEMSPACE void lif_rewinddir (lif_t *LIF)
 Rewind LIF directory Note readdir pre-increments the directory pointer index so we start at -1. More...
 
MEMSPACE void lif_closedir (lif_t *LIF)
 Close LIF directory clear and free lif_t structure. More...
 
MEMSPACE int lif_checkdirindex (lif_t *LIF, int index)
 Check directory index limits. More...
 
MEMSPACE int lif_readdirindex (lif_t *LIF, int index)
 Read LIF directory record number N. More...
 
MEMSPACE int lif_writedirindex (lif_t *LIF, int index)
 Write LIF drectory record number N. More...
 
MEMSPACE int lif_writedirEOF (lif_t *LIF, int index)
 Write LIF drectory EOF. More...
 
MEMSPACE lifdir_tlif_readdir (lif_t *LIF)
 Read a directory records from LIF image advancind directory index. More...
 
MEMSPACE lif_tlif_updatefree (lif_t *LIF)
 Update free space @parameter[in] *LIF: LIF structure. More...
 
MEMSPACE int lif_newdir (lif_t *LIF, long sectors)
 Allocate index of free directory record. More...
 
MEMSPACE lif_tlif_open_volume (char *name, char *mode)
 Open LIF directory for reading. More...
 
MEMSPACE void lif_dir (char *lifimagename)
 Display a LIF image file directory. More...
 
MEMSPACE int lif_find_file (lif_t *LIF, char *liflabel)
 Find a LIF image file by name. More...
 
MEMSPACE int lif_e010_pad_sector (long offset, uint8_t *wbuf)
 HP85 E010 ASCII LIF records ef [ff]* = no more data in this sector df size [ASCII] = data must fit inside this sector cf size [ASCII] = split data accross sector boundry, "6f" record continues at start of next sector Note: The 6f header is INSIDE the "cf" record and not included in the "cf" size value (yuck!) 6f size [ASCII] = split continue (always starts at sector boundry) df 00 00 ef [ff]* = EOF (df size = 0) pad with "ef" and "ff" until sector end size = 16 bits LSB MSB. More...
 
MEMSPACE int lif_ascii_string_to_e010 (char *str, long offset, uint8_t *wbuf)
 Convert an ASCII string into HP85 E010 format. More...
 
MEMSPACE long lif_add_ascii_file_as_e010_wrapper (lif_t *LIF, uint32_t offset, char *username)
 Add ASCII file as E010 data to LIF image - or compute converted data size To find size of formatted result only, without writting, set LIF to NULL. More...
 
MEMSPACE long lif_add_ascii_file_as_e010 (char *lifimagename, char *lifname, char *userfile)
 Convert and add ASCII file to the LIF image as type E010 format The basename of the lifname, without extensions, is used as the LIF file name. More...
 
MEMSPACE int lif_extract_e010_as_ascii (char *lifimagename, char *lifname, char *username)
 Extract E010 type file from LIF image and save as user ASCII file. More...
 
MEMSPACE int lif_extract_lif_as_lif (char *lifimagename, char *lifname, char *username)
 Extract a file from LIF image entry as standalone LIF image. More...
 
MEMSPACE long lif_add_lif_file (char *lifimagename, char *lifname, char *userfile)
 Add LIF file from another LIF image. More...
 
MEMSPACE int lif_del_file (char *lifimagename, char *lifname)
 Delete LIF file in LIF image. More...
 
MEMSPACE int lif_rename_file (char *lifimagename, char *oldlifname, char *newlifname)
 Rename LIF file in LIF image. More...
 
MEMSPACE int lif_rename_volume (char *lifimagename, char *volname)
 Rename LIF VOLUME NAME. More...
 
MEMSPACE long lif_create_image (char *lifimagename, char *liflabel, uint32_t dirsectors, uint32_t sectors)
 Create/Format a LIF new disk image This can take a while to run, about 1 min for 10,000,000 bytes. More...
 

Detailed Description

LIF file utilities.

Copyright © 2014-2020 Mike Gore, All rights reserved. GPL
See also
http://github.com/magore/hp85disk
http://github.com/magore/hp85disk/COPYRIGHT.md for Copyright details
Edit History
  • [1.0] [Mike Gore] Initial revision of file.
See also
lifutils.c for detailed command list

Definition in file lifutils.h.

Macro Definition Documentation

◆ LIF_DIR_RECORDS_PER_SECTOR

#define LIF_DIR_RECORDS_PER_SECTOR   (LIF_SECTOR_SIZE/LIF_DIR_SIZE)

Definition at line 30 of file lifutils.h.

◆ LIF_DIR_SIZE

#define LIF_DIR_SIZE   32

LIF directory entry size.

Definition at line 29 of file lifutils.h.

◆ LIF_SECTOR_SIZE

#define LIF_SECTOR_SIZE   256

Depends on how much free ram we have.

Definition at line 26 of file lifutils.h.

Typedef Documentation

◆ stat_t

typedef struct stat stat_t

Definition at line 23 of file lifutils.h.

Function Documentation

◆ lif_add_ascii_file_as_e010()

MEMSPACE long lif_add_ascii_file_as_e010 ( char *  lifimagename,
char *  lifname,
char *  userfile 
)

Convert and add ASCII file to the LIF image as type E010 format The basename of the lifname, without extensions, is used as the LIF file name.

Parameters
[in]lifimagenameLIF image name
[in]lifnameLIF file name
[in]userfileuserfile name
Returns
size of data written into to LIF image, or -1 on error FIXME assumes 256 byte secors

Definition at line 2109 of file lifutils.c.

Referenced by lif_tests().

◆ lif_add_ascii_file_as_e010_wrapper()

MEMSPACE long lif_add_ascii_file_as_e010_wrapper ( lif_t LIF,
uint32_t  offset,
char *  username 
)

Add ASCII file as E010 data to LIF image - or compute converted data size To find size of formatted result only, without writting, set LIF to NULL.

Parameters
[in]userfileUser ASCII file source
[in]*LIFWhere to write file if set (not NULL)
Returns
size of formatted result FIXME assumes 256 byte secors

Definition at line 2012 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010().

◆ lif_add_lif_file()

MEMSPACE long lif_add_lif_file ( char *  lifimagename,
char *  lifname,
char *  userfile 
)

Add LIF file from another LIF image.

Parameters
[in]lifimagenameLIF image name
[in]lifnameLIF file name to copy file to
[in]userfileLIF mage name copy file from
Returns
size of data written into to LIF image, or -1 on error FIXME assumes 256 byte secors

Definition at line 2491 of file lifutils.c.

Referenced by lif_tests().

◆ lif_ascii_string_to_e010()

MEMSPACE int lif_ascii_string_to_e010 ( char *  str,
long  offset,
uint8_t *  wbuf 
)

Convert an ASCII string into HP85 E010 format.

Parameters
[in]strASCII string to write
[in]offsetE010 data sector offset, only used in formatting wbuf with headers
[in]wbufE010 data result
Returns
size of E010 data FIXME assumes 256 byte secors

We ALWAYS pad a sector if: There is no room for a 0xdf single header

  • OR - Spliting a string takes more space then padding here (extra header)

Definition at line 1917 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010_wrapper().

◆ lif_B2S()

MEMSPACE int lif_B2S ( uint8_t *  B,
uint8_t *  name,
int  size 
)

Convert LIF space padded string name into normal string.

Parameters
[in]*BLIF name space padded
[out]*namestring result with traling spaces removed
[in]sizemax size of name @retrun 1 if string i ok or 0 if bad characters were found

Definition at line 485 of file lifutils.c.

Referenced by lif_str2dir(), and lif_str2vol().

◆ lif_BCD2BIN()

MEMSPACE int lif_BCD2BIN ( uint8_t  bin)

Convert BCD in the range 0 and <= 99 to BIN BCD format: each hex nibble has a digit 0 .. 9.

Parameters
[in]datanumber to convert to binary

Definition at line 678 of file lifutils.c.

Referenced by lif_lifbcd2time().

◆ lif_BIN2BCD()

MEMSPACE uint8_t lif_BIN2BCD ( uint8_t  data)

Convert number >= 0 and <= 99 to BCD.

Warning
we assume the number is in range. BCD format: each hex nibble has a digit 0 .. 9
Parameters
[in]datanumber to convert.
Returns
BCD value

Definition at line 668 of file lifutils.c.

Referenced by lif_time2lifbcd().

◆ lif_bytes2sectors()

MEMSPACE uint32_t lif_bytes2sectors ( uint32_t  bytes)

Convert bytes into used sectors.

Parameters
[in]bytessize in bytes
Returns
sectors FIXME assumes 256 byte sectors

Definition at line 1247 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010(), lif_check_dir(), lif_checkdirindex(), lif_dir(), lif_extract_e010_as_ascii(), and lif_open_volume().

◆ lif_calloc()

MEMSPACE void* lif_calloc ( long  size)

Allocate and clear memory Displays message on errors.

Parameters
[in]sizesize of memory to allocate
Returns
pointer to allocated memory

Definition at line 293 of file lifutils.c.

Referenced by lif_create_volume(), lif_open_volume(), lif_stralloc(), and td02lif().

◆ lif_chars()

MEMSPACE int lif_chars ( int  c,
int index   __attribute__(unused) 
)

Check if characters in a LIF volume or LIF file name are valid.

Parameters
[in]ccharacter to test
[in]indexindex of character in volume or file name @retrun c (optionally upper cased) or 0 if no match

Definition at line 449 of file lifutils.c.

Referenced by lif_B2S(), lif_checkname(), and lif_fixname().

◆ lif_check_dir()

MEMSPACE int lif_check_dir ( lif_t LIF)

Validate Directory record values We only do basic out of bounds tests for this record Purged or EOF directory records are NOT checked and always return 1.

Parameters
[in]*LIFImage structure
[in]debugdispaly diagostice messages
Returns
1 of ok, 0 on eeror

Definition at line 946 of file lifutils.c.

Referenced by lif_readdirindex(), lif_writedirindex(), and td0_save_lif_sector().

◆ lif_check_volume()

MEMSPACE int lif_check_volume ( lif_t LIF)

Check Volume Table for values in range.

Parameters
[in]*LIFImage structure
Returns
1 of ok, 0 on eeror

Definition at line 872 of file lifutils.c.

Referenced by lif_create_volume(), lif_open_volume(), lif_rename_volume(), and td0_save_lif_sector().

◆ lif_checkdirindex()

MEMSPACE int lif_checkdirindex ( lif_t LIF,
int  index 
)

Check directory index limits.

Parameters
[in]*LIFLIF Volume/Diractoy structure
[in]indexdirectory index
Returns
1 inside, 0 outside

Definition at line 1284 of file lifutils.c.

Referenced by lif_readdirindex(), and lif_writedirindex().

◆ lif_checkname()

MEMSPACE int lif_checkname ( char *  name)

Check volume LIF name or directory name is valid.

Parameters
[in]*namename to test @retrun 1 if the string is ok or 0 if invalid LIF name characters on input string

Definition at line 507 of file lifutils.c.

Referenced by lif_check_dir(), lif_check_volume(), lif_find_file(), lif_rename_file(), and lif_rename_volume().

◆ lif_close_volume()

MEMSPACE void lif_close_volume ( lif_t LIF)

Free LIF structure and close any files.

Parameters
[in]*LIFpointer to LIF Volume/Directoy structure
Returns
void

Definition at line 1220 of file lifutils.c.

Referenced by lif_closedir(), lif_create_image(), lif_create_volume(), lif_rename_volume(), and td02lif().

◆ lif_closedir()

MEMSPACE void lif_closedir ( lif_t LIF)

Close LIF directory clear and free lif_t structure.

Parameters
[in]*LIFpointer to LIF Volume/Directoy structure
Returns
0 on sucesss, -1 on error

Definition at line 1273 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010(), lif_add_lif_file(), lif_create_volume(), lif_del_file(), lif_dir(), lif_extract_e010_as_ascii(), lif_extract_lif_as_lif(), lif_open_volume(), lif_rename_file(), and lif_rename_volume().

◆ lif_create_image()

MEMSPACE long lif_create_image ( char *  lifimagename,
char *  liflabel,
uint32_t  dirsectors,
uint32_t  sectors 
)

Create/Format a LIF new disk image This can take a while to run, about 1 min for 10,000,000 bytes.

Parameters
[in]lifimagenameLIF disk image name
[in]liflabelLIF Volume Label name
[in]dirsectorsNumber of LIF directory sectors
[in]sectorstotal disk image size in sectors
Returns
bytes writting to disk image

Definition at line 2798 of file lifutils.c.

Referenced by format_drives(), and lif_tests().

◆ lif_create_volume()

MEMSPACE lif_t* lif_create_volume ( char *  imagename,
char *  liflabel,
long  dirstart,
long  dirsectors,
long  filesectors 
)

Create LIF image with Volume, Directory and optional empty filespace.

Parameters
[in]imagenameImage name
[in]liflabelVolume Label
[in]dirstartDirectory start sector
[in]dirsectorsDirectory sectors
Returns
pointer to LIF structure

0 causes time to return the current date

Definition at line 1062 of file lifutils.c.

Referenced by lif_create_image(), and lif_extract_lif_as_lif().

◆ lif_ctime_gmt()

MEMSPACE char* lif_ctime_gmt ( time_t tp)

GMT version of POSIX ctime().

Parameters
[in]tptime_t * time input.
Returns
buf[].
  • Example: "Thu Dec 8 21:45:05 EST 2011".
See also
ctime()
Warning
result is overwritten on each call.

Definition at line 766 of file lifutils.c.

Referenced by lif_lifbcd2timestr().

◆ lif_del_file()

MEMSPACE int lif_del_file ( char *  lifimagename,
char *  lifname 
)

Delete LIF file in LIF image.

Parameters
[in]lifimagenameLIF image name
[in]lifnameLIF file name
Returns
1 if deleted, 0 if not found, -1 error

Definition at line 2609 of file lifutils.c.

Referenced by lif_tests().

◆ lif_dir()

MEMSPACE void lif_dir ( char *  lifimagename)

Display a LIF image file directory.

Parameters
[in]lifimagenameLIF disk image name
Returns
-1 on error or number of files found

Definition at line 1734 of file lifutils.c.

Referenced by lif_tests(), and td02lif().

◆ lif_dir2str()

MEMSPACE void lif_dir2str ( lif_t LIF,
uint8_t *  B 
)

Convert LIF directory records into byte vector.

Parameters
[in]*LIFLIF image pointer
[out]Bbyte vector to pack data into
Returns
void

Definition at line 631 of file lifutils.c.

Referenced by lif_create_volume(), lif_writedirindex(), and td0_save_lif_sector().

◆ lif_dir_clear()

MEMSPACE void lif_dir_clear ( lif_t LIF)

Clear DIR part of LIF structure.

Parameters
[in]*LIFpointer to LIF structure
Returns
void

Definition at line 816 of file lifutils.c.

Referenced by lif_create_volume(), lif_newdir(), and lif_writedirEOF().

◆ lif_dump_vol()

MEMSPACE void lif_dump_vol ( lif_t LIF,
char *  msg 
)

Dump LIF struture data for debugging.

Parameters
[in]*LIFpointer to LIF structure
Returns
void

Definition at line 836 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010(), lif_checkdirindex(), lif_create_volume(), lif_open_volume(), lif_readdirindex(), lif_writedirindex(), and td0_save_lif_sector().

◆ lif_e010_pad_sector()

MEMSPACE int lif_e010_pad_sector ( long  offset,
uint8_t *  wbuf 
)

HP85 E010 ASCII LIF records ef [ff]* = no more data in this sector df size [ASCII] = data must fit inside this sector cf size [ASCII] = split data accross sector boundry, "6f" record continues at start of next sector Note: The 6f header is INSIDE the "cf" record and not included in the "cf" size value (yuck!) 6f size [ASCII] = split continue (always starts at sector boundry) df 00 00 ef [ff]* = EOF (df size = 0) pad with "ef" and "ff" until sector end size = 16 bits LSB MSB.

Example: 000080e0 : 4b 7c 22 0d cf 29 00 31 34 20 44 49 53 50 20 22 : K|"..).14 DISP " 000080f0 : 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 5f : _ 00008100 : 6f 10 00 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f : o.._____________ 00008110 : 5f 22 0d df 2b 00 31 35 20 44 49 53 50 20 22 20 : _"..+.15 DISP "

cf 29 00 (19 is to sector end) (new sector start with 6F 10 00 (10 is remainder) So 29 = 19 and 10 (yuck!)

PAD wbuf to sector boundry

Parameters
[in]offsetsector offset
[in]wbufE010 PAD data
Returns
size of E010 PAD data FIXME assumes 256 byte secors

Definition at line 1877 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010_wrapper(), and lif_ascii_string_to_e010().

◆ lif_extract_e010_as_ascii()

MEMSPACE int lif_extract_e010_as_ascii ( char *  lifimagename,
char *  lifname,
char *  username 
)

Extract E010 type file from LIF image and save as user ASCII file.

Parameters
[in]lifimagenameLIF disk image name
[in]lifnamename of file in LIF image
[in]usernamename to call the extracted image
Returns
1 on sucess or 0 on error FIXME assumes 256 byte secors

Definition at line 2213 of file lifutils.c.

Referenced by lif_tests().

◆ lif_extract_lif_as_lif()

MEMSPACE int lif_extract_lif_as_lif ( char *  lifimagename,
char *  lifname,
char *  username 
)

Extract a file from LIF image entry as standalone LIF image.

Parameters
[in]lifimagenameLIF disk image name to extract file from
[in]lifnamename of file in LIF image we want to extract
[in]usernamenew LIF file to create
Returns
1 on sucess or 0 on error FIXME assumes 256 byte secors

Definition at line 2390 of file lifutils.c.

Referenced by lif_tests().

◆ lif_find_file()

MEMSPACE int lif_find_file ( lif_t LIF,
char *  liflabel 
)

Find a LIF image file by name.

Parameters
[in]*LIFdirectory pointer
[in]liflabelFile name in LIF image
Returns
Directory index of record

Definition at line 1815 of file lifutils.c.

Referenced by lif_add_lif_file(), lif_del_file(), lif_extract_e010_as_ascii(), lif_extract_lif_as_lif(), and lif_rename_file().

◆ lif_fixname()

MEMSPACE int lif_fixname ( uint8_t *  B,
char *  name,
int  size 
)

Convert name into a valid LIF name Only use the basename() part of the string and remove any file name extentions LIF names may have only these characters: [A-Z][A-Z0-09_]+ LIF names are converted to upper case LIF names are padded at the end with spaces Any invalid input characters are converted into spaces.

Parameters
[out]*Boutput LIF string
[in]*nameinput string
[in]sizemaximum size of output string
Returns
length of result

Definition at line 549 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010(), lif_create_volume(), lif_rename_file(), and lif_rename_volume().

◆ lif_free()

MEMSPACE void lif_free ( void *  p)

Free allocated memory Displays message on errors.

Parameters
[in]ppointer to memory to free
Returns
pointer to allocated memory

Definition at line 308 of file lifutils.c.

Referenced by lif_close_volume().

◆ lif_help()

MEMSPACE void lif_help ( int  full)

Help Menu for User invoked GPIB functions and tasks See: int gpib_tests(char *str)

Returns
void

Definition at line 111 of file lifutils.c.

Referenced by help(), and lif_tests().

◆ lif_image_clear()

MEMSPACE void lif_image_clear ( lif_t LIF)

File seek with error message.

Clear LIF structure

Parameters
[in]*LIFpointer to LIF structure
Returns
void

Definition at line 806 of file lifutils.c.

Referenced by lif_create_volume(), and td02lif().

◆ lif_lifbcd2time()

MEMSPACE time_t lif_lifbcd2time ( uint8_t *  bcd)

convert BCD date into time_t value The BCD year is only the lower 2 digits of the year So We assume that values <= 70 are years >= 2000 BCD Day and Month start at 1 If ALL BCD digits are 0 we return 0

Parameters
[in]*bcdpacked 6 byte BCD LIF time YY MM DD HH MM SS
Returns
time_t result or 0 if all bcd digits were 0

Definition at line 724 of file lifutils.c.

Referenced by lif_extract_e010_as_ascii(), and lif_lifbcd2timestr().

◆ lif_lifbcd2timestr()

MEMSPACE char* lif_lifbcd2timestr ( uint8_t *  bcd)

@breif convert BCD time into a date string The BCD year is only the lower 2 digits of the year So We assume that values <= 70 are years >= 2000 BCD Day and Month start at 1 If BCD string is all zero we return <EMPTY>

Parameters
[in]*bcdpcked 6 byte BCD LIF time YY MM DD HH MM SS
Returns
string result

Definition at line 786 of file lifutils.c.

Referenced by lif_dir(), lif_dump_vol(), and td0_save_lif_sector().

◆ lif_newdir()

MEMSPACE int lif_newdir ( lif_t LIF,
long  sectors 
)

Allocate index of free directory record.

Parameters
[in]*LIFLIF pointer
[in]sectorstry to find specified free space
Returns
index or free record or -1 on error

Definition at line 1507 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010(), and lif_add_lif_file().

◆ lif_open()

MEMSPACE FILE* lif_open ( char *  name,
char *  mode 
)

Open a file that must exist Displays message on errors.

Parameters
[in]*namefile name of LIF image
[in]*modeopen mode - see fopen
Returns
FILE * pointer

Definition at line 339 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010_wrapper(), lif_create_volume(), lif_extract_e010_as_ascii(), and lif_open_volume().

◆ lif_open_volume()

MEMSPACE lif_t* lif_open_volume ( char *  name,
char *  mode 
)

Open LIF directory for reading.

Parameters
[in]*namefile name of LIF image
[in]*mode"rb" = read, "rb+" = read/write
Returns
LIF pointer on sucesses or NULL on error

Definition at line 1644 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010(), lif_add_lif_file(), lif_del_file(), lif_dir(), lif_extract_e010_as_ascii(), lif_extract_lif_as_lif(), lif_rename_file(), and lif_rename_volume().

◆ lif_read()

MEMSPACE long lif_read ( lif_t LIF,
void *  buf,
long  offset,
int  bytes 
)

Read data from a LIF image Displays message on errors.

Parameters
[in]*LIFlif_t structure with file pointers
[out]*bufread buffer
[in]offsetread offset
[in]bytesnumber of bytes to read
Returns
bytes read or 0 on error

Initial file position

Definition at line 396 of file lifutils.c.

Referenced by lif_add_lif_file(), lif_extract_e010_as_ascii(), lif_extract_lif_as_lif(), lif_open_volume(), and lif_readdirindex().

◆ lif_readdir()

MEMSPACE lifdir_t* lif_readdir ( lif_t LIF)

Read a directory records from LIF image advancind directory index.

See also
lif_open_volume() nOte: skip all purged LIF directory records
Parameters
[in]*LIFto LIF Volume/Diractoy structure
Returns
directory structure or NULL

Definition at line 1403 of file lifutils.c.

◆ lif_readdirindex()

MEMSPACE int lif_readdirindex ( lif_t LIF,
int  index 
)

Read LIF directory record number N.

Parameters
[in]*LIFto LIF Volume/Diractoy structure
[in]indexdirector record number
Returns
1 on success, 0 if error, bad directory record or outside of directory limits

Definition at line 1302 of file lifutils.c.

Referenced by lif_dir(), lif_find_file(), lif_newdir(), lif_readdir(), and lif_updatefree().

◆ lif_rename_file()

MEMSPACE int lif_rename_file ( char *  lifimagename,
char *  oldlifname,
char *  newlifname 
)

Rename LIF file in LIF image.

Parameters
[in]lifimagenameLIF image name
[in]oldlifnameold LIF file name
[in]newlifnamenew LIF file name
Returns
1 if renamed, 0 if not found, -1 error

Definition at line 2669 of file lifutils.c.

Referenced by lif_tests().

◆ lif_rename_volume()

MEMSPACE int lif_rename_volume ( char *  lifimagename,
char *  volname 
)

Rename LIF VOLUME NAME.

Parameters
[in]lifimagenameLIF image name
[in]volnamenew LIF Volume name
Returns
1 if renamed, 0 if not found, -1 error

Definition at line 2730 of file lifutils.c.

Referenced by lif_tests().

◆ lif_rewinddir()

MEMSPACE void lif_rewinddir ( lif_t LIF)

Rewind LIF directory Note readdir pre-increments the directory pointer index so we start at -1.

Parameters
[in]*LIFpointer to LIF Volume/Directoy structure
Returns
void

Definition at line 1261 of file lifutils.c.

Referenced by lif_create_volume(), and lif_updatefree().

◆ lif_S2B()

MEMSPACE void lif_S2B ( uint8_t *  B,
uint8_t *  name,
int  size 
)

Convert string to LIF directory record.

Parameters
[out]*BLIF result with added trailing spaces
[in]*namestring
[in]sizemax size of B @retrun 1 if the string is ok or 0 if invalid LIF name characters on input string

Definition at line 526 of file lifutils.c.

Referenced by lif_dir2str(), and lif_vol2str().

◆ lif_seek_msg()

MEMSPACE int lif_seek_msg ( FILE fp,
long  offset,
char *  msg 
)

Displays message on errors

Parameters
[in]*fpFILE pointer
[in]offsetfile offset
[in]mesguser string as part of error message
Returns
1 on success, 0 on error

Definition at line 374 of file lifutils.c.

Referenced by lif_read(), and lif_write().

◆ lif_stat()

MEMSPACE stat_t* lif_stat ( char *  name,
stat_t p 
)

Stat a file Displays message on errors.

Parameters
[in]*namefile name of LIF image
[in]*pstart_t structure pointer for result
Returns
NULL on error or copy of p

Definition at line 357 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010(), and lif_open_volume().

◆ lif_str2dir()

MEMSPACE void lif_str2dir ( uint8_t *  B,
lif_t LIF 
)

Convert byte vector into byte vector.

Parameters
[in]Bbyte vector to extract data from
[out]LIFlifdir_t structure pointer
Returns
void

Definition at line 649 of file lifutils.c.

Referenced by lif_readdirindex(), and td0_save_lif_sector().

◆ lif_str2vol()

MEMSPACE void lif_str2vol ( uint8_t *  B,
lif_t LIF 
)

Convert byte vector into LIF volume records.

Parameters
[in]Bbyte vector
[out]*LIFLIF image structure
Returns
void

Definition at line 608 of file lifutils.c.

Referenced by lif_open_volume(), and td0_save_lif_sector().

◆ lif_stralloc()

MEMSPACE char* lif_stralloc ( char *  str)

Allocate and copy a string Displays message on errors.

Parameters
[in]strString to allocate and copy
Returns
pointer to allocated memory with string copy

Definition at line 322 of file lifutils.c.

Referenced by lif_create_volume(), lif_open_volume(), td02lif(), and td0_open().

◆ lif_tests()

MEMSPACE int lif_tests ( int  argc,
char *  argv[] 
)

LIF user tests.

Returns
1 matched token, 0 if not

format LIF image

format LIF image

Definition at line 139 of file lifutils.c.

Referenced by user_task().

◆ lif_time2lifbcd()

MEMSPACE void lif_time2lifbcd ( time_t  t,
uint8_t *  bcd 
)

UNIX time to LIF BCD time format The BCD year is only the lower 2 digits of the year So We assume that values <= 70 are years >= 2000 BCD Day and Month start at 1 Note: If t == 0 we set ALL BCD digits to 0.

Parameters
[in]tUNIX time_t time value
[out]*bcdpcked 6 byte BCD LIF time YY MM DD HH MM SS
See also
time() in time.c
Returns
void

Definition at line 694 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010(), and lif_create_volume().

◆ lif_updatefree()

MEMSPACE lif_t* lif_updatefree ( lif_t LIF)

Update free space @parameter[in] *LIF: LIF structure.

Returns
: LIF or NULL on error

Update free

Definition at line 1430 of file lifutils.c.

Referenced by lif_create_volume(), lif_del_file(), lif_newdir(), and lif_open_volume().

◆ lif_vol2str()

MEMSPACE void lif_vol2str ( lif_t LIF,
uint8_t *  B 
)

Convert LIF volume records into byte vector.

Parameters
[in]*LIFLIF image structure
[out]Bbyte vector to pack data into
Returns
void

Definition at line 586 of file lifutils.c.

Referenced by lif_create_volume(), and lif_rename_volume().

◆ lif_vol_clear()

MEMSPACE void lif_vol_clear ( lif_t LIF)

Clear VOL part of LIF structure.

Parameters
[in]*LIFpointer to LIF structure
Returns
void

Definition at line 826 of file lifutils.c.

Referenced by lif_close_volume().

◆ lif_write()

MEMSPACE int lif_write ( lif_t LIF,
void *  buf,
long  offset,
int  bytes 
)

Write data to an LIF image Displays message on errors.

Parameters
[in]*LIFlif_t structure with file pointers
[in]*bufwrite buffer
[in]offsetwrite offset
[in]bytesnumber of bytes to write
Returns
bytes read or 0 on error

Initial file position

Definition at line 424 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010_wrapper(), lif_add_lif_file(), lif_create_volume(), lif_extract_lif_as_lif(), lif_rename_volume(), and lif_writedirindex().

◆ lif_writedirEOF()

MEMSPACE int lif_writedirEOF ( lif_t LIF,
int  index 
)

Write LIF drectory EOF.

Parameters
[in]*LIFLIF Volume/Diractoy structure
[in]indexdirector record number
Returns
1 on success, 0 on error and outsize directory limits

Definition at line 1387 of file lifutils.c.

Referenced by lif_extract_lif_as_lif(), lif_newdir(), and lif_updatefree().

◆ lif_writedirindex()

MEMSPACE int lif_writedirindex ( lif_t LIF,
int  index 
)

Write LIF drectory record number N.

Parameters
[in]*LIFLIF Volume/Diractoy structure
[in]indexdirector record number
Returns
1 on success, 0 if error, bad directory record or outside of directory limits

Definition at line 1349 of file lifutils.c.

Referenced by lif_add_ascii_file_as_e010(), lif_add_lif_file(), lif_del_file(), lif_extract_lif_as_lif(), lif_newdir(), lif_rename_file(), and lif_writedirEOF().