1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
function UpdatePsychtoolbox(targetdirectory, targetRevision)
% UpdatePsychtoolbox(targetdirectory, targetRevision)
%
% Update your working copy of the Psychtoolbox with the latest bug fixes,
% enhancements, and features from the master server.
%
% If you are using a Psychtoolbox provided by NeuroDebian, this is not
% needed. You will be automatically notified of updates to Psychtoolbox by
% your operating systems update manager as soon as they become available.
%
% The "targetdirectory" argument is optional. If present, it gives the path
% of the Psychtoolbox folder to update. If omitted, UpdatePsychtoolbox will
% update the Psychtoolbox folder found by Matlab's or Octave's "which"
% command. For example:
%
% UpdatePsychtoolbox
% UpdatePsychtoolbox('~/Applications/Psychtoobox')
%
% The "targetRevision" argument is optional and should be normally omitted.
% Normal behaviour is to upgrade your working copy to the latest revision.
% If you provide a specific targetRevision, then this script will
% *downgrade* your copy of Psychtoolbox to the specified revision. This is
% only useful if you experience problems after an update and want to revert
% to an earlier known-to-be-good release. Revisions can be specified by a
% revision number, a specific date, or by the special flag 'PREV' which
% will downgrade to the revision before the most current one. By executing
% this script multiple times with the 'PREV' specifier, you can
% incrementally downgrade until stuff works for you.
%
% UpdatePsychtoolbox cannot change the beta-vs-stable flavor of your
% Psychtoolbox. To change the flavor, run DownloadPsychtoolbox again.
%
% History:
%
% 11/2/05 mk Created.
% 1/13/06 mk Added support for Microsoft Windows.
% 3/13/06 dgp Allow explicit targetdirectory argument.
% Changed default to use WHICH instead of PWD as
% targetdirectory. Update MATLAB path. Expand comments.
% 5/08/06 mk Small fixes. Added option to downgrade to a specific revision.
% 9/23/06 mk Add clear mex call to flush mex files before updating.
% 10/5/06 mk Add detection code for MacOS-X on Intel Macs.
% 21/11/06 mk Add improved detection code for Subversion.
% 31.3.08 mk Allow spaces in path to targetdirectory (Fix contributed by Tobias Wolf)
% 7.5.08 mk Allow to spec 'targetdirectory' as [], so it gets default.
%
% 10/01/08 mk Add interactive output/query for svn client on the Unices.
% This to work-around questions of the client about accepting
% security certificates...
% 01/05/09 mk Remove && or || to make old Matlab versions happier.
% 05/31/09 mk Add support for Octave-3.
% 10/05/09 mk Strip trailing fileseperator from targetDirectory, as
% suggested by Erik Flister to avoid trouble with new svn
% clients.
% 05/27/12 mk Strip backwards compatibility support to pre-R2007a.
% Remove PowerPC support.
%
% 09/14/12 mk Drop support for Octave on MS-Windows.
% 09/14/12 mk Drop support for 32-Bit Octave on OSX.
% 07/02/13 mk Drop support for 32-Bit Matlab on OSX, and thereby for 32-Bit OSX.
% 05/18/14 mk No support for 32-Bit Matlab on Linux and Windows anymore for 3.0.12.
% 10/28/15 mk 32-Bit Octave-4 support for MS-Windows reestablished.
% 04/01/16 mk 64-Bit Octave-4 support for MS-Windows established.
% 06/01/16 mk 32-Bit Octave-4 support for MS-Windows removed.
% Flush all MEX files: This is needed at least on M$-Windows for SVN to
% work if Screen et al. are still loaded.
clear mex
if nargin < 1
targetdirectory=[];
end
if isempty(targetdirectory)
targetdirectory=PsychtoolboxRoot;
end
% Strip trailing fileseperator, if any:
if targetdirectory(end) == filesep
targetdirectory = targetdirectory(1:end-1);
end
if nargin<2
targetRevision = '';
else
fprintf('Target revision: %s \n', targetRevision);
targetRevision = [' -r ' targetRevision ' '];
end
fprintf('UpdatePsychtoolbox('' %s '') \n', targetdirectory);
fprintf('\n');
% Do notify user about potential trouble with path names with blanks in them:
if any(isspace(targetdirectory))
fprintf('The targetdirectory spec contains white-space. This should work, but has not been tested extensively.\n');
end
% Check if this is 32-Bit Octave-4 on Windows, which we don't support at all:
if isempty(strfind(computer, 'x86_64')) && ~isempty(strfind(computer, 'mingw32'))
fprintf('Psychtoolbox 3.0.13 and later do no longer work with 32-Bit GNU/Octave-4 on MS-Windows.\n');
fprintf('You need to use 64-Bit Octave-4 if you want to use Psychtoolbox with Octave on Windows.\n');
fprintf('DownloadPsychtoolbox() with flavor ''Psychtoolbox-3.0.12'', does support 32-Bit Octave-4 on Windows.\n');
error('Tried to setup on 32-Bit Octave, which is no longer supported on Windows.');
end
% Check if this is 32-Bit Matlab on Windows or Linux, which we don't support anymore:
if (strcmp(computer, 'PCWIN') || strcmp(computer, 'GLNX86'))
fprintf('Psychtoolbox 3.0.12 and later do no longer work with 32-Bit versions of Matlab.\n');
fprintf('You need to upgrade to a supported 64-Bit version of Octave or Matlab. 32-Bit Octave is still\n');
fprintf('supported on GNU/Linux.\n');
fprintf('If you must use a legacy 32-Bit Matlab environment, you can call this function\n');
fprintf('DownloadPsychtoolbox() with flavor ''Psychtoolbox-3.0.11'', which does support 32-Bit Matlab on Linux and Windows.\n');
error('Tried to setup on 32-Bit Matlab, which is no longer supported.');
end
% Check if this is 32-Bit Octave or 32-Bit Matlab on OSX, which we don't support anymore:
if (~isempty(strfind(computer, 'apple-darwin')) || strcmp(computer,'MACI')) && isempty(strfind(computer, '64'))
fprintf('Psychtoolbox 3.0.11 and later do no longer work with 32-Bit versions of Octave or Matlab on OSX.\n');
fprintf('You need to upgrade to a 64-Bit version of Octave or Matlab on OSX, which is fully supported.\n');
fprintf('You can also use the alternate download function DownloadLegacyPsychtoolbox() to download\n');
fprintf('an old legacy copy of Psychtoolbox-3.0.9, which did support 32-Bit Octave 3.2 on OSX, or use\n');
fprintf('DownloadPsychtoolbox() with flavor ''Psychtoolbox-3.0.10'', which does support 32-Bit Matlab on OSX.\n');
error('Tried to setup on 32-Bit Octave or 32-Bit Matlab, which are no longer supported on OSX.');
end
% Check if this is Octave-3 on Windows, which we don't support at all:
if strcmp(computer, 'i686-pc-mingw32')
fprintf('Psychtoolbox 3.0.10 and later does no longer work with GNU/Octave-3 on MS-Windows.\n');
fprintf('You need to use 64-Bit Octave-4 if you want to use Psychtoolbox with Octave on Windows.\n');
fprintf('You can also use the alternate download function DownloadLegacyPsychtoolbox() to download\n');
fprintf('an old legacy copy of Psychtoolbox-3.0.9 which did support 32-Bit Octave 3.2 on Windows.\n');
error('Tried to setup on Octave, which is no longer supported on MS-Windows.');
end
if strcmp(computer,'MAC')
fprintf('This version of Psychtoolbox is no longer supported under MacOSX on the Apple PowerPC hardware platform.\n');
fprintf('You can get modern versions of Psychtoolbox-3 for Linux if you choose to install GNU/Linux on your PowerPC\n');
fprintf('machine. These are available from the GNU/Debian project and a future Ubuntu 12.10 release\n.');
fprintf('Alternatively you can download old - totally unsupported - releases of Psychtoolbox version 3.0.9\n');
fprintf('from GoogleCode by use of the alternate download function DownloadLegacyPsychtoolbox().\n\n');
error('Apple MacOSX on Apple PowerPC computers is no longer supported by this Psychtoolbox version.');
end
% Check OS
IsWin = ~isempty(strfind(computer, 'PCWIN')) || ~isempty(strfind(computer, '-w64-mingw32'));
IsOSX = ~isempty(strfind(computer, 'MAC')) || ~isempty(strfind(computer, 'apple-darwin'));
IsLinux = strcmp(computer,'GLNX86') || strcmp(computer,'GLNXA64') || ~isempty(strfind(computer, 'linux-gnu'));
if ~IsWin && ~IsOSX && ~IsLinux
os = computer;
if strcmp(os,'MAC2')
os = 'Mac OS9';
end
fprintf('Sorry, this updater doesn''t support your operating system: %s.\n', os);
fprintf([mfilename ' can only install the new (OSX, Linux and Windows) \n'...
'OpenGL-based versions of the Psychtoolbox-3. To install the older (OS9 and Windows) \n'...
'versions (not based on OpenGL, aka PTB-2) please go to the legacy Psychtoolbox website: \n'...
'web http://psychtoolbox.org/PTB-2/index.html\n']);
error(['Your operating system is not supported by ' mfilename '.']);
end
% Save old Psychtoolbox path
oldPath = RemoveSVNPaths(genpath(targetdirectory));
% get current path and only remove those folders that are currently on
% path, to prevent some unnecessary warnings
oldPath = PathListIsMember(oldPath,path);
% Retrieve path to Subversion executable:
svnpath = GetSubversionPath;
% Check that subversion client is installed.
% Currently, we only know how to check this for Mac OSX.
if IsOSX && isempty(svnpath)
fprintf('The Subversion client "svn" is not in its expected\n');
fprintf('location "/usr/local/bin/svn" on your disk. Please \n');
fprintf('download and install the most recent Subversion client from:\n');
fprintf('web http://metissian.com/projects/macosx/subversion/ -browser\n');
fprintf('and then run %s again.\n',mfilename);
error('Subversion client is missing.');
end
fprintf('About to update your working copy of the OpenGL-based Psychtoolbox-3.\n');
updatecommand=[svnpath 'svn update ' targetRevision ' ' strcat('"',targetdirectory,'"') ];
fprintf('Will execute the following update command:\n');
fprintf('%s\n', updatecommand);
if IsOSX || IsLinux
err=system(updatecommand);
result = 'For reason, see output above.';
else
% MK: TODO: Check if this is still needed on >= R2007a on Windows?
% I think it was only for R11 on Windows.
[err, result]=dos(updatecommand, '-echo');
end
if err
fprintf('Sorry. The update command failed:\n');
fprintf('%s\n', result);
error('Update failed.');
end
fprintf('Success!\n\n');
fprintf('CHANGES:\n');
fprintf('%s\n',result);
fprintf('CHANGE -- MEANING\n');
fprintf('U or G <filename> -- File <filename> was modified/updated.\n');
fprintf('A <filename> -- New file <filename> was added.\n');
fprintf('D <filename> -- File <filename> was removed.\n');
fprintf('C <filename> -- File <filename> is in conflict with local changes!\n');
fprintf('"C" indicates that something went wrong. Please check manually.\n');
fprintf('A conflict happens if you manually modified files in the Psychtoolbox folder in\n');
fprintf('a way that conflicts with the new file from the update and if that conflict can\n');
fprintf('not get automatically resolved.\n');
fprintf('If you cannot resolve such a conflict, the simplest solution is to manually\n');
fprintf('delete the file or subfolder for which a conflict is reported, and then run\n');
fprintf('UpdatePsychtoolbox again. It will download and add the proper missing files.\n');
fprintf('If everything else fails, simply delete the whole Psychtoolbox folder and use\n');
fprintf('DownloadPsychtoolbox again for a full, clean download.\n');
fprintf('\n');
% Remove old Psychtoolbox paths. Add new Psychtoolbox paths.
rmpath(oldPath);
addpath(genpath(targetdirectory));
fprintf('Your MATLAB/OCTAVE path has been updated. Now trying to save the new MATLAB/OCTAVE path...\n\n');
% Does SAVEPATH work?
if exist('savepath') %#ok<EXIST>
err=savepath;
else
% MK: TODO: Still needed for R2007a and Octave 3+ ?
err=path2rc;
end
if err
try
% If this works then we're likely on Matlab:
p=fullfile(matlabroot,'toolbox','local','pathdef.m');
fprintf(['Sorry, SAVEPATH failed. Probably the pathdef.m file lacks write permission. \n'...
'Please ask a user with administrator privileges to enable \n'...
'write by everyone for the file:\n\n''%s''\n\n'],p);
catch %#ok<CTCH>
% Probably on Octave:
fprintf(['Sorry, SAVEPATH failed. Probably your ~/.octaverc file lacks write permission. \n'...
'Please ask a user with administrator privileges to enable \n'...
'write by everyone for that file.\n\n']);
end
fprintf(['Once that''s done, run ' mfilename ' again. For this session, Psychtoolbox\n']);
fprintf('will be fully functional, but you will need to save your path settings to make them persistent.\n\n');
end
% Does a post-install routine exist? If so, we execute it, now that PTB is basically ready.
if exist('PsychtoolboxPostInstallRoutine.m', 'file')
% We pass the information about downloaded flavor and that this is a download (=0) to the
% post-install routine...
clear PsychtoolboxPostInstallRoutine;
PsychtoolboxPostInstallRoutine(1);
end
return
|