FreeRDP/channels/urbdrc/client/searchman.c

191 lines
4.5 KiB
C
Raw Normal View History

/**
2012-10-09 07:02:04 +04:00
* FreeRDP: A Remote Desktop Protocol Implementation
* RemoteFX USB Redirection
*
* Copyright 2012 Atrust corp.
* Copyright 2012 Alfred Liu <alfred.liu@atruscorp.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2012-12-03 19:32:04 +04:00
#include <winpr/crt.h>
#include <winpr/synch.h>
2012-12-03 19:32:04 +04:00
#include "searchman.h"
#include "urbdrc_main.h"
2012-10-03 01:24:52 +04:00
static void searchman_rewind(USB_SEARCHMAN* searchman)
{
searchman->idev = searchman->head;
}
2012-10-03 01:24:52 +04:00
static int searchman_has_next(USB_SEARCHMAN* searchman)
{
if (searchman->idev == NULL)
return 0;
else
return 1;
}
2012-10-03 01:24:52 +04:00
static USB_SEARCHDEV* searchman_get_next(USB_SEARCHMAN* searchman)
{
USB_SEARCHDEV* search;
search = searchman->idev;
2019-11-06 17:24:51 +03:00
searchman->idev = (USB_SEARCHDEV*)searchman->idev->next;
return search;
}
2015-07-06 17:46:21 +03:00
static BOOL searchman_list_add(USB_SEARCHMAN* searchman, UINT16 idVendor, UINT16 idProduct)
{
2019-11-06 17:24:51 +03:00
USB_SEARCHDEV* search;
search = (USB_SEARCHDEV*)calloc(1, sizeof(USB_SEARCHDEV));
2015-07-06 17:46:21 +03:00
if (!search)
return FALSE;
2017-04-10 11:39:01 +03:00
search->idVendor = idVendor;
search->idProduct = idProduct;
if (searchman->head == NULL)
{
/* linked list is empty */
searchman->head = search;
searchman->tail = search;
}
else
{
/* append device to the end of the linked list */
searchman->tail->next = (void*)search;
search->prev = (void*)searchman->tail;
searchman->tail = search;
}
2017-04-10 11:39:01 +03:00
searchman->usb_numbers += 1;
2015-07-06 17:46:21 +03:00
return TRUE;
}
static int searchman_list_remove(USB_SEARCHMAN* searchman, UINT16 idVendor, UINT16 idProduct)
{
USB_SEARCHDEV* search;
USB_SEARCHDEV* point;
searchman_rewind(searchman);
2012-10-03 01:24:52 +04:00
while (searchman_has_next(searchman) != 0)
{
point = searchman_get_next(searchman);
2019-11-06 17:24:51 +03:00
if (point->idVendor == idVendor && point->idProduct == idProduct)
{
/* set previous device to point to next device */
search = point;
if (search->prev != NULL)
{
/* unregistered device is not the head */
point = (USB_SEARCHDEV*)search->prev;
point->next = search->next;
}
else
{
/* unregistered device is the head, update head */
searchman->head = (USB_SEARCHDEV*)search->next;
}
/* set next device to point to previous device */
if (search->next != NULL)
{
/* unregistered device is not the tail */
point = (USB_SEARCHDEV*)search->next;
point->prev = search->prev;
}
else
{
/* unregistered device is the tail, update tail */
searchman->tail = (USB_SEARCHDEV*)search->prev;
}
2017-04-10 11:39:01 +03:00
searchman->usb_numbers--;
2017-04-10 11:39:01 +03:00
free(search);
return 1; /* unregistration successful */
}
}
/* if we reach this point, the device wasn't found */
return 0;
}
2012-10-03 01:24:52 +04:00
static void searchman_list_show(USB_SEARCHMAN* self)
{
int num = 0;
2012-10-03 01:24:52 +04:00
USB_SEARCHDEV* usb;
URBDRC_PLUGIN* urbdrc;
if (!self || !self->urbdrc)
return;
urbdrc = self->urbdrc;
WLog_Print(urbdrc->log, WLOG_DEBUG, "=========== Usb Search List =========");
self->rewind(self);
while (self->has_next(self))
{
usb = self->get_next(self);
WLog_Print(urbdrc->log, WLOG_DEBUG, " USB %d: ", num++);
WLog_Print(urbdrc->log, WLOG_DEBUG, " idVendor: 0x%04" PRIX16 "", usb->idVendor);
WLog_Print(urbdrc->log, WLOG_DEBUG, " idProduct: 0x%04" PRIX16 "", usb->idProduct);
}
WLog_Print(urbdrc->log, WLOG_DEBUG, "================= END ===============");
}
2012-10-03 01:24:52 +04:00
void searchman_free(USB_SEARCHMAN* self)
{
2019-11-06 17:24:51 +03:00
USB_SEARCHDEV* dev;
while (self->head != NULL)
{
2019-11-06 17:24:51 +03:00
dev = (USB_SEARCHDEV*)self->head;
self->remove(self, dev->idVendor, dev->idProduct);
}
/* free searchman */
free(self);
}
2019-11-06 17:24:51 +03:00
USB_SEARCHMAN* searchman_new(void* urbdrc, UINT32 UsbDevice)
{
2012-10-03 01:24:52 +04:00
USB_SEARCHMAN* searchman;
2019-11-06 17:24:51 +03:00
searchman = (USB_SEARCHMAN*)calloc(1, sizeof(USB_SEARCHMAN));
if (!searchman)
return NULL;
2012-10-03 01:24:52 +04:00
searchman->urbdrc = urbdrc;
searchman->UsbDevice = UsbDevice;
/* load service */
searchman->add = searchman_list_add;
searchman->remove = searchman_list_remove;
searchman->rewind = searchman_rewind;
searchman->get_next = searchman_get_next;
searchman->has_next = searchman_has_next;
searchman->show = searchman_list_show;
searchman->free = searchman_free;
return searchman;
}