Skip to content

Commit

Permalink
Added erlcron sources
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Merritt authored and ericbmerritt committed Sep 16, 2010
1 parent 8e01249 commit 6e1e8ea
Show file tree
Hide file tree
Showing 14 changed files with 1,545 additions and 0 deletions.
67 changes: 67 additions & 0 deletions LICENSE
@@ -0,0 +1,67 @@
Copyright (c)2010 eCD Market

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.

Neither the name of Cat's Eye Technologies nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.



Some code originally copyrighted ->

Copyright (c)2002 Cat's Eye Technologies. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.

Neither the name of Cat's Eye Technologies nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
3 changes: 3 additions & 0 deletions README
@@ -0,0 +1,3 @@
This provides testable cronish like functionality for Erlang systems,
with the ability to arbitrarily set the time and place along with
fastforwarding through tests. See erlcron.erl for more documentation.
31 changes: 31 additions & 0 deletions ebin/erlcron.app
@@ -0,0 +1,31 @@
%% -*- Erlang -*-
%% This is the application resource file (.app file) for the ecd_ops application.

{application, erlcron,
[{description,
"Erlang Implementation of cron"},

{vsn, "0.1"},

{modules,
[erlcron,
ecrn_app,
ecrn_sup,
ecrn_agent,
ecrn_test,
ecrn_control,
ecrn_cron_sup,
ecrn_reg]},

{registered,
[ecrn_agent]},

{applications,
[kernel,
stdlib,
sasl,
eunit]},

{mod,
{ecrn_app, []}}
]}.
19 changes: 19 additions & 0 deletions include/erlcron.hrl
@@ -0,0 +1,19 @@

-type seconds() :: integer().
-type date() :: {integer(), integer(), integer()}.
-type time() :: {integer(), integer(), integer()}.
-type datetime() :: {date(), time()}.

-type cron_time() :: {integer(), am | pm} | {integer(), integer(), am | pm}.
-type constraint() :: {between, cron_time(), cron_time()}.
-type duration() :: {integer(), hr | min | sec}.
-type period() :: cron_time() | [cron_time()] | {every, duration(), constraint()}.
-type dom() :: integer().
-type dow() :: mon | tue | wed | thu | fri | sat | sun.
-type callable() :: mfa() | function().
-type run_when() :: {daily, period()}
| {weekly, dow(), period()}
| {monthly, dom(), period()}.

-type job() :: {run_when(), callable()}.
-opaque job_ref() :: {integer(), reference()}.
12 changes: 12 additions & 0 deletions sinan.cfg
@@ -0,0 +1,12 @@

project : {
name : sinan
vsn : "0.0.1.0"

},

tasks : {
build : {
compile_args : "-W1 +debug_info"
},
},

0 comments on commit 6e1e8ea

Please sign in to comment.