]> git.sesse.net Git - vlc/blob - modules/gui/macosx/playlistinfo.m
b5615e0f792c6723520c00061968faba85df246c
[vlc] / modules / gui / macosx / playlistinfo.m
1 /*****************************************************************************
2  r playlistinfo.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Benjamin Pracht <bigben at videolan dot org>
8  *          Felix Paul Kühne <fkuehne at videolan dot org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #include "intf.h"
30 #include "playlistinfo.h"
31 #include "playlist.h"
32
33 /*****************************************************************************
34  * VLCPlaylistInfo Implementation
35  *****************************************************************************/
36
37 @implementation VLCInfo
38
39 static VLCInfo *_o_sharedInstance = nil;
40
41 + (VLCInfo *)sharedInstance
42 {
43     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
44 }
45
46 - (id)init
47 {
48     if( _o_sharedInstance )
49     {
50         [self dealloc];
51     }
52     else
53     {
54         _o_sharedInstance = [super init];
55         
56         if( _o_sharedInstance != nil )
57         {
58             p_item = NULL;
59             o_statUpdateTimer = nil;
60             [self updatePanelWithItem: NULL];
61             rootItem = [[VLCInfoTreeItem alloc] init];
62         }
63     }
64
65     return _o_sharedInstance;
66 }
67
68 - (void)awakeFromNib
69 {
70     [o_info_window setExcludedFromWindowsMenu: YES];
71     [o_info_window setFloatingPanel: NO];
72
73     [o_info_window setTitle: _NS("Media Information")];
74     [o_uri_lbl setStringValue: _NS("Location")];
75     [o_title_lbl setStringValue: _NS("Title")];
76     [o_author_lbl setStringValue: _NS("Artist")];
77     [o_saveMetaData_btn setStringValue: _NS("Save Metadata" )];
78
79     [[o_tab_view tabViewItemAtIndex: 0] setLabel: _NS("General")];
80     [[o_tab_view tabViewItemAtIndex: 1] setLabel: _NS("Codec Details")];
81     [[o_tab_view tabViewItemAtIndex: 2] setLabel: _NS("Statistics")];
82     [o_tab_view selectTabViewItemAtIndex: 0];
83
84     /* constants defined in vlc_meta.h */
85     [o_genre_lbl setStringValue: _NS(VLC_META_GENRE)];
86     [o_copyright_lbl setStringValue: _NS(VLC_META_COPYRIGHT)];
87     [o_collection_lbl setStringValue: _NS(VLC_META_ALBUM)];
88     [o_seqNum_lbl setStringValue: _NS(VLC_META_TRACK_NUMBER)];
89     [o_description_lbl setStringValue: _NS(VLC_META_DESCRIPTION)];
90     [o_date_lbl setStringValue: _NS(VLC_META_DATE)];
91     [o_language_lbl setStringValue: _NS(VLC_META_LANGUAGE)];
92     [o_nowPlaying_lbl setStringValue: _NS(VLC_META_NOW_PLAYING)];
93     [o_publisher_lbl setStringValue: _NS(VLC_META_PUBLISHER)];
94
95     /* statistics */
96     [o_input_box setTitle: _NS("Input")];
97     [o_read_bytes_lbl setStringValue: _NS("Read at media")];
98     [o_input_bitrate_lbl setStringValue: _NS("Input bitrate")];
99     [o_demux_bytes_lbl setStringValue: _NS("Demuxed")];
100     [o_demux_bitrate_lbl setStringValue: _NS("Stream bitrate")];
101
102     [o_video_box setTitle: _NS("Video")];
103     [o_video_decoded_lbl setStringValue: _NS("Decoded blocks")];
104     [o_displayed_lbl setStringValue: _NS("Displayed frames")];
105     [o_lost_frames_lbl setStringValue: _NS("Lost frames")];
106         [o_fps_lbl setStringValue: _NS("Frames per Second")];
107
108     [o_sout_box setTitle: _NS("Streaming")];
109     [o_sent_packets_lbl setStringValue: _NS("Sent packets")];
110     [o_sent_bytes_lbl setStringValue: _NS("Sent bytes")];
111     [o_sent_bitrate_lbl setStringValue: _NS("Send rate")];
112
113     [o_audio_box setTitle: _NS("Audio")];
114     [o_audio_decoded_lbl setStringValue: _NS("Decoded blocks")];
115     [o_played_abuffers_lbl setStringValue: _NS("Played buffers")];
116     [o_lost_abuffers_lbl setStringValue: _NS("Lost buffers")];
117
118     [o_info_window setInitialFirstResponder: o_uri_txt];
119     [o_info_window setDelegate: self];
120
121     /* We may be awoken from nib way after initialisation
122      * Update ourselves */
123     [self updatePanelWithItem:p_item];
124 }
125
126 - (void)stopTimers
127 {
128     /* make sure that the timer is released in any case */
129     if( o_statUpdateTimer && [o_statUpdateTimer isValid] )
130         [o_statUpdateTimer invalidate];
131
132     [rootItem release];
133
134     [o_statUpdateTimer release];
135     o_statUpdateTimer = nil;
136 }
137
138 - (void)dealloc
139 {
140     /* make sure that the timer is released in any case */
141     if( o_statUpdateTimer && [o_statUpdateTimer isValid] )
142         [o_statUpdateTimer invalidate];
143
144     [o_statUpdateTimer release];
145
146     if( p_item ) vlc_gc_decref( p_item );
147
148     [super dealloc];
149 }
150
151 - (void)windowDidBecomeKey:(NSNotification *)notification
152 {
153     BOOL b_stats = config_GetInt(VLCIntf, "stats");
154     if( b_stats )
155     {
156         if( o_statUpdateTimer )
157         {
158             [o_statUpdateTimer invalidate];
159             [o_statUpdateTimer release];
160             o_statUpdateTimer = nil;
161         }
162         o_statUpdateTimer = [NSTimer scheduledTimerWithTimeInterval: 1
163             target: self selector: @selector(updateStatistics:)
164             userInfo: nil repeats: YES];
165         [o_statUpdateTimer fire];
166         [o_statUpdateTimer retain];
167     }
168 }
169
170 - (BOOL)windowShouldClose:(id)sender
171 {
172     if( [o_statUpdateTimer isValid] )
173         [o_statUpdateTimer invalidate];
174
175     if( o_statUpdateTimer )
176         [o_statUpdateTimer release];
177     o_statUpdateTimer = nil;
178     return YES;
179 }
180
181 - (void)initPanel
182 {
183     BOOL b_stats = config_GetInt(VLCIntf, "stats");
184     if( !b_stats )
185     {
186         if( [o_tab_view numberOfTabViewItems] > 2 )
187             [o_tab_view removeTabViewItem: [o_tab_view tabViewItemAtIndex: 2]];
188     }
189
190     [self initMediaPanelStats];
191     [o_info_window makeKeyAndOrderFront: self];
192 }
193
194 - (void)initMediaPanelStats
195 {
196     //Initializing Input Variables
197     [o_read_bytes_txt setStringValue: [NSString stringWithFormat:@"%8.0f kB", (float)0]];
198     [o_input_bitrate_txt setStringValue: [NSString stringWithFormat:@"%6.0f kb/s", (float)0]];
199     [o_demux_bytes_txt setStringValue: [NSString stringWithFormat:@"%8.0f kB", (float)0]];
200     [o_demux_bitrate_txt setStringValue: [NSString stringWithFormat:@"%6.0f kb/s", (float)0]];
201     
202     //Initializing Video Variables
203     [o_video_decoded_txt setIntValue:0];
204     [o_displayed_txt setIntValue:0];
205     [o_lost_frames_txt setIntValue:0];
206     [o_fps_txt setFloatValue:0];
207
208     //Initializing Output Variables
209     [o_sent_packets_txt setIntValue: 0];
210     [o_sent_bytes_txt setStringValue: [NSString stringWithFormat:@"%8.0f kB", (float)0]];
211     [o_sent_bitrate_txt setStringValue: [NSString stringWithFormat:@"%6.0f kb/s", (float)0]];
212
213     //Initializing Audio Variables
214     [o_audio_decoded_txt setIntValue:0];
215     [o_played_abuffers_txt setIntValue: 0];
216     [o_lost_abuffers_txt setIntValue: 0];
217
218 }
219
220 - (void)updatePanelWithItem:(input_item_t *)_p_item;
221 {
222     if( _p_item != p_item )
223     {
224         if( p_item ) vlc_gc_decref( p_item );
225         [o_saveMetaData_btn setEnabled: NO];
226         if( _p_item ) vlc_gc_incref( _p_item );
227         p_item = _p_item;
228     }
229
230     if( !p_item )
231     {
232         /* Erase */
233     #define SET( foo ) \
234         [self setMeta: "" forLabel: o_##foo##_txt];
235         SET( uri );
236         SET( title );
237         SET( author );
238         SET( collection );
239         SET( seqNum );
240         SET( genre );
241         SET( copyright );
242         SET( publisher );
243         SET( nowPlaying );
244         SET( language );
245         SET( date );
246         SET( description );
247     #undef SET
248         [o_image_well setImage: [NSImage imageNamed: @"noart.png"]];
249     }
250     else
251     {
252         if( !input_item_IsPreparsed( p_item ) )
253         {
254             playlist_t * p_playlist = pl_Hold( VLCIntf );
255             playlist_PreparseEnqueue( p_playlist, p_item, pl_Unlocked );
256             pl_Release( VLCIntf );
257         }
258
259         /* fill uri info */
260         char * psz_url = input_item_GetURI( p_item );
261         [o_uri_txt setStringValue: [NSString stringWithUTF8String: psz_url ? psz_url : ""  ]];
262         free( psz_url );
263
264         /* fill title info */
265         char * psz_title = input_item_GetTitle( p_item );
266         if( !psz_title )
267             psz_title = input_item_GetName( p_item );
268         [o_title_txt setStringValue: [NSString stringWithUTF8String: psz_title ? : ""  ]];
269         free( psz_title );
270
271     #define SET( foo, bar ) \
272         char *psz_##foo = input_item_Get##bar ( p_item ); \
273         [self setMeta: psz_##foo forLabel: o_##foo##_txt]; \
274         FREENULL( psz_##foo );
275
276         /* fill the other fields */
277         SET( author, Artist );
278         SET( collection, Album );
279         SET( seqNum, TrackNum );
280         SET( genre, Genre );
281         SET( copyright, Copyright );
282         SET( publisher, Publisher );
283         SET( nowPlaying, NowPlaying );
284         SET( language, Language );
285         SET( date, Date );
286         SET( description, Description );
287
288     #undef SET
289
290         char *psz_meta;
291         NSImage *o_image;
292         psz_meta = input_item_GetArtURL( p_item );
293         if( psz_meta && !strncmp( psz_meta, "file://", 7 ) )
294             o_image = [[NSImage alloc] initWithContentsOfFile: [NSString stringWithUTF8String: psz_meta+7]];
295         else
296             o_image = [[NSImage imageNamed: @"noart.png"] retain];
297         [o_image_well setImage: o_image];
298         [o_image release];
299         FREENULL( psz_meta );
300     }
301
302     /* reload the advanced table */
303     [rootItem refresh];
304     [o_outline_view reloadData];
305
306     /* update the stats once to display p_item change faster */
307     [self updateStatistics: nil];
308 }
309
310 - (void)setMeta: (char *)psz_meta forLabel: (id)theItem
311 {
312     if( psz_meta != NULL && *psz_meta)
313         [theItem setStringValue: [NSString stringWithUTF8String:psz_meta]];
314     else
315         [theItem setStringValue: @""];
316 }
317
318 - (void)updateStatistics:(NSTimer*)theTimer
319 {
320     if( !p_item || !p_item->p_stats )
321     {
322         [self initMediaPanelStats];
323         return;
324     }
325
326     vlc_mutex_lock( &p_item->p_stats->lock );
327
328     /* input */
329     [o_read_bytes_txt setStringValue: [NSString stringWithFormat:
330         @"%8.0f kB", (float)(p_item->p_stats->i_read_bytes)/1000]];
331     [o_input_bitrate_txt setStringValue: [NSString stringWithFormat:
332         @"%6.0f kb/s", (float)(p_item->p_stats->f_input_bitrate)*8000]];
333     [o_demux_bytes_txt setStringValue: [NSString stringWithFormat:
334         @"%8.0f kB", (float)(p_item->p_stats->i_demux_read_bytes)/1000]];
335     [o_demux_bitrate_txt setStringValue: [NSString stringWithFormat:
336         @"%6.0f kb/s", (float)(p_item->p_stats->f_demux_bitrate)*8000]];
337
338     /* Video */
339     [o_video_decoded_txt setIntValue: p_item->p_stats->i_decoded_video];
340     [o_displayed_txt setIntValue: p_item->p_stats->i_displayed_pictures];
341     [o_lost_frames_txt setIntValue: p_item->p_stats->i_lost_pictures];
342     float f_fps = 0;
343     /* FIXME: input_Control( p_item, INPUT_GET_VIDEO_FPS, &f_fps ); */
344     [o_fps_txt setFloatValue: f_fps];
345
346     /* Sout */
347     [o_sent_packets_txt setIntValue: p_item->p_stats->i_sent_packets];
348     [o_sent_bytes_txt setStringValue: [NSString stringWithFormat: @"%8.0f kB",
349         (float)(p_item->p_stats->i_sent_bytes)/1000]];
350     [o_sent_bitrate_txt setStringValue: [NSString stringWithFormat:
351         @"%6.0f kb/s", (float)(p_item->p_stats->f_send_bitrate*8)*1000]];
352
353     /* Audio */
354     [o_audio_decoded_txt setIntValue: p_item->p_stats->i_decoded_audio];
355     [o_played_abuffers_txt setIntValue: p_item->p_stats->i_played_abuffers];
356     [o_lost_abuffers_txt setIntValue: p_item->p_stats->i_lost_abuffers];
357
358     vlc_mutex_unlock( &p_item->p_stats->lock );
359 }
360
361 - (IBAction)metaFieldChanged:(id)sender
362 {
363     [o_saveMetaData_btn setEnabled: YES];
364 }
365
366 - (IBAction)saveMetaData:(id)sender
367 {
368     playlist_t * p_playlist = pl_Hold( VLCIntf );
369     vlc_value_t val;
370
371     if( !p_item ) goto error;
372
373     meta_export_t p_export;
374     p_export.p_item = p_item;
375
376     /* we can write meta data only in a file */
377     vlc_mutex_lock( &p_item->lock );
378     int i_type = p_item->i_type;
379     vlc_mutex_unlock( &p_item->lock );
380
381     if( i_type != ITEM_TYPE_FILE )
382         goto error;
383
384     char *psz_uri_orig = input_item_GetURI( p_item );
385     char *psz_uri = psz_uri_orig;
386     if( !strncmp( psz_uri, "file://", 7 ) )
387         psz_uri += 7; /* strlen("file://") = 7 */
388
389     p_export.psz_file = strndup( psz_uri, PATH_MAX );
390     free( psz_uri_orig );
391
392     #define utf8( o_blub ) \
393         [[o_blub stringValue] UTF8String]
394
395     input_item_SetName( p_item, utf8( o_title_txt ) );
396     input_item_SetTitle( p_item, utf8( o_title_txt ) );
397     input_item_SetArtist( p_item, utf8( o_author_txt ) );
398     input_item_SetAlbum( p_item, utf8( o_collection_txt ) );
399     input_item_SetGenre( p_item, utf8( o_genre_txt ) );
400     input_item_SetTrackNum( p_item, utf8( o_seqNum_txt ) );
401     input_item_SetDate( p_item, utf8( o_date_txt ) );
402     input_item_SetCopyright( p_item, utf8( o_copyright_txt ) );
403     input_item_SetPublisher( p_item, utf8( o_publisher_txt ) );
404     input_item_SetDescription( p_item, utf8( o_description_txt ) );
405     input_item_SetLanguage( p_item, utf8( o_language_txt ) );
406
407     PL_LOCK;
408     p_playlist->p_private = &p_export;
409
410     module_t *p_mod = module_need( p_playlist, "meta writer", NULL, false );
411     if( p_mod )
412         module_unneed( p_playlist, p_mod );
413     PL_UNLOCK;
414
415     val.b_bool = true;
416     var_Set( p_playlist, "intf-change", val );
417     [self updatePanelWithItem: p_item];
418
419     pl_Release( VLCIntf );
420     [o_saveMetaData_btn setEnabled: NO];
421     return;
422
423 error:
424     pl_Release( VLCIntf );
425     NSRunAlertPanel(_NS("Error while saving meta"),
426         _NS("VLC was unable to save the meta data."),
427         _NS("OK"), nil, nil);
428 }
429
430 - (IBAction)downloadCoverArt:(id)sender
431 {
432     playlist_t * p_playlist = pl_Hold( VLCIntf );
433     if( p_item) playlist_AskForArtEnqueue( p_playlist, p_item, pl_Unlocked );
434     pl_Release( VLCIntf );
435 }
436
437 - (input_item_t *)item
438 {
439     if( p_item ) vlc_gc_incref( p_item );
440     return p_item;
441 }
442
443 @end
444
445 @implementation VLCInfo (NSMenuValidation)
446
447 - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
448 {
449     BOOL bEnabled = TRUE;
450
451     if( [[o_mi title] isEqualToString: _NS("Information")] )
452     {
453         return ![[[VLCMain sharedInstance] getPlaylist] isSelectionEmpty];
454     }
455
456     return TRUE;
457 }
458
459 @end
460
461 @implementation VLCInfo (NSTableDataSource)
462
463 - (NSInteger)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item
464 {
465     return (item == nil) ? [rootItem numberOfChildren] : [item numberOfChildren];
466 }
467
468 - (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item {
469     return ([item numberOfChildren] > 0);
470 }
471
472 - (id)outlineView:(NSOutlineView *)outlineView child:(NSInteger)index ofItem:(id)item
473 {
474     return (item == nil) ? [rootItem childAtIndex:index] : (id)[item childAtIndex:index];
475 }
476
477 - (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
478 {
479     if ([[tableColumn identifier] isEqualToString:@"0"])
480     {
481         return (item == nil) ? @"" : (id)[item name];
482     }
483     else
484     {
485         return (item == nil) ? @"" : (id)[item value];
486     }
487 }
488
489 @end
490
491 @implementation VLCInfoTreeItem
492
493 #define IsALeafNode ((id)-1)
494
495 - (id)initWithName: (NSString *)o_item_name value: (NSString *)o_item_value ID: (int)i_id
496        parent:(VLCInfoTreeItem *)o_parent_item
497 {
498     self = [super init];
499
500     if( self != nil )
501     {
502         o_name = [o_item_name copy];
503         o_value = [o_item_value copy];
504         i_object_id = i_id;
505         o_parent = o_parent_item;
506         p_item = [[[VLCMain sharedInstance] getInfo] item];
507         o_children = nil;
508     }
509     return( self );
510 }
511
512 - (id)init
513 {
514     return [self initWithName:@"main" value:@"" ID:-1 parent:nil];
515 }
516
517 - (void)dealloc
518 {
519     if( o_children != IsALeafNode ) [o_children release];
520     [o_name release];
521     [o_value release];
522     if( p_item ) vlc_gc_decref( p_item );
523     [super dealloc];
524 }
525
526 /* Creates and returns the array of children
527  * Loads children incrementally */
528 - (NSArray *)children
529 {
530     if( !p_item ) return nil;
531
532     if (o_children == NULL)
533     {
534         int i;
535
536         if( i_object_id == -1 )
537         {
538             vlc_mutex_lock( &p_item->lock );
539             o_children = [[NSMutableArray alloc] initWithCapacity: p_item->i_categories];
540             for (i = 0 ; i < p_item->i_categories ; i++)
541             {
542                 NSString * name = [NSString stringWithUTF8String: p_item->pp_categories[i]->psz_name];
543                 VLCInfoTreeItem * item = [[VLCInfoTreeItem alloc] initWithName:name value:@"" ID:i parent:self];
544                 [item autorelease];
545                 [o_children addObject:item];
546             }
547             vlc_mutex_unlock( &p_item->lock );
548         }
549         else if( o_parent->i_object_id == -1 )
550         {
551             vlc_mutex_lock( &p_item->lock );
552             info_category_t * cat = p_item->pp_categories[i_object_id];
553             o_children = [[NSMutableArray alloc] initWithCapacity: cat->i_infos];
554             for (i = 0 ; i < cat->i_infos ; i++)
555             {
556                 NSString * name = [NSString stringWithUTF8String: cat->pp_infos[i]->psz_name];
557                 NSString * value = [NSString stringWithUTF8String: cat->pp_infos[i]->psz_value ? : ""];
558                 VLCInfoTreeItem * item = [[VLCInfoTreeItem alloc] initWithName:name value:value ID:i parent:self];
559                 [item autorelease];
560                 [o_children addObject:item];
561             }
562             vlc_mutex_unlock( &p_item->lock );
563         }
564         else
565         {
566             o_children = IsALeafNode;
567         }
568     }
569     return o_children;
570 }
571
572 - (NSString *)name
573 {
574     return [[o_name retain] autorelease];
575 }
576
577 - (NSString *)value
578 {
579     return [[o_value retain] autorelease];
580 }
581
582 - (void)refresh
583 {
584     input_item_t * oldItem = p_item;
585     p_item = [[[VLCMain sharedInstance] getInfo] item];
586     if( oldItem && oldItem != p_item ) vlc_gc_decref( oldItem );
587
588     [o_children release];
589     o_children = nil;
590 }
591
592 - (VLCInfoTreeItem *)childAtIndex:(int)i_index {
593     return [[self children] objectAtIndex:i_index];
594 }
595
596 - (int)numberOfChildren {
597
598     id i_tmp = [self children];
599     return ( i_tmp == IsALeafNode ) ? (-1) : (int)[i_tmp count];
600 }
601
602 @end
603