From cf5cd6b6b39bd0bf2ac142b92582ebc0f2c19305 Mon Sep 17 00:00:00 2001
From: galperti <cristian.galperti@epfl.ch>
Date: Thu, 7 Jan 2021 16:18:42 +0100
Subject: [PATCH] algo info header file generated via a matlab function

---
 test/gitinfointoso/writegitinfoheader.m | 65 +++++++++++++++++++++++++
 1 file changed, 65 insertions(+)
 create mode 100644 test/gitinfointoso/writegitinfoheader.m

diff --git a/test/gitinfointoso/writegitinfoheader.m b/test/gitinfointoso/writegitinfoheader.m
new file mode 100644
index 0000000..ebe7883
--- /dev/null
+++ b/test/gitinfointoso/writegitinfoheader.m
@@ -0,0 +1,65 @@
+function writegitinfoheader()
+
+   % first we get TCV current shot number, to be used for tagging
+   mdsconnect('tcvdata');
+   curshot=mdsvalue('current_shot("tcv_shot")');
+   
+   % then we try to tag the current rtccode repo 
+   tagname = ['builds/TCV' num2str(curshot)];
+   str=sprintf('Going to try this git tag: %s [(Y)es/(N)o/A(p)pend]?',tagname);
+   answ=input(str,'s'); 
+   switch upper(answ)
+       case 'P'
+            nameapp = input('Type what to append to tag name: ','s');
+            tagname = [tagname nameapp];
+       case 'Y'
+       otherwise
+           return
+   end
+   
+   tagmsg = input('Type git tag message here: ','s');
+   tagcmd = ['git tag ' tagname ' -m "' tagmsg '"'];
+   
+   answ = input('Ok to tag [(Y)es/(N)o]?','s');
+   switch upper(answ)
+       case 'Y'
+       otherwise
+            return
+   end
+
+   [status,result] = system(tagcmd);       
+   
+   if status~=0
+      fprintf('could not tag, git error: \n%s\n', result);
+      return
+   end
+   
+   taginfocmd = ['git for-each-ref refs/tags/' tagname ' --format="%(objectname) %(objecttype) %(refname) %(taggername) %(taggerdate) %(contents:subject)"'];
+   [status,result] = system(taginfocmd); 
+   
+   if status~=0
+      fprintf('could not retrieve tag info, git error: \n%s\n', result);
+      return
+   end
+   
+   fprintf('Code decription string will be set to:\n%s\n', result);
+   
+   fd=fopen('scdalgoinfo.h','w');
+   fprintf(fd, '/* scdalgoinfo.h */\n');
+   fprintf(fd, '/* generated on: %s */\n',char(datetime));
+   fprintf(fd, '\n');
+   fprintf(fd, '#ifndef SCDALGOINFO\n');
+   fprintf(fd, '#define SCDALGOINFO\n');
+   fprintf(fd, ['#define ALGOINFOSTR "' result(1:end-1) '"\n']);
+   fprintf(fd, ['#define ALGOINFOLEN ' num2str(numel(result)) '\n']);
+   fprintf(fd, '\n');
+   fprintf(fd, 'struct algoinfo {\n');
+   fprintf(fd, ' char text[ALGOINFOLEN];\n');
+   fprintf(fd, ' unsigned int len;\n');
+   fprintf(fd, '}\n');
+   fprintf(fd, '\n');
+   fprintf(fd, '#endif\n');
+   
+   fclose(fd);
+   
+end
\ No newline at end of file
-- 
GitLab