mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-28 16:01:10 +02:00
Revert "rcinput: Add exception handling for cs hd2"
This reverts commit7345242772
. Wrong in so many ways :-) - The code worked perfectly. But ok, it's easier possible. ;) Signed-off-by: M. Liebmann <git@tuxcode.de> Origin commit data ------------------ Branch: ni/coolstream Commit:ee9138f065
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de> Date: 2017-02-22 (Wed, 22 Feb 2017) ------------------ This commit was generated by Migit
This commit is contained in:
committed by
Michael Liebmann
parent
0ad682598e
commit
30e30c91f6
@@ -174,49 +174,9 @@ bool CRCInput::checkdev()
|
|||||||
return true; /* need to check anyway... */
|
return true; /* need to check anyway... */
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef BOXMODEL_CS_HD2
|
|
||||||
bool CRCInput::checkdev_lnk(std::string lnk)
|
|
||||||
{
|
|
||||||
static struct stat info;
|
|
||||||
if (lstat(lnk.c_str(), &info) != -1) {
|
|
||||||
if (S_ISLNK(info.st_mode)) {
|
|
||||||
std::string tmp = readLink(lnk);
|
|
||||||
if (!tmp.empty()) {
|
|
||||||
if (lstat(tmp.c_str(), &info) != -1) {
|
|
||||||
if (S_ISCHR(info.st_mode))
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
bool CRCInput::checkpath(in_dev id)
|
bool CRCInput::checkpath(in_dev id)
|
||||||
{
|
{
|
||||||
for (std::vector<in_dev>::iterator it = indev.begin(); it != indev.end(); ++it) {
|
for (std::vector<in_dev>::iterator it = indev.begin(); it != indev.end(); ++it) {
|
||||||
#ifdef BOXMODEL_CS_HD2
|
|
||||||
if ((id.type == DT_LNK) || ((*it).type == DT_LNK)) {
|
|
||||||
std::string check1, check2;
|
|
||||||
if (id.type == DT_LNK)
|
|
||||||
check1 = readLink(id.path);
|
|
||||||
else
|
|
||||||
check1 = id.path;
|
|
||||||
|
|
||||||
if ((*it).type == DT_LNK)
|
|
||||||
check2 = readLink((*it).path);
|
|
||||||
else
|
|
||||||
check2 = (*it).path;
|
|
||||||
|
|
||||||
if ((!check1.empty()) && (!check2.empty()) && (check1 == check2)) {
|
|
||||||
printf("[rcinput:%s] skipping already opened %s => %s\n", __func__, id.path.c_str(), check1.c_str());
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if ((*it).path == id.path) {
|
if ((*it).path == id.path) {
|
||||||
printf("[rcinput:%s] skipping already opened %s\n", __func__, id.path.c_str());
|
printf("[rcinput:%s] skipping already opened %s\n", __func__, id.path.c_str());
|
||||||
return true;
|
return true;
|
||||||
@@ -245,21 +205,10 @@ void CRCInput::open(bool recheck)
|
|||||||
|
|
||||||
while ((dentry = readdir(dir)) != NULL)
|
while ((dentry = readdir(dir)) != NULL)
|
||||||
{
|
{
|
||||||
if ((dentry->d_type != DT_CHR)
|
if (dentry->d_type != DT_CHR) {
|
||||||
#ifdef BOXMODEL_CS_HD2
|
|
||||||
&& (dentry->d_type != DT_LNK)
|
|
||||||
#endif
|
|
||||||
) {
|
|
||||||
d_printf("[rcinput:%s] skipping '%s'\n", __func__, dentry->d_name);
|
d_printf("[rcinput:%s] skipping '%s'\n", __func__, dentry->d_name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
#ifdef BOXMODEL_CS_HD2
|
|
||||||
if ((dentry->d_type == DT_LNK) && (!checkdev_lnk("/dev/input/" + std::string(dentry->d_name)))) {
|
|
||||||
d_printf("[rcinput:%s] skipping '%s'\n", __func__, dentry->d_name);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
id.type = dentry->d_type;
|
|
||||||
#endif
|
|
||||||
d_printf("[rcinput:%s] considering '%s'\n", __func__, dentry->d_name);
|
d_printf("[rcinput:%s] considering '%s'\n", __func__, dentry->d_name);
|
||||||
id.path = "/dev/input/" + std::string(dentry->d_name);
|
id.path = "/dev/input/" + std::string(dentry->d_name);
|
||||||
if (checkpath(id))
|
if (checkpath(id))
|
||||||
|
@@ -145,9 +145,6 @@ class CRCInput
|
|||||||
{
|
{
|
||||||
int fd;
|
int fd;
|
||||||
std::string path;
|
std::string path;
|
||||||
#ifdef BOXMODEL_CS_HD2
|
|
||||||
int type;
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
uint32_t timerid;
|
uint32_t timerid;
|
||||||
@@ -170,9 +167,6 @@ class CRCInput
|
|||||||
void open(bool recheck = false);
|
void open(bool recheck = false);
|
||||||
bool checkpath(in_dev id);
|
bool checkpath(in_dev id);
|
||||||
bool checkdev();
|
bool checkdev();
|
||||||
#ifdef BOXMODEL_CS_HD2
|
|
||||||
bool checkdev_lnk(std::string lnk);
|
|
||||||
#endif
|
|
||||||
void close();
|
void close();
|
||||||
int translate(int code);
|
int translate(int code);
|
||||||
void calculateMaxFd(void);
|
void calculateMaxFd(void);
|
||||||
|
Reference in New Issue
Block a user