2016-07-10 10:47:23 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
#if !defined(DMRAccessControl_H)
|
|
|
|
#define DMRAccessControl_H
|
|
|
|
|
|
|
|
#include <vector>
|
2016-09-11 11:15:03 +00:00
|
|
|
#include <ctime>
|
2016-10-13 16:46:02 +00:00
|
|
|
|
2016-09-17 10:07:23 +00:00
|
|
|
#include "DMRLC.h"
|
2016-07-10 10:47:23 +00:00
|
|
|
|
2016-11-10 18:43:54 +00:00
|
|
|
class CDMRAccessControl {
|
2016-07-10 10:47:23 +00:00
|
|
|
public:
|
2016-10-13 16:46:02 +00:00
|
|
|
static bool validateAccess(unsigned int srcId, unsigned int dstId, unsigned int slot, bool network);
|
2016-07-10 10:47:23 +00:00
|
|
|
|
2016-11-10 18:43:54 +00:00
|
|
|
static bool validateSrcId(unsigned int id);
|
|
|
|
|
2016-10-13 16:46:02 +00:00
|
|
|
static void init(const std::vector<unsigned int>& dstIdBlacklistSlot1RF, const std::vector<unsigned int>& dstIdWhitelistSlot1RF, const std::vector<unsigned int>& dstIdBlacklistSlot2RF, const std::vector<unsigned int>& dstIdWhitelistSlot2RF, const std::vector<unsigned int>& dstIdBlacklistSlot1NET, const std::vector<unsigned int>& dstIdWhitelistSlot1NET, const std::vector<unsigned int>& dstIdBlacklistSlot2NET, const std::vector<unsigned int>& dstIdWhitelistSlot2NET, const std::vector<unsigned int>& srcIdBlacklist, bool selfOnly, const std::vector<unsigned int>& prefixes,unsigned int id,unsigned int callHang, bool tgRewrteSlot1, bool tgRewrteSlot2, bool m_bmAutoRewrite, bool m_bmRewriteReflectorVoicePrompts);
|
2016-09-11 11:15:03 +00:00
|
|
|
|
2016-10-13 16:46:02 +00:00
|
|
|
static unsigned int dstIdRewrite(unsigned int id, unsigned int sid, unsigned int slot, bool network, CDMRLC* dmrLC);
|
|
|
|
|
2016-10-17 12:59:52 +00:00
|
|
|
static void setOverEndTime(unsigned int slot);
|
2016-07-10 10:47:23 +00:00
|
|
|
|
|
|
|
private:
|
2016-07-10 20:37:11 +00:00
|
|
|
static std::vector<unsigned int> m_dstBlackListSlot1RF;
|
|
|
|
static std::vector<unsigned int> m_dstBlackListSlot2RF;
|
|
|
|
static std::vector<unsigned int> m_dstWhiteListSlot1RF;
|
|
|
|
static std::vector<unsigned int> m_dstWhiteListSlot2RF;
|
|
|
|
|
|
|
|
static std::vector<unsigned int> m_dstBlackListSlot1NET;
|
|
|
|
static std::vector<unsigned int> m_dstBlackListSlot2NET;
|
|
|
|
static std::vector<unsigned int> m_dstWhiteListSlot1NET;
|
|
|
|
static std::vector<unsigned int> m_dstWhiteListSlot2NET;
|
2016-07-11 16:41:53 +00:00
|
|
|
|
2016-10-13 16:46:02 +00:00
|
|
|
static std::vector<unsigned int> m_srcIdBlacklist;
|
2016-07-11 16:41:53 +00:00
|
|
|
|
2016-07-10 15:46:02 +00:00
|
|
|
static std::vector<unsigned int> m_prefixes;
|
2016-09-15 13:19:00 +00:00
|
|
|
|
2016-09-23 11:47:13 +00:00
|
|
|
static int m_callHang;
|
2016-07-11 16:41:53 +00:00
|
|
|
|
2016-07-10 15:46:02 +00:00
|
|
|
static bool m_selfOnly;
|
|
|
|
static unsigned int m_id;
|
2016-07-11 16:41:53 +00:00
|
|
|
|
2016-10-13 16:46:02 +00:00
|
|
|
static bool dstIdBlacklist(unsigned int did, unsigned int slot, bool network);
|
|
|
|
static bool dstIdWhitelist(unsigned int did, unsigned int slot, bool gt4k, bool network);
|
2016-07-10 10:47:23 +00:00
|
|
|
|
2016-10-17 12:59:52 +00:00
|
|
|
static time_t m_time[2];
|
2016-10-17 20:25:22 +00:00
|
|
|
|
2016-10-17 12:59:52 +00:00
|
|
|
static unsigned int m_dstRewriteID[2];
|
|
|
|
static unsigned int m_srcID[2];
|
2016-10-13 16:46:02 +00:00
|
|
|
|
|
|
|
static bool m_tgRewriteSlot1;
|
|
|
|
static bool m_tgRewriteSlot2;
|
|
|
|
static bool m_bmAutoRewrite;
|
|
|
|
static bool m_bmRewriteReflectorVoicePrompts;
|
2016-09-11 11:15:03 +00:00
|
|
|
|
2016-10-13 16:46:02 +00:00
|
|
|
static CDMRLC* m_lastdmrLC;
|
2016-07-10 10:47:23 +00:00
|
|
|
};
|
|
|
|
|
2016-07-11 16:41:53 +00:00
|
|
|
#endif
|