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 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
|
2019-07-13 Sergey Poznyakoff <gray@gnu.org>
Version 5.2
2019-07-10 Sergey Poznyakoff <gray@gnu.org>
Switch to grecs b06fb7d3
2016-08-25 Sergey Poznyakoff <gray@gnu.org>
Update the documentation
2016-08-25 Sergey Poznyakoff <gray@gnu.org.ua>
Get rid of hashtab.c, use symtab from grecs instead.
* grecs: Pull new version.
* src/hashtab.c: Remove.
* po/POTFILES.in: Remove src/hashtab.c
* src/Makefile.am (direvent_SOURCES): Remove hashtab.c
* src/config.c (grecs_parser_options): Set GRECS_OPTION_QUOTED_STRING_CONCAT.
* src/direvent.h: Remove hashtab prototypes.
* src/event.c: Use grecs_symtab.
* src/watcher.c: Likewise.
Rename a test case
* tests/Makefile.am: Update.
* tests/testsuite.at: Update.
* tests/conv.at: Rename to tests/file.at
Fix new functionality on BSD hosts. Some minor fixes.
* src/direvent.c (main): Call watchpoint_gc in the main loop.
* src/direvent.h (watchpoint) <isdir>: New member.
(deliver_ev_create,subwatcher_create): Change signature.
* src/ev_kqueue.c (sysev_add_watch): Always monitor NOTE_DELETE.
(process_event): Special handling for file deletion.
* src/handler.c (handler_list_remove): Return the number of elements
remaining in the list.
* src/hashtab.c (hashtab_remove): Ignore unexisting entries
* src/progman.c (close_fds): Determine the highest used fd by
dup'ing standard input.
* src/watcher.c (watchpoint_install): Always increase refcnt.
(watchpoint_gc_list): New variable.
(watchpoint_gc): Iterate over watchpoint_gc_list deleting
elements from it.
(watchpoint_suspend): Install sentinels only for top-level
watchpoints that were removed.
(sentinel_handler_run): Deliver the create event.
(watchpoint_install_sentinel): Monitor generic create event.
(convert_watcher): Remove.
(subwatcher_create): Remove the isdir parameter.
(watch_subdirs): Exit early if the watchpoint is not a
directory.
(deliver_ev_create): Change signature. Take both directory
and file name as arguments. All uses changes.
* tests/conv.at: Clear expected stderr.
* tests/sent.at: Fix race condition.
Add new tests + minor fixes.
* src/direvent.h (filpatlist_is_empty): New proto.
* src/fnpat.c (filpatlist_is_empty): New function.
* src/watcher.c (convert_watcher): Fix error handling.
(watchpoint_init): Remove spurious notice.
* tests/conv.at: New test.
* tests/sent.at: New test.
* tests/Makefile.am: Add new tests.
* tests/testsuite.at: Likewise.
Further modify struct handler.
Instead of accomodating two types of functionality, the new struct handler
has a pointer to the function that is responsible for handling the event,
and a pointer to data for that function (closure). Additionally, a
pointer to deallocator function is also provided.
Existing functionality is reimplemented using this new struct. New
types of handlers can easily be added.
* src/config.c (eventconf)<ev_mask,fpat,prog_handler>: New members
<handler>: Remove.
All uses changed.
* src/direvent.h (filpatlist_t)
(event_handler_fn, handler_free_fn): New data types.
(handler): Remove union and type. Add two pointer to functions
that are to implement the functionality (run and free) and a pointer
to data for them.
(prog_handler): New struct.
(prog_handler_alloc,prog_handler_free)
(prog_handler_envrealloc)
(watchpoint_run_handlers): New protos.
(run_handler,filename_pattern_free)
(filename_pattern_match): Remove
(filpatlist_add, filpatlist_add_exact)
(filpatlist_destroy, filpatlist_match): New protos.
* src/ev_inotify.c (process_event): Use watchpoint_run_handlers
* src/ev_kqueue.c: Likewise.
* src/fnpat.c: Major rewrite.
* src/handler.c (handler_copy)
(handler_envrealloc,handler_add_pattern)
(handler_add_exact_filename): Remove
(handler_alloc): Change arguments.
(watchpoint_run_handlers): New function.
* src/progman.c (prog_handler_alloc)
(prog_handler_envrealloc): New functions.
* src/watcher.c: Reimplement sentinel watchers.
Rename: struct dirwatcher -> struct watchpoint
Implement sentinel handlers.
Sentinel handlers wait for a creation of a directory. When
the target directory is created, the sentinel handler installs
the actual handler for that directory and destroys itself. Thus,
basically sentinel handlers provide a way to defer setting a
watchpoint on a directory until it is created.
* src/handler.c: New source.
* src/Makefile.am (direvent_SOURCES): Add handler.c
* src/config.c: Move handler-specific stuff to handler.c
* src/direvent.h: Rename direvent_handler_ to handler_
(handler_free, handler_copy)
(handler_envrealloc)
(dirwatcher_init,dirwatcher_gc): New protos.
(dirwatcher_install_ptr)
(dirwatcher_install_sentinel): New protos.
* src/ev_inotify.c (process_event): Special handling for
IN_IGNORED.
(sysev_select): Ignore signo==0.
* src/hashtab.c (hashtab_remove): Add missing return statement.
(hashtab_foreach): Break out of look instead of returning from
it.
* src/progman.c (run_sentinel): Implement.
* src/watcher.c (+dirwatcher_install_ptr): New function.
(dirwatcher_gc): New function.
Bugfix
* src/hashtab.c (hashent_list_append): Fix allocated memory size.
Initial preparation for having distinct handler types.
* src/direvent.h (pattern_type): New enum, instead of
PAT_* defines.
(filename_pattern): use enum pattern_type.
(handler_type): New enum.
(handler): Can be of two types: HANDLER_EXTERN, which handles
external programs and is equivalent to the prior content of
the structure, and HANDLER_SENTINEL, which is planned to be
a built-in handler for configuring watchpoints for newly created
directories. All uses changed.
(dirwatcher) <refcnt>: Change type to size_t.
(handler_alloc,handler_add_pattern)
(handler_add_exact_filename): New protos.
* src/hashtab.c: Provisions for safe adding and removing
from the hashtable when iterating over it.
(hashtab) <flags>: Removed.
<itr_level, list_new, list_del>: New members.
(hashtab_remove): When iterating, place pointer to the removed
entry in list_del instead of actually removing it.
(hashtab_lookup_or_install): When iterating, add a pointer to
the newly created entry to the list_new list, instead of adding
it immediately.
(hashtab_foreach): Flush list_del and list_new at the end of
the topmost iteration.
* src/config.c (handler_alloc): Rename to handler_copy
(handler_alloc): New function.
(handler_free): Two types of handlers.
(handler_add_pattern)
(handler_add_exact_filename): New functions.
(file_name_pattern): Takes struct handler * as its
first argument.
(cb_file_pattern): Change accordingly.
* src/fnpat.c (filename_pattern_free): Handle PAT_EXACT.
(filename_pattern_match): Likewise.
* src/progman.c (run_handler): Two types of handlers.
* src/watcher.c (dirwatcher_install): Restore missing gettext
marker.
Allocate handler_list.
(dirwatcher_init): Convert non-directory watchpoints to directory
ones.
2016-08-20 Sergey Poznyakoff <gray@gnu.org>
Fix environment modification code
Port fixes from rush
2016-08-13 Sergey Poznyakoff <gray@gnu.org>
Clean-up handler initialization routines.
In particular, this change allows for placing several environ statements
in a single watcher statement. Such environ statements accumulate.
* src/config.c (eventconf): Simplify the structure.
(handler_alloc): Take a pointer to struct handler as
argument.
(handler_envrealloc): New function.
(handler_free): Rename to handler_listent_free. All uses updated.
(handler_free): New function.
(eventconf_flush,cb_option,cb_user): Reflect changes to struct
eventconf
(cb_environ): Likewise. Reallocate env as necessary.
* doc/direvent.texi: Document the change.
* NEWS: Document the changes.
Limit memory usage.
Don't create duplicates of handler structs for each pathname
watched. Instead keep a count of references to each handler
and handler list and deallocate them when the count falls to
zero.
* src/config.c (direvent_handler_list): New struct.
(direvent_handler_first,direvent_handler_next)
(direvent_handler_current)
(direvent_handler_list_create)
(direvent_handler_list_copy)
(direvent_handler_list_unref)
(direvent_handler_list_append): New functions.
(eventconf_flush): Create a single copy of watcher.
* src/direvent.c (main): Call shutdown_watchers before terminating.
* src/direvent.h (handler) <next>: Remove.
<refcnt>: New member.
<prog>: Remove const qualifier.
(direvent_handler_list_t)
(direvent_handler_iterator_t): New data types.
(dirwatcher): Remove handler_tail. Change type of
handler_list to direvent_handler_list_t.
(shutdown_watchers)
(direvent_handler_first,direvent_handler_next)
(direvent_handler_current)
(direvent_handler_list_create)
(direvent_handler_list_copy)
(direvent_handler_list_unref)
(direvent_handler_list_append): New protos.
(for_each_handler): New define.
* src/watcher.c (dirwatcher_unref): Call direvent_handler_list_unref.
(all functions): Use handler iterators where necessary
(shutdown_watchers): New function.
* src/ev_inotify.c: Use handler iterators.
* src/ev_kqueue.c: Likewise.
Fix comments
2016-08-12 Sergey Poznyakoff <gray@gnu.org.ua>
Version 5.1.90
* NEWS: Update.
* configure.ac: Update.
* src/watcher.c (setwatcher): Fix conditional.
* src/direvent.h (dirwatcher_pattern_match): Add missing prototype.
Don't keep watchpoint descriptor table
During the lifetime of a watcher, its descriptor can change, so
it cannot be reliably used to identify the watcher outside of
the ev_*.c module. E.g. for kqueue interface, descriptors change
after compacting the event table, which happens when a watcher is
closed and removed.
Finding the watcher for the given event is now the responsibility
of the event module.
* src/direvent.h (dirwatcher_ref)
(dirwatcher_unref): New protos.
(dirwatcher_lookup_wd): Remove.
* src/watcher.c (dirwatcher_ref): New function.
(dirwatcher_register, dirwatcher_lookup_wd)
(dirwatcher_remove_wd): Remove. All uses updated.
(setwatcher): Indicate successful initialization for
the caller.
(setup_watchers): Check success flag.
* src/ev_inotify.c (dwreg, dwunreg)
(dwget): New functions to keep track of the registered
watchers and their descriptors.
(sysev_add_watch): Register watcher.
(sysev_rm_watch): Deregister it.
* src/ev_kqueue.c (check_created): Skip directory entries
that don't match pattern.
2016-08-11 Sergey Poznyakoff <gray@gnu.org.ua>
Bugfixes
* src/Makefile.am (AM_CPPFLAGS): Define SYSCONFDIR.
* src/direvent.c (mkfilename): Don't append trailing /
if filename is empty.
* src/direvent.h (hashtab_count_entries): Remove.
* src/ev_inotify.c (process_event): Translate IN_IGNORED to IN_DELETE.
Remove the watcher only after all handlers have been invoked.
* src/hashtab.c (hashtab) <elcount>: New member. Keep the number
of actually used elements.
(hashtab_remove, hashtab_lookup_or_install)
(hashtab_create,hashtab_clear): Keep track of the number of
actually used elements.
(hashtab_count_entries): Remove duplicate function.
(hashtab_count): Return elcount without recomputing.
* src/watcher.c (texttab): Rename to nametab for clarity.
(dirwatcher_pattern_match): New function.
(watch_subdirs): Ignore subdirs that don't match file name
pattern.
(dirwatcher_destroy): Exit immediately if no more watchers
are left.
2016-07-06 Sergey Poznyakoff <gray@gnu.org.ua>
Version 5.1
2016-07-04 Sergey Poznyakoff <gray@gnu.org.ua>
Remove unused variables
Use latest commit of grecs
Update copyright years
2016-06-20 Sergey Poznyakoff <gray@gnu.org>
Update grecs
Make sure descriptor 0 is allocated before calling detach.
* grecs: Upgrade to 9161098.
Bugfix
* configure.ac (INCLUDE_PATH_ARGS): Quote definition for shell
Implement search path for #include and #include_once.
* src/Makefile.am (AM_CPPFLAGS): Define INCLUDE_PATH_ARGS
* src/cmdline.opt: New option --include-directory (-I).
(help_hook): Print the actual content of the include search path.
* src/config.c (config_finish): Remove.
(config_init): New function. Set up include search path.
(config_parse): New function.
* src/direvent.c (main): Call config_init and config_parse.
* src/direvent.h (config_finish): Remove.
(config_init,config_parse): New proto.
* grecs: Upgrade.
* NEWS: Document changes.
* README: Document the --with-include-path option.
* configure.ac: New option --with-include-path.
* doc/direvent.8: Document the -I option and include search paths.
* doc/direvent.conf.5: Document include search paths.
* doc/direvent.texi: Document the -I option and include search paths.
2016-06-18 Sergey Poznyakoff <gray@gnu.org>
New option to invoke handlers via /bin/sh
* src/config.c (cb_option): New option 'shell'.
* src/direvent.h (HF_SHELL): New flag.
* src/progman.c (runcmd): Optionally run program via /bin/sh
* NEWS: Mention new option.
* doc/direvent.conf.5: Document the 'shell' option.
* grecs: Update.
* tests/shell.at: New test case.
* tests/Makefile.am: Add new test.
* tests/testsuite.at: Add new test.
Globbing patterns in #include and #include_once
* grecs: Update.
* src/direvent.c (main): Allocate tag to avoid coredump if
redefined in the config.
* tests/re05.at: Escape backslash.
* NEWS: Update.
* doc/direvent.conf.5: Update.
* doc/direvent.texi: Update.
2015-04-23 Sergey Poznyakoff <gray@gnu.org.ua>
Fix doc generation.
Default Config file applied to all output formats, which is wrong.
Use a dedicated configuration file for html output formats, and
defaults for the rest.
* doc/Makefile.am (GENDOCS): Add html-specific configuration file.
* doc/Config: Rename to doc/html.init (with changes).
2015-04-16 Sergey Poznyakoff <gray@gnu.org.ua>
Version 5.0.90
2015-03-01 Sergey Poznyakoff <gray@gnu.org>
Switch to Texinfo 5.0
* doc/Config: Rewrite.
* doc/Makefile.am: Use Makeinfo 5 instead of texi2htm
* doc/gendocs_template: Ps is not built
* imprimatur: Upgrade.
2014-09-18 Sergey Poznyakoff <gray@gnu.org.ua>
Minor documentation fixes.
* doc/direvent.8: Escape dashes in examples.
* doc/direvent.conf.5: Likewise.
* doc/direvent.texi: Reword copyright statement (part about covers).
2014-09-06 Sergey Poznyakoff <gray@gnu.org>
Version 5.0
2014-09-06 Sergey Poznyakoff <gray@gnu.org.ua>
Add new test
* tests/samepath.at: New file.
* tests/Makefile.am: Add new testcase.
* tests/testsuite.at: Likewise.
* NEWS: Update
* README: Update
2014-09-01 Sergey Poznyakoff <gray@gnu.org>
Version 4.1.91
Improve I18N
* po/POTFILES.in: Add grecs sources.
* src/Makefile.am (AM_CPPFLAGS): Add the definition of LOCALEDIR.
* src/cmdline.opt (help_hook): Add missing gettext markers.
* src/direvent.c (maint): Initialize libintl
2014-09-01 Sergey Poznyakoff <gray@gnu.org.ua>
Improve and document self-test mode
* src/direvent.c (self_test): Run the program as /bin/sh -c program.
* doc/direvent.texi: Document self-test mode and missing options.
* doc/direvent.8: Document self-test.
* doc/direvent.conf.5: Likewise.
* src/cmdline.opt: Fix option declarations.
2014-09-01 Sergey Poznyakoff <gray@gnu.org>
bootstrap: add option to get update po files and exit
2014-08-31 Sergey Poznyakoff <gray@gnu.org>
Accept multpile watchers for the same path
* src/direvent.h (dirwatcher)<handler_tail>: New member.
* src/config.c (eventconf_flush): Use handler_tail to update
the handler list.
Remove erroneous check.
2014-08-27 Sergey Poznyakoff <gray@gnu.org>
Minor changes
* src/direvent.c (get_user_groups): Fix typo in a diagnostic
message.
bootstrap: download po files
2014-08-25 Sergey Poznyakoff <gray@gnu.org>
Update NEWS
Upgrade grecs
I18N
* .gitignore: Add am
* bootstrap: Create am, unless exists.
* Makefile.am (SUBDIRS): Add po
* acinclude.m4: New file.
* configure.ac: Use gettext
* doc/direvent.texi: Update
* po/.gitignore: New file
* po/POTFILES.in: New file.
* po/Makevars: New file.
* src/Makefile.am (LDADD): Add @LIBINTL@
(noinst_HEADERS): Add gettext.h
* src/config.c: gettextize
* src/direvent.c: Likewise.
* src/environ.c: Likewise.
* src/hashtab.c: Likewise.
* src/progman.c: Likewise.
* src/watcher.c: Likewise.
* src/gettext.h: New file.
* src/direvent.h: Add missing prototypes.
* tests/re05.at: Remove superfluous quoting.
2014-08-22 Sergey Poznyakoff <gray@gnu.org>
Update docs
2014-08-21 Sergey Poznyakoff <gray@gnu.org>
Minor fix in docs
Direvent is dubbed GNU program
* configure.ac: Change package name to GNU Direvent
* doc/direvent.8: Reflect we are GNU
* doc/direvent.texi: Likewise.
* src/cmdline.opt: Likewise.
2014-08-17 Sergey Poznyakoff <gray@gnu.org>
Rewrite testsuite.
Get rid of the kludgy waitpid; use the built-in self-test mode instead.
* src/cmdline.opt: New option --self-test.
* src/direvent.c (self_test_prog,self_test_pid)
(exit_code): New globals.
(self_test): New function.
(main): Call self_test if required.
If stop is set, break the loop immediately.
Return exit_code.
* src/direvent.h (stop,self_test_pid,exit_code): New externs.
* src/environ.c (environ_setup): Always define DIREVENT_SELF_TEST_PID
when in self-test mode.
* src/progman.c (process_cleanup): Special handling for termination of
the self-test script.
(runcmd): Define self_test_pid envvar in self-test mode.
* tests/Makefile.am: Remove waitpid.
* tests/waitfile.c: Removed.
* tests/printname: Send HUP to the self-test PID if sentinel file is created.
* tests/envdump.c (read_pid_and_sig): Restore arg to its pristine state
before exiting.
* tests/testsuite.at (AT_DIREVENT_TEST): New macro.
* tests/attrib.at: Rewrite using AT_DIREVENT_TEST.
* tests/cmdexp.at: Likewise.
* tests/create.at: Likewise.
* tests/createrec.at: Likewise.
* tests/delete.at: Likewise.
* tests/env00.at: Likewise.
* tests/env01.at: Likewise.
* tests/env02.at: Likewise.
* tests/env03.at: Likewise.
* tests/glob01.at: Likewise.
* tests/glob02.at: Likewise.
* tests/re01.at: Likewise.
* tests/re02.at: Likewise.
* tests/re03.at: Likewise.
* tests/re04.at: Likewise.
* tests/re05.at: Likewise.
* tests/write.at: Likewise.
* grecs (untracked content)
Rename project to direvent.
2014-08-10 Sergey Poznyakoff <gray@gnu.org>
Version 4.1.90
* NEWS: Change version number
* configure.ac: Likewise.
* doc/dircond.conf.5: Update copyright years.
* doc/dircond.texi: Update copyright years.
* src/config.c: Update copyright years.
* src/dircond.h: Update copyright years.
* src/fnpat.c: Update copyright years.
* tests/envdump.c: Update copyright years.
2014-07-29 Sergey Poznyakoff <gray@gnu.org>
Introduce pattern negation.
* doc/dircond.conf.5: Document negated patterns.
* doc/dircond.texi: Likewise.
* src/config.c (file_name_pattern): A ! in front of a pattern
indicates negation.
* src/dircond.h (filename_pattern)<neg>: New member.
* src/fnpat.c: Honor neg member.
* tests/envdump.c (main): don't depend on the order of command
line options.
* tests/glob02.at: New test case.
* tests/re05.at: Likewise.
* tests/Makefile.am: Add new files.
* tests/testsuite.at: Include new testcases.
2013-12-27 Sergey Poznyakoff <gray@gnu.org.ua>
Remove trailing tabs in doc/dircond.8
Update gendocs_template
Update dircond.conf.5
Version 4.1
* NEWS: Document new release.
* Makefile.am
* configure.ac: Enable silent rules. Set version number 4.1
* doc/Makefile.am: Add copyleft header.
* src/Makefile.am: Likewise.
* tests/Makefile.am: Add missing silent rule markers.
Fix documentation of the "file" statement.
Implement filename selection
* NEWS: Update.
* doc/dircond.texi: Document the file statement.
* src/fnpat.c: New file.
* src/Makefile.am (dircond_SOURCES): Add fnpat.c
* src/config.c (eventconf) <fnames>: New member.
(eventconf_free): Free fnames.
(eventconf_flush): Set fnames.
(watcher_kw) <file>: New statement.
* src/dircond.h (filename_pattern): New struct.
(handler) <fnames>: New member.
(handler_matches_event): New macro.
(filename_pattern_free)
(filename_pattern_match): New proto.
* src/ev_inotify.c (process_event): Use handler_matches_event.
* src/ev_kqueue.c: Likewise.
* src/watcher.c (deliver_ev_create): Likewise.
* tests/Makefile.am: Add new tests.
* tests/testsuite.at: Likewise.
* tests/create.at: Add a distinctive keyword.
* tests/glob01.at: New testcase.
* tests/re01.at: New testcase.
* tests/re02.at: Likewise.
* tests/re03.at: Likewise.
* tests/re04.at: Likewise.
2013-12-17 Sergey Poznyakoff <gray@gnu.org>
Upgrade grecs
2013-10-02 Sergey Poznyakoff <gray@gnu.org.ua>
Fix the testsuite, bump version number
* configure.ac: Update version number.
* NEWS: Update version number.
* tests/Makefile.am: Distribute printname.
* tests/printname: New file.
* tests/atlocal.in (SRCDIR): New variable.
* tests/createrec.at: Fix path to printname.
2013-09-29 Sergey Poznyakoff <gray@gnu.org.ua>
Generate genev_create event for subdirectories.
A genev_create event is generated for all files and directories below the
newly created one, if required by the configuration. At the same time, new
watchers are installed. This is illustrated by the testcase "createrec.at",
which version 4.0 wouldn't pass, because it incorrectly assumed that a
notification would arrive for each subdirectory or subfile, once the watcher
is installed for the parent directory.
* src/watcher.c (subwatcher_create): Return integer.
Take additional argument (notify). If it is true, register
watchers for the subdirectories.
(deliver_ev_create): New function.
(watch_subdirs): Return number of watchers installed or -1
on error.
(watch_pathname): Remove. All callers use subwatcher_create
instead.
* tests/Makefile.am: Add new test.
* tests/testsuite.at: Likewise.
* tests/attrib.at: Use pwd -P, instead of plain pwd.
* tests/cmdexp.at: Likewise.
* tests/create.at: Likewise.
* tests/delete.at: Likewise.
* tests/env00.at: Likewise.
* tests/env01.at: Likewise.
* tests/env02.at: Likewise.
* tests/env03.at: Likewise.
* tests/write.at: Likewise.
2013-09-15 Sergey Poznyakoff <gray@gnu.org.ua>
Minor fixes in the docs.
2013-06-05 Sergey Poznyakoff <gray@gnu.org.ua>
Fix typos in manpages
Update scripts for generating documentation output.
2013-06-04 Sergey Poznyakoff <gray@gnu.org.ua>
Update dircond manpage
Finish the docs. Set version number 4.0. Change bug-report address.
Update docs.
* NEWS: Update.
* doc/dircond.conf.5: Update.
* doc/dircond.texi: Update.
* src/config.c (cb_watcher): Treat missing "event"
statement as "all events".
* src/dircond.h (evtsetall): New prototype.
* src/event.c (evtsetall): New function.
* src/environ.c: Minor fix.
inotify: fix definition of the generic write event
* src/ev_inotify.c (genev_xlat): Translate IN_MODIFY|IN_CLOSE_WRITE
to GENEV_WRITE.
Update docs
2013-06-03 Sergey Poznyakoff <gray@gnu.org.ua>
Reorganize namespace.
Revamp initialization system in a cleaner way.
* src/Makefile.am: Use the proper detach-*.c source depending
on the configuration output.
* src/rdaemon.c: Remove.
* src/detach-std.c: New file.
* src/detach-bsd.c: New file.
* src/detach-darwin.c: New file.
* src/dircond.c (signal_setup): Use sigv_set_all.
(sigmain): Do not reinstall the handler.
(main): Use detach() instead of daemon().
* src/dircond.h (detach): New proto.
(NITEMS): New macro.
(sigv_set_action, sigv_set_all)
(sigv_set_tab, sigv_set_action_tab): New protos.
* src/sigv.c: New file.
* tests/waitfile.c: Remove unused variable.
* doc/dircond.8: Update.
* doc/dircond.texi: Update.
Improve docs
2013-06-02 Sergey Poznyakoff <gray@gnu.org.ua>
Fix a copy-paste error.
Write the docs in manpage format:
* doc/.gitignore
* doc/Makefile.am: Add rules for texinfo documents.
* doc/dircond.1: Removed.
* doc/dircond.8: New file.
* doc/dircond.conf.5: New file.
* doc/dircond.texi: New file (a placeholder).
* doc/fdl.texi: New file.
* doc/gendocs_template: New file.
Rename event variables and the corresponding environment
ones:
* src/environ.c
* src/dircond.c
* src/progman.c
* tests/.gitignore
* tests/attrib.at
* tests/cmdexp.at
* tests/create.at
* tests/delete.at
* tests/env00.at
* tests/env01.at
* tests/env03.at
* tests/remove.at
* tests/write.at
2013-06-01 Sergey Poznyakoff <gray@gnu.org.ua>
Bugfix
* src/dircond.c (vdiag): Fix memory allocation
Uograde grecs
Upgrade grecs
Initial support for Darwin.
Basically the same as BSD, except that it lacks rfork, which
makes it impossible to initialize watchers before daemonizing.
* configure.ac: Check for rfork, define the DIRCOND_FORK conditional
if present.
* src/Makefile.am [DIRCOND_KQUEUE][DIRCOND_RFORK]: Add rdaemon.c
to the sources.
* src/dircond.c: Define INIT_EARLY if it is safe to initialize
the event system before forking. Currently the only supported
system that's not capable of that is Darwin.
(main): Call setup_watchers conditionally, before or after the
call to daemon.
Move call to evsys_init to setup_watchers.
Reorganize the main loop.
* src/dircond.h (event_mask_init): Change signature. The third
argument specifies which mask bits we're interested in.
All uses changed.
* src/event.c: Ditto.
* src/watcher.c (setup_watchers): Call evsys_init.
Test environment modifications.
* src/config.c (cb_environ): Accept list argument.
* tests/Makefile.am: Add new tests.
* tests/testsuite.at: Add new tests.
* tests/env00.at: New file.
* tests/env01.at: New file.
* tests/env02.at: New file.
* tests/env03.at: New file.
Test command line expansions.
* envdump.c: Accept unrecognized command line parameters.
Use -f option to redirect output to a file. All uses updated.
* cmdexp.at: New file.
* Makefile.am: Add cmdexp.at
* testsuite.at: Include cmdexp.at
Fix CREATE detection with kqueue.
* src/ev_kqueue.c (check_created): Fall back to hash lookup
to see if the file is recently created.
* tests/create.at: Remove the sleep. Wait for the pidfile to
appear before proceding with the test.
* tests/delete.at: Wait for the pidfile to appear before
proceding with the test.
* tests/remove.at: Likewise.
* tests/write.at: Likewise.
Minor fixes.
Minor fixes
Fix daemon mode on BSD. Provide a testsuite.
* configure.ac: Initialize the testsuite.
* src/Makefile.am [DIRCOND_KQUEUE] (dircond_SOURCES): Add rdaemon.c
* src/rdaemon.c: New file.
* src/cmdline.opt: New option -l.
* src/config.c (get_priority): New function.
* src/dircond.c (log_to_stderr): New variable.
(vdiag): Optionally output the message both to
stderr and syslog.
(stop): New global.
(sigmain): Set stop.
(main): Initialize logging early.
Loop until stop is set.
Remove pidfile before returning.
* src/dircond.h (read_facility): Remove.
(get_facility,get_priority): New protos.
* src/ev_kqueue.c (evsys_select): Fix error handling.
* tests/.gitignore: New file.
* tests/Makefile.am: Provide autotest framework.
* tests/atlocal.in: New file.
* tests/attrib.at: New file.
* tests/create.at: New file.
* tests/delete.at: New file.
* tests/remove.at: New file.
* tests/testsuite.at: New file.
* tests/envdump.c: Add more features.
* tests/waitfile.c: New file.
Add tests directory.
* Makefile.am (SUBDIRS): Add tests
* configure.ac: Build tests/Makefile.
* tests/.gitignore: New file
* tests/Makefile.am: New file.
* tests/envdump.c: New file.
Minor fixes
* src/cmdline.opt (help_hook): Change wording.
* src/config.c (config_help): Fix a typo.
* src/dircond.c (signal_setup): Include SIGCHLD
(main): Reset grecs_log_to_stderr.
* src/progman.c (run_handler): SIGCHLD is handled
by signal_setup.
Improve command line handling.
* configure.ac (GRECS_SETUP): Request getopt.
* src/.gitignore: Add cmdline.h
* src/cmdline.opt: New file.
* src/Makefile.am: Add new rules.
* src/config.c: New statement "user".
* src/dircond.c: Change command line handling.
Control execution environment and handler arguments.
* src/environ.c: New file.
* src/Makefile.am: Add environ.c
* src/config.c: Rename "event" compound statement to "watcher".
New statement "environ".
* src/dircond.h (handler) <env>: New member.
(environ_setup): New proto.
* src/progman.c (event_to_env): Remove function.
(runcmd): New function.
(run_handler): Call runcmd to prepare execution environment and
launch the handler.
Minor improvements
* /src/dircond.c (vdiag): Implement print-priority.
(main): Print version number along with the startup
and shutdown messages.
Upgrade grecs
Add bootstrap
Rewrite configuration support using grecs.
* grecs: Incorporate grecs as a submodule
* .gitmodules: New file.
* src/config.c: Rewrite.
* src/dircond.c: Use grecs.
* src/dircond.h (opt_facility): Remove
(syslog_include_prio): New global.
(pathent) <next>: Remove.
* pathdefn.c: Remove.
Switch to deep structure.
Change version number. Update THANKS file. Improve -h output.
Make sure directory and filename parts are meaningful when calling the handler.
* dircond.h (dirwatcher) <split_p>: New member.
<file_mode>: Change type to mode_t.
(run_handler): Change signature.
(split_pathname,unsplit_pathname): New protos.
* ev_inotify.c (process_event): Use split_pathname
to obtain file and directory parts if the watched
object is not a directory.
* ev_kqueue.c (filename): Remove function.
(check_created): Change call to run_handler.
(process_event): Use split_pathname
to obtain file and directory parts.
* progman.c (run_handler): Change signature and
calling convention.
* watcher.c (watch_subdirs): Fix diagnostics message.
(split_pathname,unsplit_pathname): New functions.
One more fix.
* dircond.c (trans_strtotok): 2nd arg is const
* dircond.h: Ditto.
Add missing include.
Keep separate process entries for redirectors.
* dircond.h: Remove unneeded prototypes.
* progman.c (process) <type,v>: New members.
(register_process): Take process type as the first argument.
(process_cleanup): Update.
(open_redirector): Change type of the last argument.
(run_handler): Reflect changes in open_redirector.
Move process management functions into a separate module.
Minor fixes.
Introduce system-independent event codes.
* config.c (parse_event, parse_onevent): Use event_mask structure.
* dircond.c (trans_strtotok, trans_toktostr)
(trans_toknext,trans_tokfirst)
(ev_log): New functions
(event_to_env): New static.
(run_handler): Take a pointer to event_mask.
Use event_to_env to construct the environment.
(man): Initialize system-independent events.
* dircond.h (SIE_CREATE, SIE_WRITE)
(SIE_ATTRIB, SIE_DELETE): System-independent event codes.
(event_mask): New typedef.
(event): Remove structure.
(transtab): New structure.
(handler) <ev_mask>: Change type to event_mask.
(evsys_filemask): New proto.
(evsys_add_watch,run_handler): Change signature.
(defevt, getevt): Likewise,
(evtnullp, event_mask_init): New protos.
(sie_xlat, sie_trans, evsys_transtab): New externs.
(trans_strtotok, trans_toktostr)
(trans_tokfirst, trans_toknext): New protos.
* ev_inotify.c (evsys_transtab): New global.
(sie_xlat): New global.
(ev_log): Remove.
(evsys_filemask): Remove variable, add function.
(evsys_add_watch): Change signature.
* ev_kqueue.c (events): Remove.
(evsys_transtab): New global.
(evsys_name_to_code, evsys_code_to_name): Remove.
(evsys_filemask): Remove variable, add function.
(ev_log): Remove.
(sie_xlat): New global.
(evsys_add_watch): Change signature.
Add NOTE_WRITE to directory flags if SIE_CREATE is requested.
(check_created): Deliver the SIE_CREATE event.
(process_event): Update.
* event.c (symevt) <mask>: Change type to event_mask.
(defevt,getevt): Rewrite taking event_mask as additional
argument.
(evtnullp): New function
(sie_trans): New global.
(event_mask_init): New function.
* watcher.c (dirwatcher_init): Initialize both system-dependent
and system-independent event masks.
(watch_subdirs): Call evsys_filemask to decide which files to
watch.
Use fd_set capable of keeping sysconf(_SC_OPEN_MAX) descriptors.
* dircond.c (bigfd_set): New type
(BIGFD_SET_COUNT, BIGFD_SET_ALLOC)
(BIGFD_SET, BIGFD_ISSET): New macros.
(close_fds): Use bigfd_set. All callers updated.
Bugfix
* dircond.h (dirwatcher_lookup): New proto.
* watcher.c (dirwatcher_lookup): Remove static qualifier.
kqueue: handle file creates and deletes.
* dircond.h (dirwatcher) [USE_IFACE == IFACE_KQUEUE] <file_mode>
<file_ctime>: New members.
(remove_watcher): Remove prototype.
(dirwatcher_destroy,watch_pathname): New protos.
* ev_inotify.c (remove_watcher): New function (from watcher.c)
* ev_kqueue.c (evsys_add_watch): Use EV_CLEAR instead of EV_ONESHOT.
Initialize file_mode and file_ctime.
(evsys_rm_watch): Fix conditional.
(check_created): New function.
(process_event): Handle file additions and deletions.
* watcher.c (watch_subdirs): Use watch_pathname.
(watch_pathname): New function.
Restore default timeout.
The default timeout setting was inadvertently lost in 02f27691.
* config.c (opt_timeout): Initialize.
* dircond.h (DEFAILT_TIMEOUT): New constant.
Bugfix.
* ev_kqueue.c (process_event): Strip directory prefix off the
file name.
Move commonly used headers to dircond.h
Change main loop.
* dircond.c: Change main loop.
* dircond.h (evsys_loop): Remove.
(evsys_select): New proto.
* ev_inotify.c: Likewise.
* ev_kqueue.c: Likewise.
Initial implementation of kqueue support.
* ev_inotify.c: New file.
* ev_kqueue.c: New file.
* configure.ac: Set up automake conditionals and defines
depending on the selected interface. Bail out if no suitable
interface is found.
* Makefile.am: Add the right ev_*.c source to dircond_SOURCES.
* dircond.c (run_handler): Remove static qualifier.
(process_event): Remove.
(main): Use evsys_* calls for interface-dependent operations.
* dircond.h (event): New struct.
(ifd): Remove extern.
(signo): New extern.
(ev_name_to_code): Rename to evsys_name_to_code.
(ev_code_to_name): Rename to evsys_code_to_name.
(ev_log): Remove.
(evsys_init,evsys_add_watch)
(evsys_rm_watch,evsys_loop): New protos.
(evsys_filemask): New extern.
* event.c: Remove interface-dependent stuff.
* watcher.c (dirwatcher_install): Initialize wd to -1.
(watch_subdirs): Use evsys_filemask to decide whether to scan the
directory.
All functions: Use evsys_* calls for interface-dependent operations.
Autoconfiscate
* .gitignore: Update
* AUTHORS: New file.
* Makefile.am: New file.
* THANKS: New file.
* configure.ac: New file.
* Makefile: Remove.
* NEWS: Update.
* dircond.c: Include config.h
* event.c: Likewise.
* hashtab.c: Likewise.
* pathdefn.c: Likewise.
* watcher.c: Likewise.
Update NEWS
2013-05-30 Sergey Poznyakoff <gray@gnu.org.ua>
Fix a typo
2013-05-29 Sergey Poznyakoff <gray@gnu.org.ua>
Bugfix
* watcher.c (watch_subdirs): Fix erroneous conversion specifier
in the diagnostics message.
2013-05-28 Sergey Poznyakoff <gray@gnu.org.ua>
Bugfix.
* config.c (parse_option): Fix the sense of the nowait option.
Fix help output.
2013-05-27 Sergey Poznyakoff <gray@gnu.org.ua>
Restore default timeout.
The default timeout setting was inadvertently lost in 02f27691.
* config.c (opt_timeout): Initialize.
* dircond.h (DEFAILT_TIMEOUT): New constant.
Bugfix.
* pathdefn.c (pathdefn_get): Fix return value.
2013-05-26 Sergey Poznyakoff <gray@gnu.org.ua>
Lint mode
* dircond.c (main): Use the -L option to introduce syslog tag
and the -t option to request "lint" behavior.
* dircond.1: Update.
2013-03-22 Sergey Poznyakoff <gray@gnu.org.ua>
Bugfix
* dircond.c (setuser): Set up supplementary groups of the user.
2013-03-08 Sergey Poznyakoff <gray@gnu.org.ua>
New feature: run handler as a specified user.
* config.c (parse_onevent): Change "call" to "run". Retain
the latter for compatibility.
Hanlde optional "as USER" clause.
Bugfix: initialize hp->next.
* dircond.1: Document changes.
* dircond.c (run_handler): Switch to the requested user
privileges before running the handler.
* dircond.h (handler) <uid,gidv,gidc>: New members.
2013-03-07 Sergey Poznyakoff <gray@gnu.org.ua>
Fix syslog vs. stderr inconsistency.
* config.c (opt_facility): new global.
(parse_syslog): Set opt_facility, unless
it is already set (in the command line).
* dircond.c (main) <opt_facility>: Remove (now global).
* dircond.h (opt_facility): New extern.
* Makefile (clean): add dircond
2013-03-06 Sergey Poznyakoff <gray@gnu.org.ua>
More fixes.
* dircond.c (print_status): Take sigset_t* as the
second argument. Mask out diagnostic messages
according to it.
(process_cleanup): Mask out SIGTERM and SIGKILL
as needed.
(run_handler): Swap redirectors syslog priorities:
stderr goes to LOG_ERR, and stdout to LOG_INFO.
Bugfixes.
* config.c (read_facility): Fix return value.
* dircond.c: Fix help output.
* dircond.1: Fix incorrect example.
2013-02-14 Sergey Poznyakoff <gray@gnu.org.ua>
Update docs.
New option -V
* Makefile (CPPFLAGS): Define VERSION
* dircond.c: New option -V (print version).
* dircond.1: Document new option.
Bugfixes.
* Makefile (DISTFILES): Bugfix.
* config.c (parse_event): Bugfix.
* NEWS: Update (version 3.0, preliminary)
2013-01-29 Sergey Poznyakoff <gray@gnu.org.ua>
Bugfixes.
* config.c (nextln): Fix out of range read.
* dircond.1: Update.
* event.c (ev_code_to_name): Find first matching event.
Do not rely on exact match, because the even mask may
have several bits set.
Improve error handling.
* config.c (parse_path): Bail out if incorrect option
is given.
* dircond.h (hashtab_count): New proto.
* hashtab.c (hashtab_count): New function.
* watcher.c (setup_watchers): Bail out if no handlers configured
or if unable to install any.
Improve configuration syntax, document the changes.
* config.c (path statement): New keyword "recursive".
* dircond.c (process_event): Provide a detailed
event logging.
* event.c (ev_log): New function.
* dircond.1: Document all changes.
* dircond.h: Add file.
Major revamp
All configuration moved to configuration file (default: /etc/dircond.conf).
Only a few command line options have been retained.
Watcher structures are kept in hash tables, which allows for faster
lookups, especially if there are many watchers.
* Makefile: Add new source.
* config.c: New file.
* dircond.c (conffile): New global.
(facility): Default to stderr. Will be changed by main if
going daemon.
(handler_timeout, autowatch): Remove.
Move datatype definitions and macros to dircond.h
(ev_name_to_code, ev_code_to_name): Move to event.c
(erealloc, estrdup): New functions.
(proc_unlink, proc_pop, proc_push): Define explicitly, now
that dlist.c is gone.
(read_facility): Move to config.c, changing signature.
(set_handler): Remove.
(dirwatcher_free, dirwatcher_create)
(dirwatcher_destroy, dirwatcher_find_wd)
(dirwatcher_find_name): Remove. See watcher.c
(remove_watcher, subwatcher_create)
(check_new_watcher, watch_subdirs): Move to watcher.c
(get_facility): New function.
(process_event): New function.
(main): Parse configuration file. Use command line options
to override its settings.
* dlist.c: Remove.
* event.c: New file.
* hashtab.c: New file.
* pathdefn.c: New file.
* watcher.c: New file.
2013-01-17 Sergey Poznyakoff <gray@gnu.org.ua>
Revamp the event and handler system.
Events are directly mapped to those of inotify. Handlers are kept in a
doubly-linked list; a special field keeps the mask of supported events.
The accepted '-p' syntax is changed accordingly. Docs are not yet
updated.
* dircond.c (event): New struct.
(evtab): New global.
(handler) <prev,next,ev_mask>: New members.
(dirwatcher) <handler_list>: New member (instead of the
handler array).
(handler_list,handler_mask): New globals.
(ev_name_to_code,ev_code_to_name): New functions.
(set_handler): Change accepted syntax. The new syntax is
event[,event...][:flag[,flag...]]:pathname
(dirwatcher_create): Use handler_mask instead of the hardcoded
mask.
(dirwatcher_destroy): Free the handler list, if this is a top-level
watcher.
(subwatcher_create): Update to use new variables.
(main): Likewise.
2013-01-10 Sergey Poznyakoff <gray@gnu.org.ua>
Improve error reporting.
* dircond.c (run_handler,set_handler): Check if the handler can
be executed.
Update documentation
Watch existing subdirectories, as requested by the autowatch option.
* dircond.c (subwatcher_create): New function.
(check_new_watcher): Use subwatcher_create.
(watch_subdirs): New function.
(main): Recursively add directories after watchpoint if autowatch
requests so.
Make autowatch feature watchpoint-specific.
Each particular watchpount can have its own setting of autowatch, as
specified by the -a option.
* dircond.c (dirwatcher) <autowatch>: New member.
(dirwatcher_create): Fill allocated structure with zeroes.
(dirlevel): Remove function.
(check_new_watcher): Use dirwatcher->autowatch to determine
whether to watch the new directory. Inherit autowatch setting.
(main): Set dirwatcher->autowatch.
New flag "timeout="
* dircond.c (set_handler): The timeout=N flag sets timeout
for that particular handler (equivalent to -T option used
before -p).
* dircond.1: Document the new flag.
2013-01-09 Sergey Poznyakoff <gray@gnu.org.ua>
Add documentation files. Raise version to 2.0
* .gitignore: Update.
* Makefile: Add NEWS and ChangeLog, generate the latter.
* NEWS: New file.
* git2chg.awk: New file.
Fix help output.
Support multiple per-directory handlers.
* dircond.c (handler) <timeout>: New member.
(dirwatcher) <handler>: New member.
(process) <master>: Remove.
<timeout>: New member.
Fix comments.
(set_handler): Change supported syntax. The program name
is separated from the event spec and optional flags by
a semicolon. It can be empty, allowing to cancel a prior
definition of the same handler.
(register_process): Take timeout as the third argument.
(process_timeouts): Use per-process timeout.
(open_redirector): Fix the use of facility.
(run_handler): Change signature.
(main): Change option handling, allowing to intermix
handler and watchpoint definitions.
* README: Update.
* dircond.1: Update.
* dlist.c: Add copyright header.
Fix a "fencepost" error in close_fds.
* dircond.c (close_fds): Start iterating from max_fd-1.
2012-12-31 Sergey Poznyakoff <gray@gnu.org.ua>
Minor fixes.
* COPYING: New file.
* Makefile: Distribute COPYING.
* dircond.c (main): tag is now const char *.
Switch to user privileges only if -u option is explicitly given.
Improve documentation.
2012-12-24 Sergey Poznyakoff <gray@gnu.org.ua>
Add a manpage.
* Makefile: Add a manpage.
* dircond.c (run_handler): Pass event code and
event symbolic name to the handler.
Add support for IN_MOVED_FROM and IN_MOVED_TO.
Initial commit
Local Variables:
mode: change-log
version-control: never
buffer-read-only: t
End:
|