playlistinfo.m 15.1 KB
Newer Older
Benjamin Pracht's avatar
Benjamin Pracht committed
1
/*****************************************************************************
2
 r playlistinfo.m: MacOS X interface module
Benjamin Pracht's avatar
Benjamin Pracht committed
3
 *****************************************************************************
4
 * Copyright (C) 2002-2008 the VideoLAN team
5
 * $Id$
Benjamin Pracht's avatar
Benjamin Pracht committed
6
 *
7
 * Authors: Benjamin Pracht <bigben at videolan dot org>
8
 *          Felix Paul Kühne <fkuehne at videolan dot org>
Benjamin Pracht's avatar
Benjamin Pracht committed
9 10 11 12 13
 *
 * 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.
14
 *
Benjamin Pracht's avatar
Benjamin Pracht committed
15 16 17 18 19 20 21
 * 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
Antoine Cellerier's avatar
Antoine Cellerier committed
22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
Benjamin Pracht's avatar
Benjamin Pracht committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36
 *****************************************************************************/

/*****************************************************************************
 * Preamble
 *****************************************************************************/

#include "intf.h"
#include "playlistinfo.h"
#include "playlist.h"

/*****************************************************************************
 * VLCPlaylistInfo Implementation
 *****************************************************************************/

37 38
@implementation VLCInfo

39 40 41
static VLCInfo *_o_sharedInstance = nil;

+ (VLCInfo *)sharedInstance
42
{
43 44
    return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
}
45

46 47 48 49 50 51 52 53 54 55 56 57
- (id)init
{
    if( _o_sharedInstance ) {
        [self dealloc];
    } else {
        _o_sharedInstance = [super init];
        
        if( _o_sharedInstance != nil )
        {
            p_item = NULL;
            o_statUpdateTimer = nil;
        }
58
    }
59 60

    return _o_sharedInstance;
61 62
}

Benjamin Pracht's avatar
Benjamin Pracht committed
63 64 65 66
- (void)awakeFromNib
{
    [o_info_window setExcludedFromWindowsMenu: TRUE];

67 68
    [o_info_window setTitle: _NS("Media Information")];
    [o_uri_lbl setStringValue: _NS("Location")];
Benjamin Pracht's avatar
Benjamin Pracht committed
69
    [o_title_lbl setStringValue: _NS("Title")];
70 71 72
    [o_author_lbl setStringValue: _NS("Artist")];
    [o_saveMetaData_btn setStringValue: _NS("Save Metadata" )];

73
    [[o_tab_view tabViewItemAtIndex: 0] setLabel: _NS("General")];
74
    [[o_tab_view tabViewItemAtIndex: 1] setLabel: _NS("Codec Details")];
75 76 77 78 79 80 81 82 83 84 85 86 87
    [[o_tab_view tabViewItemAtIndex: 2] setLabel: _NS("Statistics")];
    [o_tab_view selectTabViewItemAtIndex: 0];

    /* constants defined in vlc_meta.h */
    [o_genre_lbl setStringValue: _NS(VLC_META_GENRE)];
    [o_copyright_lbl setStringValue: _NS(VLC_META_COPYRIGHT)];
    [o_collection_lbl setStringValue: _NS(VLC_META_COLLECTION)];
    [o_seqNum_lbl setStringValue: _NS(VLC_META_SEQ_NUM)];
    [o_description_lbl setStringValue: _NS(VLC_META_DESCRIPTION)];
    [o_date_lbl setStringValue: _NS(VLC_META_DATE)];
    [o_language_lbl setStringValue: _NS(VLC_META_LANGUAGE)];
    [o_nowPlaying_lbl setStringValue: _NS(VLC_META_NOW_PLAYING)];
    [o_publisher_lbl setStringValue: _NS(VLC_META_PUBLISHER)];
88
 
89 90 91 92 93 94
    /* statistics */
    [o_input_box setTitle: _NS("Input")];
    [o_read_bytes_lbl setStringValue: _NS("Read at media")];
    [o_input_bitrate_lbl setStringValue: _NS("Input bitrate")];
    [o_demux_bytes_lbl setStringValue: _NS("Demuxed")];
    [o_demux_bitrate_lbl setStringValue: _NS("Stream bitrate")];
95
 
96 97 98 99
    [o_video_box setTitle: _NS("Video")];
    [o_video_decoded_lbl setStringValue: _NS("Decoded blocks")];
    [o_displayed_lbl setStringValue: _NS("Displayed frames")];
    [o_lost_frames_lbl setStringValue: _NS("Lost frames")];
100
	[o_fps_lbl setStringValue: _NS("Frames per Second")];
101
 
102 103 104 105
    [o_sout_box setTitle: _NS("Streaming")];
    [o_sent_packets_lbl setStringValue: _NS("Sent packets")];
    [o_sent_bytes_lbl setStringValue: _NS("Sent bytes")];
    [o_sent_bitrate_lbl setStringValue: _NS("Send rate")];
106
 
107 108 109 110
    [o_audio_box setTitle: _NS("Audio")];
    [o_audio_decoded_lbl setStringValue: _NS("Decoded blocks")];
    [o_played_abuffers_lbl setStringValue: _NS("Played buffers")];
    [o_lost_abuffers_lbl setStringValue: _NS("Lost buffers")];
Benjamin Pracht's avatar
Benjamin Pracht committed
111 112
}

