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