Events Development: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(10 intermediate revisions by the same user not shown)
Line 2: Line 2:


* [[events]]
* [[events]]
=TODO=
<pre>
doc/events TODO.docx
</pre>


=Clone=
=Clone=
Line 8: Line 14:
git clone git@github.com:NovaOrdis/events.git
git clone git@github.com:NovaOrdis/events.git
</pre>
</pre>
=TODO=
doc/Event Development.docx TODO section.


=Development=
=Development=
Line 19: Line 21:
This will install a new unnumbered (same release number) "development" release locally:
This will install a new unnumbered (same release number) "development" release locally:
<pre>
<pre>
cdesa
cdevents
mvn clean install; ./bin/install -f
mvn clean install; ./bin/install -f
</pre>
</pre>
Line 25: Line 27:
==Numbered Release==
==Numbered Release==


1. Increment (or update) the version information from <tt>$PROJECT_HOME/pom.xml</tt>.
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
 
:[[Public Release Procedure for Projects]]
2. Build and install
</blockquote>
 
<tt>-f</tt> is not necessary:
 
<pre>
mvn clean install; ./bin/install
</pre>
 
3. Check in
 
<pre>
mvn clean
git add .
git commit -m "starting ... version"
git push
</pre>


==Individual Unit Test==
==Individual Unit Test==
Line 69: Line 56:
final CountDownLatch rendezVous = new CountDownLatch(1);
final CountDownLatch rendezVous = new CountDownLatch(1);


            terminator.addEndOfStreamListener(new EndOfStreamListener() {
terminator.addEndOfStreamListener(new EndOfStreamListener() {
                @Override
  @Override
                public void eventStreamEnded() {
  public void eventStreamEnded() {
                    rendezVous.countDown();
        rendezVous.countDown();
                }
    }
            });
});


// ...
// ...


            //
//
            // wait until terminator finishes its queue
// wait until terminator finishes its queue
            //
//
            rendezVous.await();
rendezVous.await();
</pre>


or, better yet:


<pre>
runtime.waitForEndOfStream();
</pre>
</pre>

Latest revision as of 21:00, 28 April 2017

Internal

TODO

doc/events TODO.docx

Clone

git clone git@github.com:NovaOrdis/events.git

Development

Unnumbered Development Release

This will install a new unnumbered (same release number) "development" release locally:

cdevents
mvn clean install; ./bin/install -f

Numbered Release

Public Release Procedure for Projects

Individual Unit Test

mvn -Dmaven.surefire.debug="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5012" -Dtest=EventsApplicationRuntimeTest clean test

How to add New Commands

This is how you code new clad commands:

Clad User Manual

A few things to keep in mind:

  • The pipeline is initialized by the runtime, but there is no queue between the event processor and terminator. The command must install it.
  • The command executes on the main thread and might exit (and kill the JVM in the process) before the terminator had a chance to process its queue. Always register an EndOfStreamListerer with the terminator and wait on the main thread until that listener is notified.

Terminator terminator = runtime.getTerminator();

final CountDownLatch rendezVous = new CountDownLatch(1);

terminator.addEndOfStreamListener(new EndOfStreamListener() {
   @Override
   public void eventStreamEnded() {
        rendezVous.countDown();
    }
});

// ...

//
// wait until terminator finishes its queue
//
rendezVous.await();

or, better yet:

runtime.waitForEndOfStream();