Fri Feb 21 23:31:34 1997 Miles Bader * device.c (dopen): Add MOD_FLAGS param, and detect read-only devices. (dev_clear_flags, store_device_open): Use MOD_FLAGS arg to dopen. Wed Feb 19 15:40:18 1997 Miles Bader * storeread.c (doc): Make doc string come after options. * device.c (dev_set_flags): Correctly check for unenforcable runs. * task.c: New file. * Makefile (SRCS): Add task.c. * store.h (store_task_class): New declaration. (store_task_create, _store_task_create, store_open): New declarations. * std.c (store_std_classes): Add &STORE_TASK_CLASS. * xinl.c: Renamed from store.c. * Makefile (SRCS): Change store.c to xinl.c. Mon Oct 21 22:03:19 1996 Thomas Bushnell, n/BSG * store.h: Add extern inline protection. * store.c: New file. * Makefile (SRCS): Add store.c. Tue Oct 8 14:31:51 1996 Miles Bader * kids.c (store_set_child_flags, store_clear_child_flags): New funcs. * store.h (store_set_child_flags, store_clear_child_flags): New decls. * stripe.c (stripe_set_flags, stripe_clear_flags): Remove functions. * remap.c (store_remap_class): Init set_flags & clear_flags fields. * stripe.c (store_ileave_class, store_concat_class): Likewise. * clone.c (store_clone): Copy name field. Mon Oct 7 14:56:27 1996 Miles Bader * device.c (dev_set_flags, dev_clear_flags): New functions. (store_device_class): Add dev_set_flags & dev_clear_flags. (dopen, dclose, enforced): New functions. (store_device_open): Use dopen. * store.h : New include. * stripe.c (stripe_set_flags, stripe_clear_flags): New functions. (store_ileave_create, store_concat_create): Add common backend flags from children to parent's flags. Sat Oct 5 00:23:45 1996 Miles Bader * create.c (store_create): Add special handling of STORE_INACTIVE in FLAGS. Fri Oct 4 23:44:51 1996 Miles Bader * create.c (store_create): Free *STORE when store_set_flags fails. * store.h (STORE_INNOCUOUS, STORE_INACTIVE): New macros. (store_is_securely_returnable): New function. * zero.c (store_zero_create): Set STORE_INNOCUOUS flags. Fri Sep 27 17:01:07 1996 Miles Bader * remap.c (store_remap): Zero SOURCE->end before calling _store_derive. Turn off STORE_ENFORCED flag in source if munging it. * device.c (store_device_open): Set *STORE's name appropriately. Tue Sep 24 15:15:27 1996 Miles Bader * zero.c : New include. (zero_open): When no size is specified, use the maximum off_t value, not the maximum size_t value. Mon Sep 23 12:55:43 1996 Miles Bader * storecat.c (main): Use new PARAMS var for passing args to STORE_ARGP. Thu Sep 19 11:12:44 1996 Miles Bader * argp.c (parse_opt): Correctly check for non-default type. * kids.c (store_decode_children): Change CLASSES to **. * encode.c (store_encode): Make CLASS var const. * file.c (_store_file_create): Make CLASS arg const. * store.h (struct store): Make CLASS field const. (_make_store): Make CLASS arg const. * make.c (_make_store): Make CLASS arg const. * stripe.c (ileave_decode, concat_decode): Make CLASSES arg const. * remap.c (remap_decode): Likewise. * create.c (store_create): Likewise. Wed Sep 18 15:14:51 1996 Miles Bader * argp.c (struct store_parsed): Change CLASSES field to be a pointer to a vector of class pointers. (find_class): Change CLASSES to be a vector of class pointers. * decode.c (store_decode): Change CLASSES to be a vector of class pointers. * store.h (struct store_class, struct store_argp_params, store_create, store_open, store_decode, store_decode_children): Change CLASSES args to be a pointer to a vector of class pointers. (_store_add_std_class): Declaration removed. (STORE_STD_CLASS): Macro removed. * std.c (store_std_classes): Make an initialized array. (_store_add_std_class): Function removed. * device.c (store_device_class): Renamed from dev_class; export. * file.c (store_file_class): Renamed from file_class; export. (store_file_byte_class): Renamed from file_byte_class; export. * zero.c (store_zero_class): Renamed from zero_class; export. * remap.c (store_remap_class): Renamed from remap_class; export. * open.c (store_query_class): Renamed from query_class; export. * stripe.c (store_ileave_class): Renamed from ileave_class; export. (store_concat_class): Renamed from concat_class; export. * zero.c (zero_open, zero_validate_name): New functions. (zero_class): Use them. * argp.c (store_parsed_open): Remove CLASSES argument. (struct store_parsed): Make some fields const. * store.h (store_parsed_open): Remove CLASSES argument. Tue Sep 17 14:48:48 1996 Miles Bader * store.h (struct store_class): Add OPEN and PARSE fields. (store_open): Make NAME const. (struct store_argp_params): New type. * device.c (dev_open): New function. (dev_class): Point to it. * file.c (fhile_open): New function. (file_class): Point to it. * argp.c (options, parse_opt): Add --store-type/-T & (hidden) --machdev/-m options, remove --device/-d option. (struct store_parsed): Rmove DEVICE field, add TYPE, DEFAULT_TYPE and CLASSES fields. (store_parsed_free): Free PARSED->type if it exists. (store_parsed_append_args): Use --store-type=... instead of --device. (store_parsed_open): When --store-type is specified, search CLASSES for that type, and call it's open function. * open.c (store_open): Make NAME const. (query_class): New variable. Fri Sep 13 14:33:24 1996 Miles Bader * argp.c (store_parsed_append_args, store_parsed_open, struct store_parsed): Use `device' instead of `machdev'. * encode.c (store_return): Only call store_enc_dealloc upon failure. (store_std_leaf_allocate_encoding): NUM_OFFSETS is NUM_RUNS * 2. * enc.c (store_enc_return): Don't call store_enc_dealloc. Thu Sep 12 17:23:35 1996 Miles Bader * storecat.c (main): Limit reads to 1M, and iterate until done. Use store_parsed_name to get store name for errors. Add program description. * store.h (STORAGE_REMAP, STORAGE_ZERO): New macros (temporary, to avoid touching hurd/hurd_types.h). 1996-09-12 Miles Bader * remap.c (store_remap): Call _store_derive after changing runs. * argp.c (store_parsed_name): New function. Wed Sep 11 12:38:44 1996 Miles Bader * decode.c (store_with_decoded_runs): New function. (store_std_leaf_decode): Call it. * store.h (store_with_decoded_runs): New declaration. * stripe.c (ileave_class, concat_class): Initialize the REMAP field. (stripe_remap): New function. * store.h (store_remap_create): New declaration. * zero.c (zero_remap): New function. (zero_class): Initialize remap field with zero_remap. * Makefile (SRCS): Add remap.c. * zero.c: New file, from null.c. * null.c: File removed. * store.h (store_zero_create): Renamed from store_null_create. * Makefile (SRCS): Replace null.c by zero.c. Tue Sep 10 17:05:03 1996 Miles Bader * remap.c: New file. * store.h (struct store_class): Add remap field. (store_remap): New declaration. * encode.c (store_return): New function. * enc.c (store_enc_return, store_return): New functions. * store.h (store_enc_return, store_return): New declarations. Mon Sep 9 12:32:11 1996 Miles Bader * rdwr.c (store_write, store_read): Use void * for buffers, not char *. * device.c (dev_write, dev_read): Likewise. * file.c (file_read, file_write, file_byte_read, file_byte_write): Likewise. * stripe.c (stripe_read, stripe_write): Likewise. * null.c (null_read, null_write): Likewise. * store.h (store_write_meth_t, store_read_meth_t, store_read, store_write): Make type of buffer void *, not char *. Sun Sep 8 14:14:05 1996 Miles Bader * device.c (dev_read, dev_write): Don't print debugging messages. * argp.c (options, parse_opt): Change short option names around. Wed Sep 4 13:01:19 1996 Miles Bader * argp.c (parse_opt): --layer isn't implemented, so say so. * storeread.c (main): Add new args to store_*_create calls. * storecat.c (main): Use new interface to store_argp. Wed Sep 3 11:00:00 1996 Miles Bader * argp.c (struct store_parsed): New type. (store_parsed_free, store_parsed_append_args, store_parsed_open): New functions. (parse_opt): Use new store_parsed structure instead of the old store_pars_hook, and just fill in the names rather than doing the open here. Don't take a struct store_argp_params as input any more; instead just take the address of a location in which to return a store_parsed structure. (struct store_parse_hook): Type removed. (free_hook, open_file): Functions removed. : New include. , : Includes removed. (options): --machdev/-m renamed to --device/-D. * store.h (struct store): Make log2_* fields unsigned. (STORE_NO_FILEIO): New macro. (STORE_HARD_READONLY, STORE_ENFORCED): Values changed. (STORE_GENERIC_FLAGS): Add STORE_NO_FILEIO. (struct store_argp_params): Type removed. (store_parsed_Free, store_parsed_open, store_parsed_append_args): New declarations. (struct store_parsed): New incomplete type. Mon Sep 2 18:56:26 1996 Miles Bader * store.h (store_open): New declaration. * open.c: New file. * Makefile (SRCS): Add open.c. Wed Aug 21 14:40:15 1996 Miles Bader * device.c (store_device_open): Don't call store_device_create if device_open fails. Tue Aug 20 14:37:33 1996 Miles Bader * argp.c (free_hook): Free H->params->args if necessary. (parse_opt): Initialize and fill in H->params->args when appropriate. : New include. Mon Aug 19 14:31:33 1996 Miles Bader * store.h (struct store_argp_params): Add return_args, args, & args_len fields. Fri Jul 19 16:16:46 1996 Miles Bader * decode.c (store_std_leaf_decode): Decode name too. Deal with NAME_LENGTH being 0. Sun Jun 16 22:49:55 1996 Miles Bader * argp.c (parse_opt): Use argp_failure. Thu May 23 10:54:06 1996 Miles Bader * argp.c (parse_opt): Honor ARGP_NO_ERRS. : New include. Wed May 22 00:14:18 1996 Miles Bader * argp.c (parse_opt): Use error instead of ERR for non-parsing errors. Rename ERR to PERR. Tue May 21 00:01:02 1996 Miles Bader * storecat.c (main): Delete most everything and use store arg parsing. (options, doc, args_doc): Variables removed. * create.c (store_create): Add FLAGS & CLASSES params. * rdwr.c (store_write): Return an error if STORE is readonly. * decode.c (store_decode): Add CLASSES param, use it instead of big hardwired switch statement. (store_default_leaf_decode): Use typedef for CREATE param. Pass in FLAGS arg when calling it. * encode.c (store_std_leaf_allocate_encoding): Renamed from store_default_leaf_allocate_encoding. Make STORE const. (store_std_leaf_encode): Renamed from store_default_leaf_encode. Make STORE const. Get class id from store->class->id. (store_encode): Use CLASS field instead of METHS field. * clone.c (store_clone): Copy the flags by passing them to _make_store. Use CLASS field instead of METHS field. * file.c (store_file_open, file_decode): New functions. (store_file_create): Always set STORE_ENFORCED. (file_class): Renamed from file_meths. Add more fields. Make std with _STORE_STD_CLASS. (file_byte_class): Renamed from file_byte_meths. , : New includes. * device.c (store_device_open, dev_decode): New functions. (store_device_create): Always set STORE_ENFORCED. (device_class): Renamed from device_meths. Add more fields. Make std with _STORE_STD_CLASS. : New include. * stripe.c (ileave_allocate_encoding, ileave_encode, ileave_decode, concat_allocate_encoding, concat_encode, concat_decode): New functions. (concat_class): New variable. (ileave_class): Renamed from stripe_class. More fields added. * store.h (struct store): Remove CLASS field. METHS field renamed CLASS. (STORE_IMMUTABLE_FLAGS, STORE_GENERIC_FLAGS, STORE_BACKEND_SPEC_BASE, STORE_BACKEND_FLAGS, STORE_READONLY, STORE_HARD_READONLY, STORE_ENFORCED): New macros. (struct store_class): Renamed from store_meths; all uses changed. Add ID, NAME, DECODE, SET_FLAGS, CLEAR_FLAGS, and NEXT fields. (store_std_leaf_decode): Renamed from store_default_leaf_decode. (store_std_leaf_create_t): New type. (_STORE_STD_CLASS): New macro. (struct store_argp_params): READONLY field deleted, FLAGS field added. (store_allocate_child_encodings, store_encode_children, store_decode_children, store_set_flags, store_clear_flags, store_file_open, store_device_open, store_null_create, store_std_classes, _store_add_std_class, store_allocate_child_encodings, store_encode_children, store_decode_children): New declarations (store_decode, store_create, store_device_create, _store_device_create, store_file_create, _store_file_create, store_ileave_create, store_concat_create, _make_store): Declarations updated. * make.c (_make_store): CLASS param removed, METHS param renamed CLASS; all callers changed. FLAGS param added. * stripe.c (store_ileave_create, store_concat_create): Likewise. * file.c (store_file_create, _store_file_create): Likewise. * device.c (store_device_create, _store_device_create): Likewise. * argp.c (open_machdev): Function removed. (parse_opt): Use store_device_open instead of open_machdev. (open_file, parse_opt): Add FLAGS arg to various function calls. * set.c (store_set_children): Function moved to kids.c. * null.c, flags.c, std.c, kids.c: New files. * Makefile (SRCS): Add null.c, flags.c, std.c, & kids.c. Sun May 12 10:12:24 1996 Miles Bader * argp.c (store_parse_opt): Put result in the passed-in params struct. Pass hook to open_{file,machdev}. (open_machdev): Use params to determine readonly-ness. (open_file): New function. * store.h (store_argp): New declaration. (struct store_argp_params): New type. * Makefile (SRCS): Add argp.c. * create.c (store_create): Steal SOURCE instead of cloning it. Sat May 11 01:17:39 1996 Miles Bader * argp.c: New file. * storeread.c (parse_opt): Use ARGP_ERR_UNKNOWN instead of EINVAL. * storecat.c (parse_opt): Likewise. Fri May 10 13:23:36 1996 Miles Bader * store.h (struct store_run): New type. (struct store): RUNS is a vector of runs, not offsets. (_store_device_create, _store_file_create, _make_store, store_set_runs, store_default_leaf_decode): Update declaration. * rdwr.c (store_find_first_run, store_next_run, store_write, store_read): Use store_run, not off_t, vectors; tweak accordingly. Rename variables called `RUNS' to `RUN', because although they're always vectors, they're used more often for their first element. * derive.c (_store_derive): Use store_run, not off_t, vectors; tweak accordingly. * device.c (store_device_create, _store_device_create): Likewise. * set.c (store_set_runs): Likewise. * storecat.c (main): Likewise. * storeread.c (main): Likewise. * make.c (_make_store): Likewise. * stripe.c (store_ileave_create, store_concat_create): Likewise. * file.c (store_file_create, _store_file_create): Likewise. * decode.c (store_default_leaf_decode): Convert the slice of the offset vector we're using into a vector of store_runs to pass to CREATE. Change type of CREATE accordingly. * encode.c (store_default_leaf_encode): Convert from the store_run vector to a off_t vector for encoding. * create.c (store_create): Use the real file_get_storage_info. (fgsi): Function removed. * store.h (struct store): Add CHILDREN & NUM_CHILDREN fields. Rename RUNS_LEN to NUM_RUNS (all uses changed). (store_set_children): New declaration. * make.c (_make_store): Initialize CHILDREN & NUM_CHILDREN. (store_free): Free all children too. * clone.c (store_clone): Clone children too. * set.c (store_set_children): New function. * stripe.c (store_ileave_create, store_concat_create): Use store_set_children. (stripe_clone): Function removed. (stripe_read, stripe_write): Get stripes from CHILDREN, not HOOK. * Makefile (storeread, storecat): Remove explicit dependency on program object file. Put include of ../Makeconf before dependencies. Mon May 6 15:20:53 1996 Miles Bader * store.h: Move big comment describing file_get_storage_info encoding to .