2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2016-03-29 06:45:22 -04:00
|
|
|
|
|
|
|
|
#include "base/datetime.hpp"
|
|
|
|
|
#include "base/function.hpp"
|
|
|
|
|
#include "base/functionwrapper.hpp"
|
|
|
|
|
#include "base/scriptframe.hpp"
|
|
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
|
|
static String DateTimeFormat(const String& format)
|
|
|
|
|
{
|
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
|
|
|
|
DateTime::Ptr self = static_cast<DateTime::Ptr>(vframe->Self);
|
2018-02-21 07:42:58 -05:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2016-03-29 06:45:22 -04:00
|
|
|
|
|
|
|
|
return self->Format(format);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
Object::Ptr DateTime::GetPrototype()
|
2016-03-29 06:45:22 -04:00
|
|
|
{
|
2018-01-11 05:17:38 -05:00
|
|
|
static Dictionary::Ptr prototype = new Dictionary({
|
|
|
|
|
{ "format", new Function("DateTime#format", DateTimeFormat, { "format" }) }
|
|
|
|
|
});
|
2016-03-29 06:45:22 -04:00
|
|
|
|
|
|
|
|
return prototype;
|
|
|
|
|
}
|