Backward compatible functionSignatures.json
1 回表示 (過去 30 日間)
古いコメントを表示
- 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 件のコメント
Rik
2021 年 10 月 3 日
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.
採用された回答
Rik
2021 年 10 月 5 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!