You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
2.9 KiB
112 lines
2.9 KiB
/*****************************************************************************
|
|
* AddonListDataSource.m: Addons manager for the Mac
|
|
****************************************************************************
|
|
* Copyright (C) 2014 VideoLAN and authors
|
|
* Authors: Felix Paul Kühne <fkuehne # videolan.org>
|
|
* David Fuhrmann <dfuhrmann # videolan.org>
|
|
*
|
|
* 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
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#import "intf.h"
|
|
#import "AddonListDataSource.h"
|
|
#import "StringUtility.h"
|
|
|
|
@interface VLCAddon ()
|
|
{
|
|
addon_entry_t *p_addon_entry;
|
|
}
|
|
@end
|
|
|
|
@implementation VLCAddon
|
|
|
|
- (id)initWithAddon:(addon_entry_t *)p_entry
|
|
{
|
|
self = [super init];
|
|
if(self) {
|
|
p_addon_entry = addon_entry_Hold(p_entry);
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
-(void)dealloc
|
|
{
|
|
addon_entry_Release(p_addon_entry);
|
|
}
|
|
|
|
- (NSData *)uuid
|
|
{
|
|
vlc_mutex_lock(&p_addon_entry->lock);
|
|
NSData *o_uuid = [NSData dataWithBytes:p_addon_entry->uuid length:sizeof(p_addon_entry->uuid)];
|
|
vlc_mutex_unlock(&p_addon_entry->lock);
|
|
|
|
return o_uuid;
|
|
}
|
|
|
|
- (NSString *)name
|
|
{
|
|
vlc_mutex_lock(&p_addon_entry->lock);
|
|
NSString *o_str = toNSStr(p_addon_entry->psz_name);
|
|
vlc_mutex_unlock(&p_addon_entry->lock);
|
|
|
|
return o_str;
|
|
}
|
|
- (NSString *)author
|
|
{
|
|
vlc_mutex_lock(&p_addon_entry->lock);
|
|
NSString *o_str = toNSStr(p_addon_entry->psz_author);
|
|
vlc_mutex_unlock(&p_addon_entry->lock);
|
|
|
|
return o_str;
|
|
}
|
|
|
|
- (NSString *)version
|
|
{
|
|
vlc_mutex_lock(&p_addon_entry->lock);
|
|
NSString *o_str = toNSStr(p_addon_entry->psz_version);
|
|
vlc_mutex_unlock(&p_addon_entry->lock);
|
|
|
|
return o_str;
|
|
}
|
|
|
|
- (NSString *)description
|
|
{
|
|
vlc_mutex_lock(&p_addon_entry->lock);
|
|
NSString *o_str = toNSStr(p_addon_entry->psz_description);
|
|
vlc_mutex_unlock(&p_addon_entry->lock);
|
|
|
|
return o_str;
|
|
}
|
|
|
|
- (BOOL)isInstalled
|
|
{
|
|
vlc_mutex_lock(&p_addon_entry->lock);
|
|
BOOL b_installed = p_addon_entry->e_state == ADDON_INSTALLED;
|
|
vlc_mutex_unlock(&p_addon_entry->lock);
|
|
|
|
return b_installed;
|
|
}
|
|
|
|
- (addon_type_t)type
|
|
{
|
|
vlc_mutex_lock(&p_addon_entry->lock);
|
|
addon_type_t type = p_addon_entry->e_type;
|
|
vlc_mutex_unlock(&p_addon_entry->lock);
|
|
|
|
return type;
|
|
}
|
|
|
|
@end
|
|
|