2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2016-03-29 12:45:22 +02: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 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2016-03-29 12:45:22 +02:00
|
|
|
|
|
|
|
return self->Format(format);
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
Object::Ptr DateTime::GetPrototype()
|
2016-03-29 12:45:22 +02:00
|
|
|
{
|
2018-01-11 11:17:38 +01:00
|
|
|
static Dictionary::Ptr prototype = new Dictionary({
|
|
|
|
{ "format", new Function("DateTime#format", DateTimeFormat, { "format" }) }
|
|
|
|
});
|
2016-03-29 12:45:22 +02:00
|
|
|
|
|
|
|
return prototype;
|
|
|
|
}
|
|
|
|
|