Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pluginMediaHandler.cpp 3.42 KiB
/*
 *  Copyright (C) 2020 Savoir-faire Linux Inc.
 *
 *  Author: Aline Gondim Santos <aline.gondimsantos@savoirfairelinux.com>
 *
 *  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 3 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
 */

#include "pluginMediaHandler.h"
// Logger
#include "pluglog.h"
const char sep = separator();
const std::string TAG = "FORESEG";

#define NAME "Foreground Segmentation"

namespace jami
{
	PluginMediaHandler::PluginMediaHandler(std::map<std::string, std::string>&& ppm, std::string &&datapath):
		datapath_{datapath}, ppm_{ppm}
	{
    	setGlobalPluginParameters(ppm_);
    	setId(datapath_);
		// setName(NAME);
		mVS = std::make_shared<VideoSubscriber>(datapath_);
	}

	void PluginMediaHandler::notifyAVFrameSubject(const StreamData &data, jami::avSubjectPtr subject)
	{
		Plog::log(Plog::LogPriority::INFO, TAG, "IN AVFRAMESUBJECT");
		std::ostringstream oss;
		std::string direction = data.direction ? "Receive" : "Preview";
		oss << "NEW SUBJECT: [" << data.id << "," << direction << "]" << std::endl;

		bool preferredStreamDirection = false;
		if (!ppm_.empty() && ppm_.find("streamslist") != ppm_.end())
		{
			Plog::log(Plog::LogPriority::INFO, TAG, "SET PARAMETERS");
			preferredStreamDirection = ppm_.at("streamslist")=="in"?true:false;
		}
		oss << "preferredStreamDirection " << preferredStreamDirection << std::endl;
		if (data.type == StreamType::video && !data.direction && data.direction == preferredStreamDirection)
		{
			subject->attach(mVS.get()); // my image
			oss << "got my sent image attached" << std::endl;
		} else if (data.type == StreamType::video && data.direction && data.direction == preferredStreamDirection)
		{
			subject->attach(mVS.get()); // the image I receive from the others on the call
		}
		Plog::log(Plog::LogPriority::INFO, TAG, oss.str());
	}

	std::map<std::string, std::string> PluginMediaHandler::getCallMediaHandlerDetails()
	{
		std::map<std::string, std::string> mediaHandlerDetails = {};
		mediaHandlerDetails["name"] = NAME;
		mediaHandlerDetails["iconPath"] = datapath_ + sep + "icon.png";
		mediaHandlerDetails["pluginId"] = id();


		return mediaHandlerDetails;
	}

	void PluginMediaHandler::setPreferenceAttribute(const std::string &key, const std::string &value)
	{
		auto it = ppm_.find(key);
		if (it != ppm_.end())
		{
			if (ppm_[key] != value)
			{
				ppm_[key] = value;
				if (key == "backgroundlist")
				{
					mVS->setBackground(dataPath(), value);
				}
			}
		}
	}

	bool PluginMediaHandler::preferenceMapHasKey(const std::string &key)
	{
		if (ppm_.find(key) == ppm_.end())
		{
			return false;
		}
		return true;
	}

	void PluginMediaHandler::detach()
	{
		mVS->detach();
	}

	PluginMediaHandler::~PluginMediaHandler()
	{
		std::ostringstream oss;
		oss << " ~FORESEG Plugin" << std::endl;
		Plog::log(Plog::LogPriority::INFO, TAG, oss.str());
		detach();
	}
}