113 114
- (void)dealloc
{
115 116 117 118
    /* make sure that the timer is released in any case */
    if( [o_statUpdateTimer isValid] )
        [o_statUpdateTimer invalidate];

119 120
    if ( o_statUpdateTimer )
        [o_statUpdateTimer release];
121

122 123
    [super dealloc];
}
Benjamin Pracht's avatar
Benjamin Pracht committed
124

125
- (void)initPanel
126
{
127 128 129 130 131
    BOOL b_stats = config_GetInt(VLCIntf, "stats");
    if( b_stats )
    {
        o_statUpdateTimer = [NSTimer scheduledTimerWithTimeInterval: 1
            target: self selector: @selector(updateStatistics:)
132
            userInfo: nil repeats: YES];
133 134 135 136 137 138 139 140 141
        [o_statUpdateTimer fire];
        [o_statUpdateTimer retain];
    }
    else
    {
        if( [o_tab_view numberOfTabViewItems] > 2 )
            [o_tab_view removeTabViewItem: [o_tab_view tabViewItemAtIndex: 2]];
    }

142
    [self updatePanel];
143
    [o_info_window makeKeyAndOrderFront: self];
144 145 146 147 148 149
}

- (void)updatePanel
{
    /* make sure that we got the current item and not an outdated one */
    intf_thread_t * p_intf = VLCIntf;
150
        playlist_t * p_playlist = pl_Yield( p_intf );
151

152 153
    p_item = p_playlist->status.p_item;
    vlc_object_release( p_playlist );
154

155
    /* check whether our item is valid, because we would crash if not */
156 157
    if(! [self isItemInPlaylist: p_item] ) return;

158
    /* fill uri info */
159 160
    char *psz_uri = input_item_GetURI( p_item->p_input );
    if( psz_uri )
161
    {
162
        [o_uri_txt setStringValue: [NSString stringWithUTF8String:psz_uri]];
163
    }
164
    free( psz_uri );
165

166 167
#define SET( foo, bar ) \
    char *psz_##foo = input_item_Get##bar ( p_item->p_input ); \
168
    [self setMeta: psz_##foo forLabel: o_##foo##_txt]; \
169
    FREENULL( psz_##foo );
170

171
    /* fill the other fields */
172 173 174 175 176 177 178 179 180 181 182 183
    SET( title, Title );
    SET( author, Artist );
    SET( collection, Album );
    SET( seqNum, TrackNum );
    SET( genre, Genre );
    SET( copyright, Copyright );
    SET( publisher, Publisher );
    SET( nowPlaying, NowPlaying );
    SET( language, Language );
    SET( date, Date );

#undef SET
184 185 186 187 188 189 190 191 192 193 194 195
    
    char *psz_meta;
    NSImage *o_image;
    /* FIXME!! 
    psz_meta = input_item_GetArtURL( p_item );
    if( psz_meta && !strncmp( psz_meta, "file://", 7 ) )
        o_image = [[NSImage alloc] initWithContentsOfURL: [NSURL URLWithString: [NSString stringWithUTF8String: psz_meta]]];
    else */
        o_image = [[NSImage imageNamed: @"noart.png"] retain];
    [o_image_well setImage: o_image];
    [o_image release];
    //free( psz_meta );
196

197
    /* reload the advanced table */
198 199
    [[VLCInfoTreeItem rootItem] refresh];
    [o_outline_view reloadData];
200

201 202
    /* update the stats once to display p_item change faster */
    [self updateStatistics: nil];
Benjamin Pracht's avatar
Benjamin Pracht committed
203 204
}

205
- (void)setMeta: (char *)psz_meta forLabel: (id)theItem
206 207
{
    if( psz_meta != NULL && *psz_meta)
208
        [theItem setStringValue: [NSString stringWithUTF8String:psz_meta]];
209 210
}

211
- (void)updateStatistics:(NSTimer*)theTimer
212
{
213 214
    if( [self isItemInPlaylist: p_item] )
    {
215
        vlc_mutex_lock( &p_item->p_input->p_stats->lock );
216 217

        /* input */
218
        [o_read_bytes_txt setStringValue: [NSString stringWithFormat:
219
            @"%8.0f kB", (float)(p_item->p_input->p_stats->i_read_bytes)/1000]];
220
        [o_input_bitrate_txt setStringValue: [NSString stringWithFormat:
221
            @"%6.0f kb/s", (float)(p_item->p_input->p_stats->f_input_bitrate)*8000]];
222
        [o_demux_bytes_txt setStringValue: [NSString stringWithFormat:
223
            @"%8.0f kB", (float)(p_item->p_input->p_stats->i_demux_read_bytes)/1000]];
224
        [o_demux_bitrate_txt setStringValue: [NSString stringWithFormat:
225
            @"%6.0f kb/s", (float)(p_item->p_input->p_stats->f_demux_bitrate)*8000]];
226 227

        /* Video */
228 229 230 231 232 233
        [o_video_decoded_txt setIntValue: p_item->p_input->p_stats->i_decoded_video];
        [o_displayed_txt setIntValue: p_item->p_input->p_stats->i_displayed_pictures];
        [o_lost_frames_txt setIntValue: p_item->p_input->p_stats->i_lost_pictures];
        float f_fps = 0;
        /* FIXME! input_Control( p_item->p_input, INPUT_GET_VIDEO_FPS, &f_fps ); */
        [o_fps_txt setFloatValue: f_fps];
234 235

        /* Sout */
236
        [o_sent_packets_txt setIntValue: p_item->p_input->p_stats->i_sent_packets];
237
        [o_sent_bytes_txt setStringValue: [NSString stringWithFormat: @"%8.0f kB",
238
            (float)(p_item->p_input->p_stats->i_sent_bytes)/1000]];
239
        [o_sent_bitrate_txt setStringValue: [NSString stringWithFormat:
240
            @"%6.0f kb/s", (float)(p_item->p_input->p_stats->f_send_bitrate*8)*1000]];
241 242

        /* Audio */
243 244 245
        [o_audio_decoded_txt setIntValue: p_item->p_input->p_stats->i_decoded_audio];
        [o_played_abuffers_txt setIntValue: p_item->p_input->p_stats->i_played_abuffers];
        [o_lost_abuffers_txt setIntValue: p_item->p_input->p_stats->i_lost_abuffers];
246

247
        vlc_mutex_unlock( &p_item->p_input->p_stats->lock );
248
    }
249 250
}

251
- (IBAction)saveMetaData:(id)sender
Benjamin Pracht's avatar
Benjamin Pracht committed
252
{
253
    /* TODO: implement this feature
Derk-Jan Hartman's avatar
Derk-Jan Hartman committed
254
    intf_thread_t * p_intf = VLCIntf;
255
    playlist_t * p_playlist = pl_Yield( p_intf );
Benjamin Pracht's avatar
Benjamin Pracht committed
256
    vlc_value_t val;
Benjamin Pracht's avatar
Benjamin Pracht committed
257

Derk-Jan Hartman's avatar
Derk-Jan Hartman committed
258
    if( [self isItemInPlaylist: p_item] )
Benjamin Pracht's avatar
Benjamin Pracht committed
259
    {
Rafaël Carré's avatar
Rafaël Carré committed
260
        input_item_SetName( p_item->p_input, (char*)
261
                [[o_title_txt stringValue] UTF8String] );
Rafaël Carré's avatar
Rafaël Carré committed
262
        input_item_SetURI( p_item->p_input, (char*)
263
                [[o_uri_txt stringValue] UTF8String] );
Rafaël Carré's avatar
Rafaël Carré committed
264
        input_item_SetArtist( p_item->p_input, (char*)
265
                [[o_author_txt stringValue] UTF8String] );
266

Benjamin Pracht's avatar
Benjamin Pracht committed
267
        val.b_bool = VLC_TRUE;
268
        var_Set( p_playlist, "intf-change", val );
Benjamin Pracht's avatar
Benjamin Pracht committed
269
    }
270
    vlc_object_release( p_playlist );*/
271 272
}

273
- (playlist_item_t *)getItem
274
{
275 276 277
    return p_item;
}

278
- (BOOL)isItemInPlaylist:(playlist_item_t *)p_local_item
279 280
{
    intf_thread_t * p_intf = VLCIntf;
281
    playlist_t * p_playlist = pl_Yield( p_intf );
282 283
    int i;

284
    for( i = 0 ; i < p_playlist->all_items.i_size ; i++ )
285
    {
286
        if( ARRAY_VAL( p_playlist->all_items, i ) == p_local_item )
287
        {
288
            vlc_object_release( p_playlist );
289 290 291
            return YES;
        }
    }
292
    vlc_object_release( p_playlist );
293
    return NO;
294
}
Benjamin Pracht's avatar
Benjamin Pracht committed
295

296 297
- (BOOL)windowShouldClose:(id)sender
{
298
    if( [o_statUpdateTimer isValid] )
299
        [o_statUpdateTimer invalidate];
300 301

    if( o_statUpdateTimer )
302
        [o_statUpdateTimer release];
303

304 305 306
    return YES;
}

307 308
@end

309 310 311 312 313 314
@implementation VLCInfo (NSMenuValidation)

- (BOOL)validateMenuItem:(NSMenuItem *)o_mi
{
    BOOL bEnabled = TRUE;

Derk-Jan Hartman's avatar
Derk-Jan Hartman committed
315
    intf_thread_t * p_intf = VLCIntf;
316 317 318
    input_thread_t * p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT,
                                                       FIND_ANYWHERE );

319
    if( [[o_mi title] isEqualToString: _NS("Information")] )
320 321 322 323 324 325 326 327 328 329 330 331
    {
        if( p_input == NULL )
        {
            bEnabled = FALSE;
        }
    }
    if( p_input ) vlc_object_release( p_input );

    return( bEnabled );
}

@end
Benjamin Pracht's avatar
Benjamin Pracht committed
332

333
@implementation VLCInfo (NSTableDataSource)
334

335
- (int)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item
336 337 338 339 340 341 342 343
{
    return (item == nil) ? [[VLCInfoTreeItem rootItem] numberOfChildren] : [item numberOfChildren];
}

- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item {
    return ([item numberOfChildren] > 0);
}

344
- (id)outlineView:(NSOutlineView *)outlineView child:(int)index ofItem:(id)item
345
{
346
    return (item == nil) ? [[VLCInfoTreeItem rootItem] childAtIndex:index] : (id)[item childAtIndex:index];
347 348 349 350 351 352 353 354 355 356 357 358 359 360
}

- (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
{
    if ([[tableColumn identifier] isEqualToString:@"0"])
    {
        return (item == nil) ? @"" : (id)[item getName];
    }
    else
    {
        return (item == nil) ? @"" : (id)[item getValue];
    }
}

361

362 363 364 365 366 367 368 369 370 371 372
@end

@implementation VLCInfoTreeItem

static VLCInfoTreeItem *o_root_item = nil;

#define IsALeafNode ((id)-1)

- (id)initWithName: (NSString *)o_item_name value: (NSString *)o_item_value ID: (int)i_id parent:(VLCInfoTreeItem *)o_parent_item
{
    self = [super init];
373

374 375 376 377 378 379
    if( self != nil )
    {
        o_name = [o_item_name copy];
        o_value = [o_item_value copy];
        i_object_id = i_id;
        o_parent = o_parent_item;
380 381 382 383
        if( [[VLCMain sharedInstance] getInfo] != nil )
            p_item = [[[VLCMain sharedInstance] getInfo] getItem];
        else
            p_item = NULL;
384 385 386 387 388
    }
    return( self );
}

+ (VLCInfoTreeItem *)rootItem {
389 390
    if( o_root_item == nil )
        o_root_item = [[VLCInfoTreeItem alloc] initWithName:@"main" value: @"" ID: 0 parent:nil];
391 392 393 394 395
    return o_root_item;
}

- (void)dealloc
{
396
    if( o_children != IsALeafNode ) [o_children release];
397 398 399 400 401 402 403 404 405 406 407 408
    [o_name release];
    [super dealloc];
}

/* Creates and returns the array of children
 * Loads children incrementally */
- (NSArray *)children
{
    if (o_children == NULL)
    {
        int i;

409
        if( [[[VLCMain sharedInstance] getInfo] isItemInPlaylist: p_item] )
410
        {
411
            if( self == o_root_item )
412
            {
413
                vlc_mutex_lock( &p_item->p_input->lock );
414
                o_children = [[NSMutableArray alloc] initWithCapacity:
415 416
                                                p_item->p_input->i_categories];
                for (i = 0 ; i < p_item->p_input->i_categories ; i++)
417
                {
418
                    [o_children addObject:[[VLCInfoTreeItem alloc]
419
                        initWithName: [NSString stringWithUTF8String:
420
                            p_item->p_input->pp_categories[i]->psz_name]
421 422 423
                        value: @""
                        ID: i
                        parent: self]];
424
                }
425
                vlc_mutex_unlock( &p_item->p_input->lock );
426
            }
427
            else if( o_parent == o_root_item )
428
            {
429
                vlc_mutex_lock( &p_item->p_input->lock );
430
                o_children = [[NSMutableArray alloc] initWithCapacity:
431
                    p_item->p_input->pp_categories[i_object_id]->i_infos];
432

433
                for (i = 0 ; i < p_item->p_input->pp_categories[i_object_id]->i_infos ; i++)
434
                {
435 436
                    [o_children addObject:[[VLCInfoTreeItem alloc]
                    initWithName: [NSString stringWithUTF8String:
437
                            p_item->p_input->pp_categories[i_object_id]->pp_infos[i]->psz_name]
438
                        value: [NSString stringWithUTF8String:
439
                            p_item->p_input->pp_categories[i_object_id]->pp_infos[i]->psz_value ? : ""]
440 441
                        ID: i
                        parent: self]];
442
                }
443
                vlc_mutex_unlock( &p_item->p_input->lock );
444 445 446 447
            }
            else
            {
                o_children = IsALeafNode;
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
            }
        }
    }
    return o_children;
}

- (NSString *)getName
{
    return o_name;
}

- (NSString *)getValue
{
    return o_value;
}

- (VLCInfoTreeItem *)childAtIndex:(int)i_index {
    return [[self children] objectAtIndex:i_index];
}

- (int)numberOfChildren {
    id i_tmp = [self children];
470
    return ( i_tmp == IsALeafNode ) ? (-1) : (int)[i_tmp count];
471 472 473 474
}

- (void)refresh
{
475
    p_item = [[[VLCMain sharedInstance] getInfo] getItem];
476
    if( o_children != NULL )
477 478 479 480 481
    {
        [o_children release];
        o_children = NULL;
    }
}
Benjamin Pracht's avatar
Benjamin Pracht committed
482 483 484

@end