]> git.sesse.net Git - vlc/blob - modules/gui/macosx/update.m
Mac OS X gui: Check for update on startup.
[vlc] / modules / gui / macosx / update.m
1 /*****************************************************************************
2  * update.m: MacOS X Check-For-Update window
3  *****************************************************************************
4  * Copyright (C) 2005-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Felix K\9fhne <fkuehne@users.sf.net>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24
25 /*****************************************************************************
26  * Note: the code used to communicate with VLC's core was inspired by 
27  * ../wxwidgets/dialogs/updatevlc.cpp, written by Antoine Cellerier. 
28  *****************************************************************************/
29
30
31 /*****************************************************************************
32  * Preamble
33  *****************************************************************************/
34 #import "update.h"
35 #import "intf.h"
36
37
38 /*****************************************************************************
39  * VLCExtended implementation
40  *****************************************************************************/
41
42 @implementation VLCUpdate
43
44 static VLCUpdate *_o_sharedInstance = nil;
45
46 + (VLCUpdate *)sharedInstance
47 {
48     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
49 }
50
51 - (id)init
52 {
53     if (_o_sharedInstance) {
54         [self dealloc];
55     } else {
56         _o_sharedInstance = [super init];
57     }
58
59     return _o_sharedInstance;
60 }
61
62 - (void)awakeFromNib
63 {
64     /* get up */
65     p_intf = VLCIntf;
66
67     /* clean the interface */
68     [o_fld_releaseNote setString: @""];
69     
70     [self initStrings];
71 }
72
73 - (void)dealloc
74 {
75     if( o_urlOfBinary )
76         [o_urlOfBinary release];
77
78     [super dealloc];
79 }
80
81 - (void)initStrings
82 {
83     /* translate strings to the user's language */
84     [o_update_window setTitle: _NS("Check for Updates")];
85     [o_btn_DownloadNow setTitle: _NS("Download now")];
86     [o_btn_okay setTitle: _NS("OK")];
87 }
88
89 - (void)showUpdateWindow
90 {
91     /* show the window and check for a potential update */
92     [o_fld_status setStringValue: _NS("Checking for Updates...")];
93     [o_fld_currentVersionAndSize setStringValue: @""];
94     [o_fld_releaseNote setString: @""];
95
96     [o_update_window center];
97     [o_update_window displayIfNeeded];
98     [o_update_window makeKeyAndOrderFront:nil];
99
100     [o_bar_checking startAnimation: self];
101     [self checkForUpdate];
102     [o_bar_checking stopAnimation: self];
103 }
104
105 - (IBAction)download:(id)sender
106 {
107     /* provide a save dialogue */
108     SEL sel = @selector(getLocationForSaving:returnCode:contextInfo:);
109     NSSavePanel * saveFilePanel = [[NSSavePanel alloc] init];
110     
111     [saveFilePanel setRequiredFileType: @"dmg"];
112     [saveFilePanel setCanSelectHiddenExtension: YES];
113     [saveFilePanel setCanCreateDirectories: YES];
114     [saveFilePanel beginSheetForDirectory:nil file: \
115         [[o_urlOfBinary componentsSeparatedByString:@"/"] lastObject] \
116         modalForWindow: o_update_window modalDelegate:self didEndSelector:sel \
117         contextInfo:nil];
118 }
119
120 - (void)getLocationForSaving: (NSSavePanel *)sheet returnCode: \
121     (int)returnCode contextInfo: (void *)contextInfo
122 {
123     if (returnCode == NSOKButton)
124     {
125         /* perform download and pass the selected path */
126         [self performDownload: [sheet filename]];
127     }
128     [sheet release];
129 }
130
131 - (IBAction)okay:(id)sender
132 {
133     /* just close the window */
134     [o_update_window close];
135 }
136
137 - (void)checkForUpdate
138 {
139     p_u = update_New( p_intf );
140     update_Check( p_u, VLC_FALSE );
141     update_iterator_t *p_uit = update_iterator_New( p_u );
142     BOOL releaseChecked = NO;
143     BOOL gettingReleaseNote = NO;
144     int x = 0;
145     NSString * pathToReleaseNote;
146     pathToReleaseNote = [NSString stringWithFormat: \
147         @"/tmp/vlc_releasenote_%d.tmp", mdate()];
148
149     if( p_uit )
150     {
151         p_uit->i_rs = UPDATE_RELEASE_STATUS_NEWER;
152         p_uit->i_t = UPDATE_FILE_TYPE_ALL;
153         update_iterator_Action( p_uit, UPDATE_MIRROR );
154         
155         while( update_iterator_Action( p_uit, UPDATE_FILE) != UPDATE_FAIL )
156         {
157             msg_Dbg( p_intf, "parsing available updates, run %i", x );
158             /* if the announced item is of the type "binary", keep it and display
159              * its details to the user. Do similar stuff on "info". Do both 
160              * only if the file is announced as stable */
161             if( p_uit->release.i_type == UPDATE_RELEASE_TYPE_STABLE )
162             {
163                 if( p_uit->file.i_type == UPDATE_FILE_TYPE_INFO )
164                 {
165                     msg_Dbg( p_intf, "release note found, desc = %s",
166                         p_uit->file.psz_description );
167                     [o_fld_releaseNote setString: \
168                         [NSString stringWithUTF8String: \
169                         (p_uit->file.psz_description)]];
170                     /* download our release note
171                      * We will read the temp file after this loop */
172                     update_download( p_uit, (char *)[pathToReleaseNote UTF8String] );
173                     gettingReleaseNote = YES;
174                 }
175                 else if( p_uit->file.i_type == UPDATE_FILE_TYPE_BINARY )
176                 {
177                     msg_Dbg( p_intf, "binary found, version = %s, " \
178                         "url=%s, size=%i MB", p_uit->release.psz_version, \
179                         p_uit->file.psz_url, \
180                         (int)((p_uit->file.l_size / 1024) / 1024) );
181                     [o_fld_currentVersionAndSize setStringValue: [NSString \
182                         stringWithFormat: \
183                         _NS("The latest VLC media player release " \
184                             "is %s (%i MB to download)."), \
185                         p_uit->release.psz_version, ((p_uit->file.l_size \
186                         / 1024) / 1024)]];
187                         
188                     if( o_urlOfBinary )
189                         [o_urlOfBinary release];
190                     o_urlOfBinary = [[NSString alloc] initWithUTF8String: \
191                         p_uit->file.psz_url];
192                 }
193                 if( p_uit->release.i_status == UPDATE_RELEASE_STATUS_NEWER &&
194                     !releaseChecked )
195                 {
196                     /* our version is outdated, let the user download the new
197                      * release */
198                     [o_fld_status setStringValue: _NS("This version of VLC " \
199                         "is outdated.")];
200                     [o_btn_DownloadNow setEnabled: YES];
201                     msg_Dbg( p_intf, "this version of VLC is outdated" );
202                     /* put the mirror information */
203                     msg_Dbg( p_intf, "used mirror: %s, %s [%s]", \
204                             p_uit->mirror.psz_name, p_uit->mirror.psz_location,\
205                             p_uit->mirror.psz_type );
206                     /* make sure that we perform this check only once */
207                     releaseChecked = YES;
208                     /* Make sure the update window is showed in case we have something */
209                     [o_update_window center];
210                     [o_update_window makeKeyAndOrderFront: self];
211
212                 }
213                 else if(! releaseChecked )
214                 {
215                     [o_fld_status setStringValue: _NS("This version of VLC " \
216                         "is latest available.")];
217                     [o_btn_DownloadNow setEnabled: NO];
218                     msg_Dbg( p_intf, "current version is up-to-date" );
219                     releaseChecked = YES;
220                 }
221             }
222             x += 1;
223         }
224
225         update_iterator_Delete( p_uit );
226
227         /* wait for our release notes if necessary, since the download is done
228          * by another thread -- this does usually take 300000 to 500000 ms */
229         if( gettingReleaseNote )
230         {
231             int i = 0;
232             while( [[NSFileManager defaultManager] fileExistsAtPath: pathToReleaseNote] == NO )
233             {
234                 msleep( 100000 );
235                 i += 1;
236                 if( i == 150 )
237                 {
238                     /* if this takes more than 15 sec, exit */
239                     msg_Warn( p_intf, "download took more than 15 sec, exiting" );
240                     break;
241                 }
242             }
243             msg_Dbg( p_intf, "waited %i ms for the release notes", (i * 100000) );
244             msleep( 500000 );
245
246             /* let's open our cached release note and display it
247              * we can't use NSString stringWithContentsOfFile:encoding:error: 
248              * since it is Tiger only */
249             NSString * releaseNote = [[NSString alloc] initWithData: \
250                 [NSData dataWithContentsOfFile: pathToReleaseNote] \
251                 encoding: NSISOLatin1StringEncoding];
252             if( releaseNote )
253                 [o_fld_releaseNote setString: releaseNote];
254         
255             /* delete the file since it isn't needed anymore */
256             BOOL myBOOL = NO;
257             myBOOL = [[NSFileManager defaultManager] removeFileAtPath: \
258                 pathToReleaseNote handler: nil];
259         }
260         else
261         {
262             /* don't confuse the user, but make her happy */
263             [o_fld_status setStringValue: _NS("This version of VLC " \
264                 "is latest available.")];
265             [o_btn_DownloadNow setEnabled: NO];
266             msg_Dbg( p_intf, "current version is up-to-date" );
267             msg_Warn( p_intf, "retrieving current release notes failed!" );
268         }
269     }
270 }
271
272 - (void)performDownload:(NSString *)path
273 {
274     update_iterator_t *p_uit = update_iterator_New( p_u );
275     if( p_uit )
276     {
277         update_iterator_Action( p_uit, UPDATE_MIRROR );
278
279         while( update_iterator_Action( p_uit, UPDATE_FILE) != UPDATE_FAIL )
280         {
281             if( p_uit->release.i_type == UPDATE_RELEASE_TYPE_STABLE &&
282                 p_uit->release.i_status == UPDATE_RELEASE_STATUS_NEWER &&
283                 p_uit->file.i_type == UPDATE_FILE_TYPE_BINARY )
284             {
285                 /* put the mirror information */
286                 msg_Dbg( p_intf, "used mirror: %s, %s [%s]", \
287                     p_uit->mirror.psz_name, p_uit->mirror.psz_location, \
288                     p_uit->mirror.psz_type );
289
290                 /* that's our binary */
291                 update_download( p_uit, (char *)[path UTF8String] );
292             }
293         }
294         
295         update_iterator_Delete( p_uit );
296     }
297
298     [o_update_window close];
299 }
300
301 @end