intf.m
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * intf.m: MacOS X interface module
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2007 the VideoLAN team
  5.  * $Id: aa88eab9804ef81f146163fe8d68b70ecca56d9f $
  6.  *
  7.  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  8.  *          Christophe Massiot <massiot@via.ecp.fr>
  9.  *          Derk-Jan Hartman <hartman at videolan.org>
  10.  *          Felix Kühne <fkuehne at videolan dot org>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. /*****************************************************************************
  27.  * Preamble
  28.  *****************************************************************************/
  29. #include <stdlib.h>                                      /* malloc(), free() */
  30. #include <sys/param.h>                                    /* for MAXPATHLEN */
  31. #include <string.h>
  32. #ifdef HAVE_CONFIG_H
  33. # include "config.h"
  34. #endif
  35. #include <vlc_common.h>
  36. #include <vlc_keys.h>
  37. #include <vlc_input.h>
  38. #import <vlc_interface.h>
  39. #import <intf.h>
  40. /*****************************************************************************
  41.  * Local prototypes.
  42.  *****************************************************************************/
  43. static void Run ( intf_thread_t *p_intf );
  44. /*****************************************************************************
  45.  * OpenIntf: initialize interface
  46.  *****************************************************************************/
  47. int OpenIntf ( vlc_object_t *p_this )
  48. {
  49.     intf_thread_t *p_intf = (intf_thread_t*) p_this;
  50.     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
  51.     if( p_intf->p_sys == NULL )
  52.     {
  53.         return VLC_ENOMEM;
  54.     }
  55.     memset( p_intf->p_sys, 0, sizeof( *p_intf->p_sys ) );
  56.     p_intf->pf_run = Run;
  57.     p_intf->b_should_run_on_first_thread = true;
  58.     return VLC_SUCCESS;
  59. }
  60. /*****************************************************************************
  61.  * CloseIntf: destroy interface
  62.  *****************************************************************************/
  63. void CloseIntf ( vlc_object_t *p_this )
  64. {
  65.     intf_thread_t *p_intf = (intf_thread_t*) p_this;
  66.     free( p_intf->p_sys );
  67. }
  68. /* Dock Connection */
  69. typedef struct CPSProcessSerNum
  70. {
  71.         UInt32                lo;
  72.         UInt32                hi;
  73. } CPSProcessSerNum;
  74. extern OSErr    CPSGetCurrentProcess( CPSProcessSerNum *psn);
  75. extern OSErr    CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5);
  76. extern OSErr    CPSSetFrontProcess( CPSProcessSerNum *psn);
  77. /*****************************************************************************
  78.  * KillerThread: Thread that kill the application
  79.  *****************************************************************************/
  80. static void * KillerThread( void *user_data )
  81. {
  82.     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
  83.     intf_thread_t *p_intf = user_data;
  84.     vlc_mutex_init( &p_intf->p_sys->lock );
  85.     vlc_cond_init( &p_intf->p_sys->wait );
  86.     vlc_mutex_lock ( &p_intf->p_sys->lock );
  87.     while( vlc_object_alive( p_intf ) )
  88.         vlc_cond_wait( &p_intf->p_sys->wait, &p_intf->p_sys->lock );
  89.     vlc_mutex_unlock( &p_intf->p_sys->lock );
  90.     vlc_mutex_destroy( &p_intf->p_sys->lock );
  91.     vlc_cond_destroy( &p_intf->p_sys->wait );
  92.     msg_Dbg( p_intf, "Killing the Minimal Mac OS X module" );
  93.     /* We are dead, terminate */
  94.     [NSApp terminate: nil];
  95.     [o_pool release];
  96.     return NULL;
  97. }
  98. /*****************************************************************************
  99.  * Run: main loop
  100.  *****************************************************************************/
  101. static void Run( intf_thread_t *p_intf )
  102. {
  103.     sigset_t set;
  104.     /* Do it again - for some unknown reason, vlc_thread_create() often
  105.      * fails to go to real-time priority with the first launched thread
  106.      * (???) --Meuuh */
  107.     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
  108.     /* Make sure the "force quit" menu item does quit instantly.
  109.      * VLC overrides SIGTERM which is sent by the "force quit"
  110.      * menu item to make sure deamon mode quits gracefully, so
  111.      * we un-override SIGTERM here. */
  112.     sigemptyset( &set );
  113.     sigaddset( &set, SIGTERM );
  114.     pthread_sigmask( SIG_UNBLOCK, &set, NULL );
  115.     /* Setup a thread that will monitor the module killing */
  116.     pthread_t killer_thread;
  117.     pthread_create( &killer_thread, NULL, KillerThread, p_intf );
  118.     CPSProcessSerNum PSN;
  119.     NSAutoreleasePool   *pool = [[NSAutoreleasePool alloc] init];
  120.     [NSApplication sharedApplication];
  121.     if (!CPSGetCurrentProcess(&PSN))
  122.         if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103))
  123.             if (!CPSSetFrontProcess(&PSN))
  124.                 [NSApplication sharedApplication];
  125.     [NSApp run];
  126.     pthread_join( killer_thread, NULL );
  127.     [pool release];
  128. }