Christopher Allan Webber [Fri, 9 Dec 2016 21:57:25 +0000 (15:57 -0600)]
agenda: Rename 8sync-nowait to 8sync.
* 8sync/agenda.scm (8sync-nowait, 8sync): Renamed 8sync-nowait to 8sync.
* 8sync/systems/actors.scm (send-message, reply-message hive-reply-with-error):
Switch calls of 8sync-nowait to 8sync.
Christopher Allan Webber [Fri, 9 Dec 2016 20:47:47 +0000 (14:47 -0600)]
agenda: Remove 8sync macro.
Despite being the namesake of the project, this turns out to have never
really been important or made sense, except as a way to yield control as
a form of context switching. This is moving towards renaming
8sync-nowait to 8sync, a forthcoming change.
* 8sync/agenda.scm (8sync, catch-8sync): Removed.
* tests/test-agenda.scm: Removed all tests calling the 8sync macro.
Christopher Allan Webber [Fri, 9 Dec 2016 17:16:39 +0000 (11:16 -0600)]
Add comment noting that the "web" system needs a rewrite.
* 8sync/systems/web.scm: Add comment/TODO item about using deprecated code.
Christopher Allan Webber [Thu, 8 Dec 2016 21:43:15 +0000 (15:43 -0600)]
irc: Update IRC code to use simpler suspendable ports system.
* 8sync/systems/irc.scm (irc-socket-setup): Set port to be non-blocking.
(install-socket, make-basic-irc-handler): Remove.
(irc-loop): New procedure; uses the Guile read-line code to switch
from the former manual-buffering of make-basic-irc-handler to simply
using Guile's read-line utility.
(queue-and-start-irc-agenda!): Use irc-loop.
Christopher Allan Webber [Thu, 8 Dec 2016 21:37:43 +0000 (15:37 -0600)]
agenda: Remove call to deprecated agenda-except-port-map procedure.
* 8sync/agenda.scm (update-agenda-from-select!): Remove call to deprecated
agenda-except-port-map procedure.
Christopher Allan Webber [Thu, 8 Dec 2016 21:29:58 +0000 (15:29 -0600)]
agenda: Remove debugging statements.
* 8sync/agenda.scm (wait-for-readable, wait-for-writable): Removed debug
statments.
Christopher Allan Webber [Thu, 8 Dec 2016 18:47:32 +0000 (12:47 -0600)]
agenda: Use suspendable ports feature from Guile 2.2.
This removes the old method of watching for when ports are updated via
select and explicitly calling a particular function, and instead can
simply suspend at the appropriate points using Guile's common I/O
procedures; the agenda handles waking things up when they're ready.
* 8sync/agenda.scm: Import `(ice-9 suspendable-ports)' and run
install-suspendable-ports!
(<agenda>, agenda-except-port-map, make-agenda): Drop except-port-map
from agenda. The "meaning" of read-port-map and write-port-map has
changed a bit too; these are still a hash-table of a port to a procedure
to be called when that port is available, but after being selected,
items are removed from the table.
(<port-request>, make-port-request, port-request, <port-remove-request>)
(port-remove-request, 8sync-port, 8sync-port-remove)
(agenda-handle-port-request!, agenda-handle-port-remove-request!): Remove.
(8sync-nowait): Move comment that was previously in 8sync-port here.
(update-agenda-from-select!): Update to use the new "meaning" of the
agenda-read-port-map and agenda-write-port-map and to drop referencing
the deprecated agenda-except-port-map. Properly removes items from
the read and write maps once they've been selected.
(<read-request>, <write-request>, agenda-handle-read-request)
(agenda-handle-write-request, wait-for-readable, wait-for-writable):
New variables.
(stop-on-nothing-to-do): Remove check on removed agenda-except-port-map.
(agenda-run-once): Parameterize the current-read-waiter and
current-write-waiter to wait-for-readable and wait-for-writable
respectively. Update handle-individual to use the new <read-request>
and <write-request> types.
Christopher Allan Webber [Thu, 8 Dec 2016 18:46:07 +0000 (12:46 -0600)]
build: Require and use guile-2.2.
This is necessary to make use of the suspendable-ports feature.
* configure.ac: Update PKG_CHECK_MODULES to use guile-2.2.
* package.scm: Update package's native-inputs to use guile-next.
Christopher Allan Webber [Mon, 5 Dec 2016 20:15:12 +0000 (14:15 -0600)]
v0.2.0
Christopher Allan Webber [Tue, 10 May 2016 01:37:15 +0000 (20:37 -0500)]
agenda: Add "8sleep" sugar.
* 8sync/agenda.scm (8sleep): Sugary macro for something like "sleep",
but tuned to 8sync to be nonblocking.
Christopher Allan Webber [Sat, 7 May 2016 17:23:53 +0000 (12:23 -0500)]
actors: Fix hive-actor-local? to check the hive id, not whether actor exists.
* 8sync/systems/actors.scm (hive-actor-local?): Update to check the hive id.
Christopher Allan Webber [Sat, 7 May 2016 17:20:18 +0000 (12:20 -0500)]
agenda: Permit a post-run-hook in start-agenda.
* 8sync/agenda.scm (start-agenda): Add a post-run-hook keyword argument.
This permits more live hacking madness, as used in syncmud.
Christopher Allan Webber [Tue, 3 May 2016 23:21:04 +0000 (18:21 -0500)]
agenda: Update comment, could also attach catch routines to hive.
* 8sync/systems/actors.scm (hive-process-message): Update comment.
Christopher Allan Webber [Tue, 3 May 2016 23:05:31 +0000 (18:05 -0500)]
actors: Catch all errors in the actor model.
Not doing so results in a SIGABRT.
* 8sync/systems/actors.scm (hive-process-message): Catch all errors
and call print-error-and-continue. Leave comment for thoughts on
using maybe-catch-all.
Christopher Allan Webber [Tue, 3 May 2016 16:14:28 +0000 (11:14 -0500)]
actors: Permit docstrings in mlambda.
* 8sync/systems/actors.scm (mlambda): Switched to syntax-case so we can
identify and allow docstrings.
Christopher Allan Webber [Tue, 3 May 2016 15:39:36 +0000 (10:39 -0500)]
actors: Export simple-dispatcher.
* 8sync/systems/actors.scm: Export simple-dispatcher.
Christopher Allan Webber [Tue, 3 May 2016 15:36:58 +0000 (10:36 -0500)]
actors: Export build-actions.
* 8sync/systems/actors.scm: Export build-actions.
Christopher Allan Webber [Tue, 3 May 2016 15:31:56 +0000 (10:31 -0500)]
actors: Add note that maybe action dispatch error checks should be moved.
* 8sync/systems/actors.scm (simple-dispatcher): Add comment.
Christopher Allan Webber [Tue, 3 May 2016 15:14:11 +0000 (10:14 -0500)]
actors: Add build-actions and retool make-action-dispatch to use it.
* 8sync/systems/actors.scm (build-actions): New macro.
(make-action-dispatch): Retool to use build-actions.
Christopher Allan Webber [Mon, 2 May 2016 15:55:15 +0000 (10:55 -0500)]
actors: Add with-message-args and build mlambda off it.
* 8sync/systems/actors (with-message-args): New macro.
(mlambda): Retool to use with-message-args as base.
Christopher Allan Webber [Sat, 30 Apr 2016 21:35:51 +0000 (16:35 -0500)]
actors: Add define-mhandler, a method handler definition tool.
* 8sync/systems/actors.scm (define-mhandler): New macro.
Christopher Allan Webber [Fri, 29 Apr 2016 21:51:28 +0000 (16:51 -0500)]
demos: robotscanner: Use nice auto-message-ref feature.
* demos/actors/robotscanner.scm (<warehouse-room>, <security-robot>):
Update to use new automatic-message-ref-pulled-out mlambda syntax.
Christopher Allan Webber [Fri, 29 Apr 2016 21:50:29 +0000 (16:50 -0500)]
demos: botherbotherbother: Add missing newline.
* demos/actors/botherbotherbother.scm (professor-be-bothered):
Add missing newline.
Christopher Allan Webber [Fri, 29 Apr 2016 21:49:05 +0000 (16:49 -0500)]
actors: mlambda, removing require-slot, GOOPS usage cleanup
mlambda is a new nice sugar for passing in arguments, so add that.
Also, various problems found with GOOPS hackery in Guile 2.2.
Cleaning up.
* 8sync/systems/actors.scm (require-slot): Removed. Doesn't work with
Guile 2.2.
(<actor>): Updated to drop usage of require-slot.
(mlambda): New procedure allowing automatically pulling out message
stuff from action method definitions.
(%expand-action-item): Use mlambda.
(<hive>): Remove redundant slot definition back to hive. The actor
already does this, and not re-supplying the accessor breaks GOOPS
in Guile 2.2.
Christopher Allan Webber [Fri, 29 Apr 2016 16:10:27 +0000 (11:10 -0500)]
actors: debug: hive-create-actor-gimmie*'s init should glob arguments.
* 8sync/systems/actors/debug.scm (hive-create-actor-gimmie*): init should
grab the rest of the arguments.
Christopher Allan Webber [Wed, 27 Apr 2016 22:08:34 +0000 (17:08 -0500)]
actors: Handle messages/coroutines in want of reply and errors.
If we call another method and we're "waiting" on a reply, and an error
happens in the other function so that it can't continue, that shouldn't
leave our coroutine hanging around in the waiting-coroutines hashmap
forever. Instead, we raise it and throw an error warning about that.
(More ideally, we'd like to raise this inside of the send-message type
methods but that seems to cause a SIGABRT. Yikes!)
* 8sync/systems/actors.scm (hive-reply-with-error): New method.
(hive-process-message): Update call-catching-coroutine to reply with
an eror if an uncaught exception happens.
Update resume-waiting-coroutine to recognize whether the message
has a '*reply* action or not. If not, remove the coroutine (we'll
never get a reply) and throw an error.
Christopher Allan Webber [Wed, 27 Apr 2016 19:21:59 +0000 (14:21 -0500)]
actors: Remove unnecessary let in hive-process-message.
* 8sync/systems/actors.scm (hive-process-message): Removed unnecessary let.
Christopher Allan Webber [Wed, 27 Apr 2016 18:15:09 +0000 (13:15 -0500)]
demos: robotscanner: Use new <- syntax.
* demos/actors/robotscanner.scm (<overseer>, <warehouse-room>)
(<droid>, <security-robot>): Update to using <- style send message
aliases.
Christopher Allan Webber [Wed, 27 Apr 2016 18:13:03 +0000 (13:13 -0500)]
actors: debug: Fixing hive-create-actor-gimmie, hive-create-actor-gimmie*.
* 8sync/systems/actors/debug.scm (hive-create-actor-gimmie)
(hive-create-actor-gimmie*): Fix definitions.
Christopher Allan Webber [Wed, 27 Apr 2016 13:24:28 +0000 (08:24 -0500)]
actors: Define "<-" type aliases for send-message and friends.
* 8sync/systems/actors.scm (<-, <-wait, <-reply, <-reply-wait): Aliases
for send-message, send-message-wait, reply-message, reply-message-wait
respectively.
Christopher Allan Webber [Wed, 27 Apr 2016 12:16:48 +0000 (07:16 -0500)]
actors: Rename hive-bootstrap-message -> bootstrap-message.
* 8sync/systems/actors.scm (bootstrap-message): Renamed from
hive-bootstrap-message.
* demos/actors/botherbotherbother.scm (main):
* demos/actors/robotscanner.scm (main):
* demos/actors/simplest-possible.scm (main):
* tests/test-actors.scm: Rename references to bootstrap-message.
Christopher Allan Webber [Wed, 27 Apr 2016 03:34:00 +0000 (22:34 -0500)]
actors: Remove <hive-proxy>; no longer export actor-hive.
The goal of hive-proxy (in XUDD at least) was to prevent actors from
accessing their hive. Since we're no longer exporting actor-hive
we've more or less achieved that though.
* 8sync/systems/actors.scm: No longer export actor-hive.
(<message>): Adjust comment about deferred-reply.
(<hive-proxy>, <debug-hive-proxy>): Removed.
Christopher Allan Webber [Wed, 27 Apr 2016 02:35:10 +0000 (21:35 -0500)]
actors: debug: Expose more things via debug
* 8sync/systems/actors/debug.scm (expose): New macro for easy exposing
of things not normally exported from the actors module.
(hive-resolve-local-actor): Switch to use "expose".
(actor-hive): Expose/export.
(hive-create-actor-gimmie*): Switch to be a procedure rather than a macro.
Christopher Allan Webber [Tue, 26 Apr 2016 21:27:57 +0000 (16:27 -0500)]
demos: simplest-possible: Rename main function.
* demos/actors/simplest-possible.scm (main): Renamed from run-demo.
Christopher Allan Webber [Tue, 26 Apr 2016 21:23:06 +0000 (16:23 -0500)]
demos: simplest-possible: Adjust emo/proog dialogue to match film.
* 8sync/systems/actors.scm (<emo>, <proog>): Adjust what the characters say.
Christopher Allan Webber [Tue, 26 Apr 2016 21:07:12 +0000 (16:07 -0500)]
actors: Switch hive-create-actor[*] to match create-actor[*]
* 8sync/systems/actors.scm (hive-create-actor, hive-create-actor*):
Adjust syntax to match that of create-actor and create-actor*.
* demos/actors/botherbotherbother.scm (main):
* tests/test-actors.scm: Adjust to use.
Christopher Allan Webber [Tue, 26 Apr 2016 20:58:55 +0000 (15:58 -0500)]
actors: Switch random-number-size to be 2^128.
* 8sync/systems/actors.scm (random-number-size): Switch to 2^128.
Christopher Allan Webber [Tue, 26 Apr 2016 18:39:52 +0000 (13:39 -0500)]
demos: actors: Update main functions to support arbitrary arguments.
* demos/actors/robotscanner.scm (main):
* demos/actors/simplest-possible.scm (run-demo): Update to take
arbitrary arguments. This allows being more easily run by the
command line.
Christopher Allan Webber [Tue, 26 Apr 2016 18:30:11 +0000 (13:30 -0500)]
actors: Add debug module with useful utilities.
* 8sync/systems/actors/debug.scm: New file.
* Makefile.am (SOURCES): Add it.
Christopher Allan Webber [Tue, 26 Apr 2016 18:29:47 +0000 (13:29 -0500)]
build: Add actors demos to EXTRA_DIST.
* Makefile.am (EXTRA_DIST): Add the actors demos botherbotherbother,
simplest-possible, and robotscanner.
Christopher Allan Webber [Tue, 26 Apr 2016 18:27:46 +0000 (13:27 -0500)]
agenda: Update copyright header.
* 8sync/agenda.scm: Update copyright header.
Christopher Allan Webber [Tue, 26 Apr 2016 18:27:05 +0000 (13:27 -0500)]
demos: robotscanner: Add comment explaining what the demo does.
* demos/actors/robotscanner.scm: New toplevel comment.
Christopher Allan Webber [Tue, 26 Apr 2016 18:24:12 +0000 (13:24 -0500)]
demos: actors: Adding new robotscanner demo.
* 8sync/actors/robotscanner.scm: New file.
Christopher Allan Webber [Tue, 26 Apr 2016 17:52:28 +0000 (12:52 -0500)]
actors: Switch send-message and reply-message to use 8sync-nowait
There's no reason to block on continuing our work if using just
send-message and reply-message, so, fix.
* 8sync/systems/actors.scm (send-message, reply-message):
Switch to using 8sync-nowait instead of 8sync.
Christopher Allan Webber [Tue, 26 Apr 2016 17:51:08 +0000 (12:51 -0500)]
agenda: Rename 8sync-immediate to 8sync-nowait and fix.
* 8sync/agenda.scm (8sync-nowait): Rename from 8sync-immediate.
Fix so that it runs (needed to put body in lambda)
Christopher Allan Webber [Tue, 26 Apr 2016 15:46:21 +0000 (10:46 -0500)]
actors: Fix self-destruct.
* 8sync/systems/actors.scm (self-destruct): Fix call to hash-remove!,
which had the wrong arguments passed to hash-remove!
Christopher Allan Webber [Tue, 26 Apr 2016 15:11:05 +0000 (10:11 -0500)]
actors: Fix create-actor, create-actor*
* 8sync/systems/actors.scm (create-actor, create-actor*):
Fixed calls to %hive-create-actor, which were missing the actor class.
Christopher Allan Webber [Tue, 26 Apr 2016 15:07:52 +0000 (10:07 -0500)]
actors: Add actor creation/destruction methods.
* 8sync/systems/actors.scm (create-actor, create-actor*, self-destruct):
New procedures.
Christopher Allan Webber [Mon, 25 Apr 2016 19:21:00 +0000 (14:21 -0500)]
tests: actors: Add autoreply tests.
* tests/test-actors.scm: Added autoreply tests.
(%record-out, ~display, ~format): Tools to test the display output
from tests.
(<antsy-caller>, <diligent-rep>, <lazy-rep>): New classes for testing
autoreply tools.
Christopher Allan Webber [Mon, 25 Apr 2016 18:47:29 +0000 (13:47 -0500)]
actors: Properly autoreply to replies; make reply-message-wait work.
* 8sync/systems/actors.scm (hive-process-message): Enable prompt even when
resuming coroutines.
Enable autoreply when resuming coroutines.
(send-message-wait, reply-message-wait): Rename agenda-prompt variable to
abort-to, which makes more sense.
Christopher Allan Webber [Mon, 25 Apr 2016 18:15:04 +0000 (13:15 -0500)]
actors: Remove unnecessary "begin".
* 8sync/systems/actors.scm (hive-process-message): Remove "begin",
which was only wrapping one thing.
Christopher Allan Webber [Mon, 25 Apr 2016 18:12:11 +0000 (13:12 -0500)]
actors: Add autoreply support.
* 8sync/systems/actors.scm (message-needs-reply): New method.
(hive-process-message): Add autoreply to process-local-message logic.
Add comment about maybe clearing out old coroutines.
Christopher Allan Webber [Mon, 25 Apr 2016 17:51:09 +0000 (12:51 -0500)]
actors: Fix resuming continuation when waiting on message.
Pattern matching was wrong. Also added an error check.
* 8sync/systems/actors.scm (hive-process-message): Fix pattern match.
Add error check that we're resuming to the correct actor.
Christopher Allan Webber [Mon, 25 Apr 2016 16:59:31 +0000 (11:59 -0500)]
actors: Remove nesting of actions in define-simple-actor.
* 8sync/systems/actors.scm (define-simple-actor): Move actions out of
the "final parenthesis". Simple actors just have a class type and
then the rest of the arguments are acitons.
* demos/actors/simplest-possible.scm: Remove unnecessary import
of (ice-9 match).
(<emo>, <proog>): Adjust to new syntax for define-simple-actor.
Christopher Allan Webber [Mon, 25 Apr 2016 16:48:28 +0000 (11:48 -0500)]
tests: test-agenda: Remove broken shebang.
* tests/test-agenda.scm: Removed broken shebang.
Christopher Allan Webber [Mon, 25 Apr 2016 16:47:53 +0000 (11:47 -0500)]
tests: test-actors: Add copyright header.
* tests/test-actors.scm: Add copyright header.
Christopher Allan Webber [Mon, 25 Apr 2016 16:44:55 +0000 (11:44 -0500)]
demos: botherbotherbother: Make executable from command line.
* demos/actors/botherbotherbother.scm: Make executable.
Add shebang.
(main): Allow arbitrary arguments from the command line or wherever.
Christopher Allan Webber [Mon, 25 Apr 2016 16:39:13 +0000 (11:39 -0500)]
actors; Move message definitions earlier in the file.
The original positioning would mean that sometimes the accessors would
break in some of the actor/hive methods. Defining the messages before
any methods make use of them seems to fix the problem.
* 8sync/systems/actors.scm (<message>, message?, make-message-intern)
(message-id, message-to message-from, message-action, message-body)
(message-in-reply-to, message-replied, set-message-replied!)
(message-deferred-reply, set-message-deferred-reply!, make-message)
(%nothing-provided, message-ref, kwarg-list-to-alist, send-message)
(send-message-wait, reply-message, reply-message-wait):
Moved location to earlier in file.
Christopher Allan Webber [Mon, 25 Apr 2016 14:43:14 +0000 (09:43 -0500)]
tests: actors: Fix test-end in test-actors.scm.
* tests/test-actors.scm: Fix test-end, which previously pointed at test-agenda.
Christopher Allan Webber [Sat, 23 Apr 2016 15:57:45 +0000 (10:57 -0500)]
build: Add actors.scm to SOURCES
* Makefile.am (SOURCES): Add 8sync/systems/actors.scm.
Christopher Allan Webber [Fri, 22 Apr 2016 19:04:13 +0000 (14:04 -0500)]
build: Add test-actors.scm to tests.
* Makefile.am (TESTS): Add tests/test-actors.scm.
Christopher Allan Webber [Fri, 22 Apr 2016 19:03:18 +0000 (14:03 -0500)]
tests: actors: Test serialization / deserialization of messages
* tests/test-actors.scm: Add message write/read tests.
Christopher Allan Webber [Fri, 22 Apr 2016 16:19:03 +0000 (11:19 -0500)]
actors: Switch comment header
* 8sync/systems/actors: Switch "Convenience procedures" comment header
to "Basic readers / writers".
Christopher Allan Webber [Fri, 22 Apr 2016 15:46:58 +0000 (10:46 -0500)]
actors: Fix serialize-message to not use address->string
If we use address->string, read/write are no longer symmetric.
* 8sync/systems/actors.scm (serialize-message): Switch address
serialization to not use address->string.
Christopher Allan Webber [Fri, 22 Apr 2016 15:42:34 +0000 (10:42 -0500)]
actors: Fix export of pprint-message
* 8sync/systems/actors.scm: Fix export. Previously said pprint-mesage.
Christopher Allan Webber [Fri, 22 Apr 2016 15:36:03 +0000 (10:36 -0500)]
tests: actors: Fix check for a missing key on message-ref
* tests/test-actors.scm: Update test for message-ref with missing key.
It used to be that the default was to return #f.
Now the default is to throw an error if no default provided.
Christopher Allan Webber [Fri, 22 Apr 2016 15:31:25 +0000 (10:31 -0500)]
actors: message-ref: Throw a better error on missing key
* 8sync/systems/actors (message-ref): Throw 'message-missing-key
on errors now.
Christopher Allan Webber [Fri, 22 Apr 2016 15:26:03 +0000 (10:26 -0500)]
actors: Export read/write methods on messages.
* 8sync/systems/actors.scm (serialize-message, write-message)
(serialize-message-pretty pprint-mesage read-message)
(read-message-from-string): Export methods.
Christopher Allan Webber [Fri, 22 Apr 2016 15:10:27 +0000 (10:10 -0500)]
actors: `message-ref' now errors if no dflt provided and key not found
Thanks to David Thompson for guidance on the best way to construct
%nothing-provided.
* 8sync/systems/actors.scm (message-ref): Adjust to error if no dflt
provided and key isn't found.
(%nothing-provided): New unique, immutable value for checking
if dflt provided to message-ref.
Christopher Allan Webber [Fri, 22 Apr 2016 15:03:08 +0000 (10:03 -0500)]
actors: New read-message procedures, touch up write-message procedures
* 8sync/systems/actors.scm (read-message, read-message-from-string):
New procedures for reading in a serialized message.
(write-message): Supply a default port (current-output-port) if none
is provided.
(serialize-message, serialize-message-pretty): Write out message-wants-reply,
which we accidentally left out earlier.
Christopher Allan Webber [Fri, 22 Apr 2016 14:34:57 +0000 (09:34 -0500)]
actors: Switch out address objects for more-easily-serialized cons cells
This is maybe temporary. If we ever have canonical sexps as the
general serialization format, or something like that, we might revert
to a nicer structure.
* 8sync/systems/actors.scm (<address>): Commented out.
Christopher Allan Webber [Fri, 22 Apr 2016 14:24:44 +0000 (09:24 -0500)]
actors: Added docstrings to some message write procedures
* 8sync/systems/actors.scm (write-message, serialize-message-pretty)
(pprint-message): Add docstrings.
Christopher Allan Webber [Fri, 22 Apr 2016 14:17:44 +0000 (09:17 -0500)]
actors: Write/pretty-print procedures for messages
* 8sync/systems/actors.scm (serialize-message, write-message):
New procedures for writing out messages.
(serialize-message-pretty, pprint-message): New procedures
for pretty printing.
(<address>): Update printer to look a little bit nicer.
Christopher Allan Webber [Fri, 22 Apr 2016 13:47:59 +0000 (08:47 -0500)]
actors: Rename function deferred-reply -> message-deferred-reply
* 8sync/systems/actors.scm (deferred-reply, message-deferred-reply):
Renamed former to latter.
Christopher Allan Webber [Fri, 22 Apr 2016 03:46:59 +0000 (22:46 -0500)]
tests: test-actors: Start testing the actor model
There's not much here yet.
* tests/test-actors.scm: New file.
Christopher Allan Webber [Fri, 22 Apr 2016 03:44:47 +0000 (22:44 -0500)]
demos: actors: A couple of simple actor model demos.
* demos/actors/simplest-possible.scm: New file.
Simplest possible demo: Two actors say hello to each other.
* demos/actors/botherbotherbother.scm: New file.
A little bit more complex; multiple actors interact with each
other. Ensures that actors don't clobber each other unexpectedly.
Christopher Allan Webber [Sat, 16 Apr 2016 22:17:28 +0000 (17:17 -0500)]
systems: actors: New actor model system.
* 8sync/systems/actors.scm: New file, containing actor model system.
Christopher Allan Webber [Sun, 24 Apr 2016 19:18:56 +0000 (14:18 -0500)]
agenda: Make agendas run with "easier" default arguments
* 8sync/agenda.scm (make-agenda): Set #:pre-unwind-handler to
print-error-and-continue. This makes it so that by default,
exceptions get printed to the shell in which the agenda was spawned.
(start-agenda): Set #:stop-condition to stop-on-nothing-to-do. This
is a bit heavier than maybe desirable but is a good "default" stop
condition, and prevents the agenda from entering into a busy-loop
when computation has finished.
Christopher Allan Webber [Fri, 22 Apr 2016 22:13:25 +0000 (17:13 -0500)]
build: Ignore .sig, .directive, .asc files.
* .gitignore: Add ignore rules for .sig, .directive, .asc files.
Christopher Allan Webber [Fri, 22 Apr 2016 19:34:13 +0000 (14:34 -0500)]
build: Bump version number.
* configure.ac: Change version to 0.1.0.
Christopher Allan Webber [Fri, 22 Apr 2016 19:31:47 +0000 (14:31 -0500)]
README: Mention COPYING
* README: Mention COPYING file.
Christopher Allan Webber [Fri, 15 Apr 2016 18:15:25 +0000 (13:15 -0500)]
Mention INSTALL in the README file.
* README: Mention INSTALL file.
Christopher Allan Webber [Fri, 15 Apr 2016 18:14:48 +0000 (13:14 -0500)]
Add generic GNU style INSTALL file
* INSTALL: New file.
Christopher Allan Webber [Fri, 15 Apr 2016 18:14:14 +0000 (13:14 -0500)]
Move README.md to README
* README: Renamed from README.md.
Christopher Allan Webber [Fri, 15 Apr 2016 18:09:16 +0000 (13:09 -0500)]
build: Add COPYING-gplv3 to EXTRA_DIST
* Makefile.am (EXTRA_DIST): add COPYING-GPLv3.txt
Christopher Allan Webber [Fri, 15 Apr 2016 15:20:33 +0000 (10:20 -0500)]
Update %8sync -> 8sync in NEWS and README.md
* NEWS:
* README.md: Update references from %8sync -> 8sync.
Christopher Allan Webber [Fri, 15 Apr 2016 15:05:02 +0000 (10:05 -0500)]
agenda: Rename %8sync (and %8sync-*) to 8sync (and 8sync-*)
* 8sync/agenda.scm (%8sync, %8sync-delay, %8sync-run, %8sync-run-at)
(%8sync-run-delay, %8sync-port, %8sync-port-remove, catch-%8sync):
Rename, removing % sign. Rename all references to other %8sync-foo
in definitions and comments as well.
(catch-8sync): Removed aliased version.
(make-async-request, setup-async-request): Rename references of
%8sync-foo to 8sync-foo.
* 8sync/systems/irc.scm (make-basic-irc-handler):
* 8sync/systems/web.scm (receive-http-conn):
* tests/test-agenda.scm: Rename all %8sync-foo to 8sync-foo.
Christopher Allan Webber [Thu, 14 Apr 2016 22:03:53 +0000 (17:03 -0500)]
systems: web: Re-enable co-op repl with simple http server
* 8sync/systems/web.scm (run-simple-webserver): Uncomment enabling
the coop-repl.
Christopher Allan Webber [Sat, 9 Apr 2016 18:48:49 +0000 (13:48 -0500)]
doc: Add scaffolding for new chapters
* doc/8sync.texi (Installation, Getting started, API Reference, Contributing):
New chapter scaffolding added.
Jan Nieuwenhuizen [Tue, 1 Mar 2016 07:10:59 +0000 (08:10 +0100)]
Add guix package.
* package.scm: New file.
Jan Nieuwenhuizen [Mon, 29 Feb 2016 18:38:44 +0000 (19:38 +0100)]
Update texinfo menus so that info documentation builds.
* 8sync.texi: Run texinfo-all-menus-update.
Christopher Allan Webber [Wed, 10 Feb 2016 00:38:29 +0000 (16:38 -0800)]
Put in a warning that 8sync has an unstable API.
* README.md: New text.
Christopher Allan Webber [Wed, 10 Feb 2016 00:31:07 +0000 (16:31 -0800)]
We're GNU 8sync now!
* README.md: Updated text to reflect GNU status
Christopher Allan Webber [Wed, 30 Dec 2015 17:04:28 +0000 (11:04 -0600)]
doc: More tweaks to the comments on copyleft section
* doc/8sync.texi: Tweaked documentation and added a new paragraph
Christopher Allan Webber [Fri, 18 Dec 2015 16:21:44 +0000 (10:21 -0600)]
doc:Updating indentation for consistency
doc/8sync.texi: Minor indentation tweak.
Christopher Allan Webber [Fri, 18 Dec 2015 16:21:16 +0000 (10:21 -0600)]
doc: Removing a sentence which made things tricky
doc/8sync.texi: Removed text.
Christopher Allan Webber [Fri, 18 Dec 2015 16:15:34 +0000 (10:15 -0600)]
Also mention requirement of permitting linking to modified versions of 8sync
* doc/8sync.texi: New text in 8sync license section.
Christopher Allan Webber [Fri, 18 Dec 2015 16:10:11 +0000 (10:10 -0600)]
Reformatting documentation for easier revision control handling
See also:
http://dustycloud.org/blog/vcs-friendly-patchable-document-line-wrapping/
* doc/8sync.texi: Reformatting/indenting text
Christopher Allan Webber [Thu, 17 Dec 2015 15:48:23 +0000 (09:48 -0600)]
doc: Add section: "8sync's license and general comments on copyleft"
* doc/8sync.texi: New section.
Christopher Allan Webber [Sat, 12 Dec 2015 02:10:30 +0000 (20:10 -0600)]
Adding absolute basic webdev environment
Incomplete, but running
* 8sync/system/web.scm: New file
* demos/hello-web.scm: New demo file
* Makefile.am: Adding files