/***************************************************************************** * open.m: MacOS X plugin for vlc ***************************************************************************** * Copyright (C) 2002-2003 VideoLAN * $Id: open.m,v 1.41 2003/11/06 18:35:19 hartman Exp $ * * Authors: Jon Lech Johansen * Christophe Massiot * Derk-Jan Hartman * * 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., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ #include /* malloc(), free() */ #include /* for MAXPATHLEN */ #include #include #include #include #include #include #include #include "intf.h" #include "playlist.h" #include "open.h" #include "output.h" /***************************************************************************** * GetEjectableMediaOfClass *****************************************************************************/ NSArray *GetEjectableMediaOfClass( const char *psz_class ) { io_object_t next_media; mach_port_t master_port; kern_return_t kern_result; NSArray *o_devices = nil; NSMutableArray *p_list = nil; io_iterator_t media_iterator; CFMutableDictionaryRef classes_to_match; kern_result = IOMasterPort( MACH_PORT_NULL, &master_port ); if( kern_result != KERN_SUCCESS ) { return( nil ); } classes_to_match = IOServiceMatching( psz_class ); if( classes_to_match == NULL ) { return( nil ); } CFDictionarySetValue( classes_to_match, CFSTR( kIOMediaEjectableKey ), kCFBooleanTrue ); kern_result = IOServiceGetMatchingServices( master_port, classes_to_match, &media_iterator ); if( kern_result != KERN_SUCCESS ) { return( nil ); } p_list = [NSMutableArray arrayWithCapacity: 1]; next_media = IOIteratorNext( media_iterator ); if( next_media != NULL ) { char psz_buf[0x32]; size_t dev_path_length; CFTypeRef str_bsd_path; do { str_bsd_path = IORegistryEntryCreateCFProperty( next_media, CFSTR( kIOBSDNameKey ), kCFAllocatorDefault, 0 ); if( str_bsd_path == NULL ) { IOObjectRelease( next_media ); continue; } snprintf( psz_buf, sizeof(psz_buf), "%s%c", _PATH_DEV, 'r' ); dev_path_length = strlen( psz_buf ); if( CFStringGetCString( str_bsd_path, (char*)&psz_buf + dev_path_length, sizeof(psz_buf) - dev_path_length, kCFStringEncodingASCII ) ) { [p_list addObject: [NSString stringWithCString: psz_buf]]; } CFRelease( str_bsd_path ); IOObjectRelease( next_media ); } while( ( next_media = IOIteratorNext( media_iterator ) ) != NULL ); } IOObjectRelease( media_iterator ); o_devices = [NSArray arrayWithArray: p_list]; return( o_devices ); } /***************************************************************************** * VLCOpen implementation *****************************************************************************/ @implementation VLCOpen - (void)awakeFromNib { intf_thread_t * p_intf = [NSApp getIntf]; [o_panel setTitle: _NS("Open Source")]; [o_mrl_lbl setTitle: _NS("Media Resource Locator (MRL)")]; [o_btn_ok setTitle: _NS("OK")]; [o_btn_cancel setTitle: _NS("Cancel")]; [[o_tabview tabViewItemAtIndex: 0] setLabel: _NS("File")]; [[o_tabview tabViewItemAtIndex: 1] setLabel: _NS("Disc")]; [[o_tabview tabViewItemAtIndex: 2] setLabel: _NS("Network")]; [o_file_btn_browse setTitle: _NS("Browse...")]; [o_file_stream setTitle: _NS("Treat as a pipe rather than as a file")]; [o_disc_device_lbl setStringValue: _NS("Device name")]; [o_disc_title_lbl setStringValue: _NS("Title")]; [o_disc_chapter_lbl setStringValue: _NS("Chapter")]; [o_disc_videots_btn_browse setTitle: _NS("Browse...")]; [o_disc_dvd_menus setTitle: _NS("Use DVD menus")]; [[o_disc_type cellAtRow:0 column:0] setTitle: _NS("VIDEO_TS folder")]; [[o_disc_type cellAtRow:1 column:0] setTitle: _NS("DVD")]; [[o_disc_type cellAtRow:2 column:0] setTitle: _NS("VCD")]; [[o_disc_type cellAtRow:3 column:0] setTitle: _NS("Audio CD")]; [o_net_udp_port_lbl setStringValue: _NS("Port")]; [o_net_udpm_addr_lbl setStringValue: _NS("Address")]; [o_net_udpm_port_lbl setStringValue: _NS("Port")]; [o_net_http_url_lbl setStringValue: _NS("URL")]; [[o_net_mode cellAtRow:0 column:0] setTitle: _NS("UDP/RTP")]; [[o_net_mode cellAtRow:1 column:0] setTitle: _NS("UDP/RTP Multicast")]; [[o_net_mode cellAtRow:2 column:0] setTitle: _NS("HTTP/FTP/MMS")]; [o_net_udp_port setIntValue: config_GetInt( p_intf, "server-port" )]; [o_net_udp_port_stp setIntValue: config_GetInt( p_intf, "server-port" )]; [o_file_sub_ckbox setTitle: _NS("Load subtitles file:")]; [o_file_sub_btn_settings setTitle: _NS("Settings...")]; [o_file_sub_btn_browse setTitle: _NS("Browse...")]; [o_file_sub_override setTitle: _NS("Override")]; [o_file_sub_delay_lbl setStringValue: _NS("delay")]; [o_file_sub_delay_stp setEnabled: NO]; [o_file_sub_fps_lbl setStringValue: _NS("fps")]; [o_file_sub_fps_stp setEnabled: NO]; [o_file_sub_ok_btn setStringValue: _NS("OK")]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openFilePathChanged:) name: NSControlTextDidChangeNotification object: o_file_path]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openDiscInfoChanged:) name: NSControlTextDidChangeNotification object: o_disc_device]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openDiscInfoChanged:) name: NSControlTextDidChangeNotification object: o_disc_title]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openDiscInfoChanged:) name: NSControlTextDidChangeNotification object: o_disc_chapter]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openDiscInfoChanged:) name: NSControlTextDidChangeNotification object: o_disc_videots_folder]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openNetInfoChanged:) name: NSControlTextDidChangeNotification object: o_net_udp_port]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openNetInfoChanged:) name: NSControlTextDidChangeNotification object: o_net_udpm_addr]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openNetInfoChanged:) name: NSControlTextDidChangeNotification object: o_net_udpm_port]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openNetInfoChanged:) name: NSControlTextDidChangeNotification object: o_net_http_url]; } - (void)openTarget:(int)i_type { int i_result; [o_tabview selectTabViewItemAtIndex: i_type]; [o_file_sub_ckbox setState: NSOffState]; i_result = [NSApp runModalForWindow: o_panel]; [o_panel close]; if( i_result ) { NSMutableDictionary *o_dic; NSMutableArray *o_options = [NSMutableArray array]; o_dic = [NSMutableDictionary dictionaryWithObject: [o_mrl stringValue] forKey: @"ITEM_URL"]; if( [o_file_sub_ckbox state] == NSOnState ) { [o_options addObject: [NSString stringWithFormat: @"sub-file=%s", [[o_file_sub_path stringValue] UTF8String]]]; if( [o_file_sub_override state] == NSOnState ) { [o_options addObject: [NSString stringWithFormat: @"sub-delay=%i", (int)( [o_file_sub_delay intValue] * 10 )]]; [o_options addObject: [NSString stringWithFormat: @"sub-fps=%f", [o_file_sub_fps floatValue]]]; } } if( [o_output_ckbox state] == NSOnState ) { [o_options addObject: [NSString stringWithString: [(VLCOutput *)o_sout_options getMRL]]]; } [o_dic setObject: (NSArray *)[o_options copy] forKey: @"ITEM_OPTIONS"]; [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue:NO]; } } - (void)tabView:(NSTabView *)o_tv didSelectTabViewItem:(NSTabViewItem *)o_tvi { NSString *o_label = [o_tvi label]; if( [o_label isEqualToString: _NS("File")] ) { [self openFilePathChanged: nil]; } else if( [o_label isEqualToString: _NS("Disc")] ) { [self openDiscTypeChanged: nil]; } else if( [o_label isEqualToString: _NS("Network")] ) { [self openNetModeChanged: nil]; } } - (IBAction)openFileGeneric:(id)sender { [self openFilePathChanged: nil]; [self openTarget: 0]; } - (IBAction)openDisc:(id)sender { [self openDiscTypeChanged: nil]; [self openTarget: 1]; } - (IBAction)openNet:(id)sender { [self openNetModeChanged: nil]; [self openTarget: 2]; } - (void)openFilePathChanged:(NSNotification *)o_notification { NSString *o_mrl_string; NSString *o_filename = [o_file_path stringValue]; NSString *o_ext = [o_filename pathExtension]; vlc_bool_t b_stream = [o_file_stream state]; BOOL b_dir = NO; [[NSFileManager defaultManager] fileExistsAtPath:o_filename isDirectory:&b_dir]; if( b_dir ) { o_mrl_string = [NSString stringWithFormat: @"dir:%@", o_filename]; } else if( [o_ext isEqualToString: @"bin"] || [o_ext isEqualToString: @"cue"] || [o_ext isEqualToString: @"vob"] || [o_ext isEqualToString: @"iso"] ) { o_mrl_string = o_filename; } else { o_mrl_string = [NSString stringWithFormat: @"%s://%@", b_stream ? "stream" : "file", o_filename]; } [o_mrl setStringValue: o_mrl_string]; } - (IBAction)openFileBrowse:(id)sender { NSOpenPanel *o_open_panel = [NSOpenPanel openPanel]; [o_open_panel setAllowsMultipleSelection: NO]; [o_open_panel setCanChooseDirectories: YES]; [o_open_panel setTitle: _NS("Open File")]; [o_open_panel setPrompt: _NS("Open")]; [o_open_panel beginSheetForDirectory:nil file:nil types:nil modalForWindow:[sender window] modalDelegate: self didEndSelector: @selector(pathChosenInPanel: withReturn: contextInfo:) contextInfo: nil]; } - (void)pathChosenInPanel: (NSOpenPanel *) sheet withReturn:(int)returnCode contextInfo:(void *)contextInfo { if (returnCode == NSFileHandlingPanelOKButton) { NSString *o_filename = [[sheet filenames] objectAtIndex: 0]; [o_file_path setStringValue: o_filename]; [self openFilePathChanged: nil]; } } - (IBAction)openFileStreamChanged:(id)sender { [self openFilePathChanged: nil]; } - (IBAction)openDiscTypeChanged:(id)sender { NSString *o_type; vlc_bool_t b_device, b_menus, b_title_chapter; [o_disc_device removeAllItems]; b_title_chapter = ![o_disc_dvd_menus state]; o_type = [[o_disc_type selectedCell] title]; if ( [o_type isEqualToString: _NS("VIDEO_TS folder")] ) { b_device = 0; b_menus = 1; } else { NSArray *o_devices; NSString *o_disc; const char *psz_class = NULL; b_device = 1; if ( [o_type isEqualToString: _NS("VCD")] ) { psz_class = kIOCDMediaClass; o_disc = o_type; b_menus = 0; b_title_chapter = 1; [o_disc_dvd_menus setState: FALSE]; } else if ( [o_type isEqualToString: _NS("Audio CD")]) { psz_class = kIOCDMediaClass; o_disc = o_type; b_menus = 0; b_title_chapter = 0; [o_disc_dvd_menus setState: FALSE]; } else { psz_class = kIODVDMediaClass; o_disc = o_type; b_menus = 1; } o_devices = GetEjectableMediaOfClass( psz_class ); if ( o_devices != nil ) { int i_devices = [o_devices count]; if ( i_devices ) { int i; for( i = 0; i < i_devices; i++ ) { [o_disc_device addItemWithObjectValue: [o_devices objectAtIndex: i]]; } [o_disc_device selectItemAtIndex: 0]; } else { [o_disc_device setStringValue: [NSString stringWithFormat: _NS("No %@s found"), o_disc]]; } } } [o_disc_device setEnabled: b_device]; [o_disc_title setEnabled: b_title_chapter]; [o_disc_title_stp setEnabled: b_title_chapter]; [o_disc_chapter setEnabled: b_title_chapter]; [o_disc_chapter_stp setEnabled: b_title_chapter]; [o_disc_videots_folder setEnabled: !b_device]; [o_disc_videots_btn_browse setEnabled: !b_device]; [o_disc_dvd_menus setEnabled: b_menus]; [self openDiscInfoChanged: nil]; } - (IBAction)openDiscStepperChanged:(id)sender { int i_tag = [sender tag]; if( i_tag == 0 ) { [o_disc_title setIntValue: [o_disc_title_stp intValue]]; } else if( i_tag == 1 ) { [o_disc_chapter setIntValue: [o_disc_chapter_stp intValue]]; } [self openDiscInfoChanged: nil]; } - (void)openDiscInfoChanged:(NSNotification *)o_notification { NSString *o_type; NSString *o_device; NSString *o_videots; NSString *o_mrl_string; int i_title, i_chapter; vlc_bool_t b_menus; o_type = [[o_disc_type selectedCell] title]; o_device = [o_disc_device stringValue]; i_title = [o_disc_title intValue]; i_chapter = [o_disc_chapter intValue]; o_videots = [o_disc_videots_folder stringValue]; b_menus = [o_disc_dvd_menus state]; if ( [o_type isEqualToString: _NS("VCD")] ) { if ( [o_device isEqualToString: [NSString stringWithFormat: _NS("No %@s found"), o_type]] ) o_device = @""; o_mrl_string = [NSString stringWithFormat: @"vcd://%@@%i,%i", o_device, i_title, i_chapter]; } else if ( [o_type isEqualToString: _NS("Audio CD")] ) { if ( [o_device isEqualToString: [NSString stringWithFormat: _NS("No %@s found"), o_type]] ) o_device = @""; o_mrl_string = [NSString stringWithFormat: @"cdda://%@", o_device]; } else if ( [o_type isEqualToString: _NS("DVD")] ) { if ( [o_device isEqualToString: [NSString stringWithFormat: _NS("No %@s found"), o_type]] ) o_device = @""; if ( b_menus ) o_mrl_string = [NSString stringWithFormat: @"dvdplay://%@", o_device]; else o_mrl_string = [NSString stringWithFormat: @"dvdold://%@@%i,%i", o_device, i_title, i_chapter]; } else /* VIDEO_TS folder */ { if ( b_menus ) o_mrl_string = [NSString stringWithFormat: @"dvdplay://%@", o_videots]; else o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i,%i", o_videots, i_title, i_chapter]; } [o_mrl setStringValue: o_mrl_string]; } - (IBAction)openDiscMenusChanged:(id)sender { [self openDiscInfoChanged: nil]; [self openDiscTypeChanged: nil]; } - (IBAction)openVTSBrowse:(id)sender { NSOpenPanel *o_open_panel = [NSOpenPanel openPanel]; [o_open_panel setAllowsMultipleSelection: NO]; [o_open_panel setCanChooseFiles: NO]; [o_open_panel setCanChooseDirectories: YES]; [o_open_panel setTitle: _NS("Open VIDEO_TS Directory")]; [o_open_panel setPrompt: _NS("Open")]; if( [o_open_panel runModalForDirectory: nil file: nil types: nil] == NSOKButton ) { NSString *o_dirname = [[o_open_panel filenames] objectAtIndex: 0]; [o_disc_videots_folder setStringValue: o_dirname]; [self openDiscInfoChanged: nil]; } } - (IBAction)openNetModeChanged:(id)sender { NSString *o_mode; BOOL b_udp = FALSE; BOOL b_udpm = FALSE; BOOL b_http = FALSE; o_mode = [[o_net_mode selectedCell] title]; if( [o_mode isEqualToString: _NS("UDP/RTP")] ) b_udp = TRUE; else if( [o_mode isEqualToString: _NS("UDP/RTP Multicast")] ) b_udpm = TRUE; else if( [o_mode isEqualToString: _NS("HTTP/FTP/MMS")] ) b_http = TRUE; [o_net_udp_port setEnabled: b_udp]; [o_net_udp_port_stp setEnabled: b_udp]; [o_net_udpm_addr setEnabled: b_udpm]; [o_net_udpm_port setEnabled: b_udpm]; [o_net_udpm_port_stp setEnabled: b_udpm]; [o_net_http_url setEnabled: b_http]; [self openNetInfoChanged: nil]; } - (IBAction)openNetStepperChanged:(id)sender { int i_tag = [sender tag]; if( i_tag == 0 ) { [o_net_udp_port setIntValue: [o_net_udp_port_stp intValue]]; } else if( i_tag == 1 ) { [o_net_udpm_port setIntValue: [o_net_udpm_port_stp intValue]]; } [self openNetInfoChanged: nil]; } - (void)openNetInfoChanged:(NSNotification *)o_notification { NSString *o_mode; NSString *o_mrl_string = [NSString string]; intf_thread_t * p_intf = [NSApp getIntf]; o_mode = [[o_net_mode selectedCell] title]; if( [o_mode isEqualToString: _NS("UDP/RTP")] ) { int i_port = [o_net_udp_port intValue]; o_mrl_string = [NSString stringWithString: @"udp://"]; if( i_port != config_GetInt( p_intf, "server-port" ) ) { o_mrl_string = [o_mrl_string stringByAppendingFormat: @"@:%i", i_port]; } } else if( [o_mode isEqualToString: _NS("UDP/RTP Multicast")] ) { NSString *o_addr = [o_net_udpm_addr stringValue]; int i_port = [o_net_udpm_port intValue]; o_mrl_string = [NSString stringWithFormat: @"udp://@%@", o_addr]; if( i_port != config_GetInt( p_intf, "server-port" ) ) { o_mrl_string = [o_mrl_string stringByAppendingFormat: @":%i", i_port]; } } else if( [o_mode isEqualToString: _NS("HTTP/FTP/MMS")] ) { NSString *o_url = [o_net_http_url stringValue]; if ( ![o_url hasPrefix:@"http:"] && ![o_url hasPrefix:@"ftp:"] && ![o_url hasPrefix:@"mms"] ) o_mrl_string = [NSString stringWithFormat: @"http://%@", o_url]; else o_mrl_string = o_url; } [o_mrl setStringValue: o_mrl_string]; } - (IBAction)openFile:(id)sender { NSOpenPanel *o_open_panel = [NSOpenPanel openPanel]; int i; [o_open_panel setAllowsMultipleSelection: YES]; [o_open_panel setCanChooseDirectories: YES]; [o_open_panel setTitle: _NS("Open File")]; [o_open_panel setPrompt: _NS("Open")]; if( [o_open_panel runModalForDirectory: nil file: nil types: nil] == NSOKButton ) { NSArray *o_array = [NSArray array]; NSArray *o_values = [[o_open_panel filenames] sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)]; for( i = 0; i < (int)[o_values count]; i++) { NSDictionary *o_dic; o_dic = [NSDictionary dictionaryWithObject:[o_values objectAtIndex:i] forKey:@"ITEM_URL"]; o_array = [o_array arrayByAddingObject: o_dic]; } [o_playlist appendArray: o_array atPos: -1 enqueue:NO]; } } - (IBAction)subsChanged:(id)sender { if ([o_file_sub_ckbox state] == NSOnState) { [o_file_sub_btn_settings setEnabled:YES]; } else { [o_file_sub_btn_settings setEnabled:NO]; } } - (IBAction)subSettings:(id)sender { [NSApp beginSheet: o_file_sub_sheet modalForWindow: [sender window] modalDelegate: self didEndSelector: NULL contextInfo: nil]; } - (IBAction)subFileBrowse:(id)sender { NSOpenPanel *o_open_panel = [NSOpenPanel openPanel]; [o_open_panel setAllowsMultipleSelection: NO]; [o_open_panel setTitle: _NS("Open File")]; [o_open_panel setPrompt: _NS("Open")]; if( [o_open_panel runModalForDirectory: nil file: nil types: nil] == NSOKButton ) { NSString *o_filename = [[o_open_panel filenames] objectAtIndex: 0]; [o_file_sub_path setStringValue: o_filename]; } } - (IBAction)subOverride:(id)sender { BOOL b_state = [o_file_sub_override state]; [o_file_sub_delay setEnabled: b_state]; [o_file_sub_delay_stp setEnabled: b_state]; [o_file_sub_fps setEnabled: b_state]; [o_file_sub_fps_stp setEnabled: b_state]; } - (IBAction)subDelayStepperChanged:(id)sender { [o_file_sub_delay setIntValue: [o_file_sub_delay_stp intValue]]; } - (IBAction)subFpsStepperChanged:(id)sender; { [o_file_sub_fps setFloatValue: [o_file_sub_fps_stp floatValue]]; } - (IBAction)subCloseSheet:(id)sender { [o_file_sub_sheet orderOut:sender]; [NSApp endSheet: o_file_sub_sheet]; } - (IBAction)panelCancel:(id)sender { [NSApp stopModalWithCode: 0]; } - (IBAction)panelOk:(id)sender { if( [[o_mrl stringValue] length] ) { [NSApp stopModalWithCode: 1]; } else { NSBeep(); } } @end