2014-11-10 04:00:39 +01:00
|
|
|
/*
|
|
|
|
|
VerbFunctionDispatch(Test) - Concept to dispatch according to the verbs of a DSL
|
|
|
|
|
|
|
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2014, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2 of
|
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
|
|
* *****************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "lib/test/run.hpp"
|
2014-11-28 12:50:58 +01:00
|
|
|
#include "lib/verb-token.hpp"
|
2014-11-10 04:00:39 +01:00
|
|
|
#include "lib/format-string.hpp"
|
|
|
|
|
|
2014-11-15 03:00:44 +01:00
|
|
|
#include <iostream>
|
2014-11-10 04:00:39 +01:00
|
|
|
#include <string>
|
2014-11-24 05:11:03 +01:00
|
|
|
#include <vector>
|
2014-11-10 04:00:39 +01:00
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
using util::_Fmt;
|
2014-11-24 05:11:03 +01:00
|
|
|
using std::vector;
|
2014-11-15 03:00:44 +01:00
|
|
|
using std::cout;
|
2014-11-10 04:00:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace lib {
|
|
|
|
|
namespace test{
|
|
|
|
|
|
2014-11-15 03:00:44 +01:00
|
|
|
|
2014-11-13 03:48:01 +01:00
|
|
|
class Receiver
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
virtual ~Receiver() { } ///< this is an interface
|
|
|
|
|
|
|
|
|
|
virtual string woof() =0;
|
|
|
|
|
virtual string honk() =0;
|
|
|
|
|
virtual string moo() =0;
|
|
|
|
|
virtual string meh() =0;
|
|
|
|
|
};
|
|
|
|
|
|
2014-11-10 04:00:39 +01:00
|
|
|
namespace {
|
|
|
|
|
const string BEGINNING("silence");
|
2014-11-13 03:48:01 +01:00
|
|
|
|
|
|
|
|
using Verb = VerbToken<Receiver, string(void)>;
|
2014-11-24 05:11:03 +01:00
|
|
|
using VerbSeq = vector<Verb>;
|
2014-11-15 03:00:44 +01:00
|
|
|
|
2014-11-24 05:11:03 +01:00
|
|
|
|
2014-11-28 12:00:47 +01:00
|
|
|
Verb VERB(Receiver, woof);
|
|
|
|
|
Verb VERB(Receiver, honk);
|
|
|
|
|
Verb VERB(Receiver, moo);
|
|
|
|
|
Verb VERB(Receiver, meh);
|
2014-11-10 04:00:39 +01:00
|
|
|
}
|
2014-11-13 03:48:01 +01:00
|
|
|
|
|
|
|
|
|
2014-11-28 12:00:47 +01:00
|
|
|
/**
|
2014-11-10 04:00:39 +01:00
|
|
|
* a receiver of verb-tokens,
|
|
|
|
|
* which renders them verbosely
|
|
|
|
|
*/
|
|
|
|
|
class VerboseRenderer
|
|
|
|
|
: public Receiver
|
|
|
|
|
{
|
|
|
|
|
string woof() { return "Woof-Woof!"; }
|
|
|
|
|
string honk() { return "Honk-Honk!"; }
|
|
|
|
|
string moo() { return "Moo-Moo!"; }
|
|
|
|
|
string meh() { return "Meh!"; }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Statefull receiver of verb-tokens.
|
|
|
|
|
*/
|
|
|
|
|
class RecollectingReceiver
|
|
|
|
|
: public Receiver
|
|
|
|
|
{
|
|
|
|
|
string verb_;
|
|
|
|
|
_Fmt fmt_;
|
|
|
|
|
|
|
|
|
|
string
|
|
|
|
|
buildResultTerm (string nextToken)
|
|
|
|
|
{
|
|
|
|
|
string resultExpression (fmt_ % verb_ % nextToken);
|
|
|
|
|
verb_ = nextToken;
|
|
|
|
|
return resultExpression;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-11-28 12:00:47 +01:00
|
|
|
string woof() { return buildResultTerm (VERB_woof); }
|
|
|
|
|
string honk() { return buildResultTerm (VERB_honk); }
|
|
|
|
|
string moo() { return buildResultTerm (VERB_moo); }
|
|
|
|
|
string meh() { return buildResultTerm (VERB_meh); }
|
2014-11-10 04:00:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
RecollectingReceiver()
|
|
|
|
|
: verb_(BEGINNING)
|
|
|
|
|
, fmt_("%s followed by %s")
|
|
|
|
|
{ }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************//**
|
|
|
|
|
* @test Demonstration/Concept: dispatch a specific function
|
|
|
|
|
* based on the given verbs of an embedded custom language.
|
2014-11-24 05:11:03 +01:00
|
|
|
* Actually what we want to achieve here is a specific form
|
|
|
|
|
* of double dispatch; thus the implementation relies on a
|
|
|
|
|
* variation of the visitor pattern.
|
2014-11-10 04:00:39 +01:00
|
|
|
*
|
2014-11-24 05:11:03 +01:00
|
|
|
* @see session-structure-mapping-test.cpp
|
2014-11-10 04:00:39 +01:00
|
|
|
*/
|
|
|
|
|
class VerbFunctionDispatch_test : public Test
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
|
run (Arg)
|
|
|
|
|
{
|
|
|
|
|
VerbSeq tokens = build_test_feed();
|
|
|
|
|
render_verbose (tokens);
|
|
|
|
|
verify_dispatch (tokens);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** prepare a sequence of verbs
|
|
|
|
|
* for the actual tests to work on */
|
|
|
|
|
VerbSeq
|
|
|
|
|
build_test_feed()
|
|
|
|
|
{
|
|
|
|
|
return {
|
2014-11-28 12:00:47 +01:00
|
|
|
VERB_woof,
|
|
|
|
|
VERB_honk,
|
|
|
|
|
VERB_moo,
|
|
|
|
|
VERB_meh
|
2014-11-10 04:00:39 +01:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** @test demonstrate the dispatching
|
|
|
|
|
* based on the concrete verb token.
|
|
|
|
|
* Here the implementation just prints
|
|
|
|
|
* the name of the invoked verb
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
render_verbose (VerbSeq tokens)
|
|
|
|
|
{
|
|
|
|
|
VerboseRenderer receiver;
|
|
|
|
|
for (Verb verb : tokens)
|
|
|
|
|
cout << "consuming " << string(verb)
|
|
|
|
|
<< " -> '"
|
|
|
|
|
<< verb.applyTo(receiver)
|
|
|
|
|
<< "'\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** @test verify the correct individual dispatch
|
|
|
|
|
* through a computation specific for the given verb
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
verify_dispatch (VerbSeq tokens)
|
|
|
|
|
{
|
|
|
|
|
RecollectingReceiver receiver;
|
|
|
|
|
string previous = BEGINNING;
|
|
|
|
|
for (Verb verb : tokens)
|
|
|
|
|
{
|
|
|
|
|
CHECK (previous+" followed by "+string(verb) == verb.applyTo(receiver));
|
|
|
|
|
previous = string(verb);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Register this test class... */
|
|
|
|
|
LAUNCHER (VerbFunctionDispatch_test, "unit common");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}} // namespace lib::test
|