]> git.sesse.net Git - vlc/blob - modules/gui/macosx/update.m
* MainMenu.nib, playlist.m: use NSSearchField instead of NSTextField, so we don't...
[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 Update")];
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 Update...")];
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     int x = 0;
144     NSString * pathToReleaseNote;
145     pathToReleaseNote = [NSString stringWithFormat: \
146         @"/tmp/vlc_releasenote_%d.tmp", mdate()]; /*[[NSCalendarDate calendarDate] \
147         descriptionWithCalendarFormat: @"%m-%d-%y--%I.%M.%S.%F"]];*/
148     NSLog( pathToReleaseNote );
149     
150     if( p_uit )
151     {
152         p_uit->i_rs = UPDATE_RELEASE_STATUS_NEWER;
153         p_uit->i_t = UPDATE_FILE_TYPE_ALL;
154         update_iterator_Action( p_uit, UPDATE_MIRROR );
155         
156         while( update_iterator_Action( p_uit, UPDATE_FILE) != UPDATE_FAIL )
157         {
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                     [o_fld_releaseNote setString: \
166                         [NSString stringWithUTF8String: \
167                         (p_uit->file.psz_description)]];
168                     /* download our release note
169                      * We will read the temp file after this loop */
170                     update_download( p_uit, (char *)[pathToReleaseNote UTF8String] );
171                 }
172                 else if( p_uit->file.i_type == UPDATE_FILE_TYPE_BINARY )
173                 {
174                     msg_Dbg( p_intf, "binary found, version = %s, " \
175                         "url=%s, size=%i MB", p_uit->release.psz_version, \
176                         p_uit->file.psz_url, \
177                         (int)((p_uit->file.l_size / 1024) / 1024) );
178                     [o_fld_currentVersionAndSize setStringValue: [NSString \
179                         stringWithFormat: \
180                         _NS("The current release is %s (%i MB to download)."), \
181                         p_uit->release.psz_version, ((p_uit->file.l_size \
182                         / 1024) / 1024)]];
183                         
184                     if( o_urlOfBinary )
185                         [o_urlOfBinary release];
186                     o_urlOfBinary = [[NSString alloc] initWithUTF8String: \
187                         p_uit->file.psz_url];
188                 }
189                 if( p_uit->release.i_status == UPDATE_RELEASE_STATUS_NEWER &&
190                     !releaseChecked )
191                 {
192                     /* our version is outdated, let the user download the new
193                      * release */
194                     [o_fld_status setStringValue: _NS("Your version of VLC " \
195                         "is outdated.")];
196                     [o_btn_DownloadNow setEnabled: YES];
197                     msg_Dbg( p_intf, "this version of VLC is outdated" );
198                     /* put the mirror information */
199                     msg_Dbg( p_intf, "used mirror: %s, %s [%s]", \
200                             p_uit->mirror.psz_name, p_uit->mirror.psz_location,\
201                             p_uit->mirror.psz_type );
202                     /* make sure that we perform this check only once */
203                     releaseChecked = YES;
204                 }
205                 else if(! releaseChecked )
206                 {
207                     [o_fld_status setStringValue: _NS("Your version of VLC " \
208                         "is up-to-date.")];
209                     [o_btn_DownloadNow setEnabled: NO];
210                     msg_Dbg( p_intf, "current version is up-to-date" );
211                     releaseChecked = YES;
212                 }
213             }
214             x += 1;
215         }
216
217         update_iterator_Delete( p_uit );
218         
219         /* wait for our download, since it is done by another thread
220          * this does usually take 300000 to 500000 ms */
221         int i = 0;
222         while( [[NSFileManager defaultManager] fileExistsAtPath: pathToReleaseNote] == NO )
223         {
224             msleep( 100000 );
225             i += 1;
226             if( i == 600 )
227             {
228                 /* if this takes more than 1 min, exit */
229                 msg_Warn( p_intf, "download took more than a minute, exiting" );
230                 return;
231             }
232         }
233         msg_Dbg( p_intf, "waited %i ms for the release notes", (i * 100000) );
234         msleep( 500000 );
235
236         /* let's open our cached release note and display it
237          * we can't use NSString stringWithContentsOfFile:encoding:error: 
238          * since it is Tiger only */
239         NSString * releaseNote = [[NSString alloc] initWithData: \
240             [NSData dataWithContentsOfFile: pathToReleaseNote] \
241             encoding: NSISOLatin1StringEncoding];
242         if( releaseNote )
243             [o_fld_releaseNote setString: releaseNote];
244
245         /* delete the file since it isn't needed anymore */
246         BOOL myBOOL = NO;
247         myBOOL = [[NSFileManager defaultManager] removeFileAtPath: \
248             pathToReleaseNote handler: nil];
249     }
250 }
251
252 - (void)performDownload:(NSString *)path
253 {
254     update_iterator_t *p_uit = update_iterator_New( p_u );
255     if( p_uit )
256     {
257         update_iterator_Action( p_uit, UPDATE_MIRROR );
258
259         while( update_iterator_Action( p_uit, UPDATE_FILE) != UPDATE_FAIL )
260         {
261             if( p_uit->release.i_type == UPDATE_RELEASE_TYPE_STABLE &&
262                 p_uit->release.i_status == UPDATE_RELEASE_STATUS_NEWER &&
263                 p_uit->file.i_type == UPDATE_FILE_TYPE_BINARY )
264             {
265                 /* put the mirror information */
266                 msg_Dbg( p_intf, "used mirror: %s, %s [%s]", \
267                     p_uit->mirror.psz_name, p_uit->mirror.psz_location, \
268                     p_uit->mirror.psz_type );
269
270                 /* that's our binary */
271                 update_download( p_uit, (char *)[path UTF8String] );
272             }
273         }
274         
275         update_iterator_Delete( p_uit );
276     }
277
278     [o_update_window close];
279 }
280
281 @end