Backward compatible functionSignatures.json
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Paul Wintz
el 2 de Oct. de 2021
Respondida: Rik
el 5 de Oct. de 2021
- use functionSignatures.json to provide autocomplete information for function signatures when using the toolbox in R2021b, and
- support versions of MATLAB going back to at least R2016b (possibly without autocomplete infomation).
I have written a functionSignatures.json file that works well on R2021b, but because changes between MATLAB versions of how functionSignatures.json works, the command line prints the following errors when it tries to suggest autocompletions on R2016b:
Unknown attribute "purpose" with value "Initial state"
Unknown kind value "ordered".
Clearly, this is because support for "kind":"ordered" the attribute "purpose" in functionSignatures.json was not added to till after R2016b.
Is there a way to gracefully handle differences in functionSignatures.json between R2016b and R2021b?
2 comentarios
Rik
el 3 de Oct. de 2021
Unfortunately there is only one way I see around this. As I understand, you can get a function to run at the end of the installation of your toolbox. That function can write the appropriate version of the JSON file in the same folder as your functions.
I'm not aware of a way to extract different files based on the release. There might be.
Respuesta aceptada
Rik
el 5 de Oct. de 2021
Write a function similar to this:
function TestPostInstall
persistent IsInstalled
if isempty(IsInstalled)
%Because a pref (getpref and setpref) can be slow on Octave, I prefer
%to save a txt or mat file with a flag in a folder. I use the function
%below to get the path.
%https://www.mathworks.com/matlabcentral/fileexchange/87634-getwritablefolder
fn=fullfile(GetWritableFolder,'YourToolboxName','PostInstallScript.mat');
if ~exist(fn,'file')
RunPostInstall
PostInstallScriptHasRun='PostInstallScriptHasRun';
save(fn,PostInstallScriptHasRun)
end
IsInstalled=true;
end
end
Now you can write a RunPostInstall function that will write the correct JSON file (you might be interested in my ifversion function).
This setup has minimal overhead, as it will only go to disk once to see if the file exists. If you put a call to this same function in every entry function of your toolbox, the same persistent variable will apply to every call.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!