/** * BigBlueButton open source conferencing system - http://www.bigbluebutton.org/ * * Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below). * * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License as published by the Free Software * Foundation; either version 3.0 of the License, or (at your option) any later * version. * * BigBlueButton 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along * with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. * */ package org.bigbluebutton.app.screenshare.server.recorder; import java.util.concurrent.TimeUnit; import org.bigbluebutton.app.screenshare.server.recorder.event.AbstractDeskshareRecordEvent; import org.bigbluebutton.app.screenshare.server.recorder.event.RecordEvent; import org.bigbluebutton.app.screenshare.server.recorder.event.RecordStartedEvent; import org.bigbluebutton.app.screenshare.server.recorder.event.RecordStoppedEvent; import redis.clients.jedis.Jedis; public class EventRecorder implements RecordStatusListener { private static final String COLON=":"; private String host; private int port; public EventRecorder(String host, int port){ this.host = host; this.port = port; } private Long genTimestamp() { return TimeUnit.NANOSECONDS.toMillis(System.nanoTime()); } private void record(String session, RecordEvent message) { Jedis jedis = new Jedis(host, port); Long msgid = jedis.incr("global:nextRecordedMsgId"); jedis.hmset("recording" + COLON + session + COLON + msgid, message.toMap()); jedis.rpush("meeting" + COLON + session + COLON + "recordings", msgid.toString()); } @Override public void notify(RecordEvent event) { if ((event instanceof RecordStoppedEvent) || (event instanceof RecordStartedEvent)) { event.setTimestamp(genTimestamp()); event.setMeetingId(((AbstractDeskshareRecordEvent)event).getSession()); record(((AbstractDeskshareRecordEvent)event).getSession(), event); } } }