summaryrefslogtreecommitdiff
path: root/2.3-1/macros/CCodeGeneration/GenCFunDatFiles.sci
blob: 9af858c7dc77df49063eecd4eb2b8889217832cc (plain)
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
function GenCFunDatFiles(FunctionName,FunPrecSpecifier,FunTypeAnnot,FunSizeAnnot,InArg,NInArg,OutArg,NOutArg,CFunName,LibTypeInfo,FunInfoDatDir)
// function GenCFunDatFiles(FunctionName,FunPrecSpecifier,FunTypeAnnot,FunSizeAnnot,InArg,NInArg,OutArg,NOutArg,CFunName,LibTypeInfo,FunInfoDatDir)
// -----------------------------------------------------------------
// //NUT: add description here
//
// Input data:
// //NUT: add description here
//
// Output data:
// //NUT: add description here
//
// Status:
// 30-Oct-2007 -- Raffaele Nutricato: Author.
// 30-Oct-2007 -- Alberto Morea: Test Ok.
//
// Copyright 2007 Raffaele Nutricato.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------

// #RNU_RES_B
//NUT Nella fun info posso mettere le size simboliche per out arg e non quelle numeriche
//NUT che non usero' mai, anche perche' se un giorno decidero' di cambiare approccio e usero' funzioni
//NUT differenti per size differenti allora dovro' cambiare anche il loro nome per distinguerle
//NUT e di conseguenza avro' funinfo differenti.
// #RNU_RES_E
// ------------------------------
// --- Check input arguments. ---
// ------------------------------
SCI2CNInArgCheck(argn(2),11,11);


// -----------------------
// --- Initialization. ---
// -----------------------
// ---------------------------
// --- End Initialization. ---
// ---------------------------

// #RNU_RES_B
// ----------------------------------------------------------
// --- Find Position of the first output scalar argument. ---
// ----------------------------------------------------------
// #RNU_RES_E
PosFirstOutScalar = 0;
FoundOutScalar = 0;
for counterout = 1:NOutArg
   if (OutArg(counterout).Dimension == 0)
      if (FoundOutScalar==0)
         PosFirstOutScalar = counterout;
         FoundOutScalar = 1;
      end
   end
end

// ------------------------------------
// --- Update C function dat files. ---
// ------------------------------------
clear FunInfo
FunInfo.SCIFunctionName     = FunctionName;
FunInfo.CFunctionName       = CFunName;
FunInfo.FunPrecSpecifier    = FunPrecSpecifier;
FunInfo.FunTypeAnnot        = FunTypeAnnot;
FunInfo.FunSizeAnnot        = FunSizeAnnot;
FunInfo.InArg               = InArg;
FunInfo.NInArg              = NInArg;
FunInfo.OutArg              = OutArg;
FunInfo.NOutArg             = NOutArg;
FunInfo.PosFirstOutScalar   = PosFirstOutScalar;
FunInfo.LibTypeInfo         = LibTypeInfo;
save(fullfile(FunInfoDatDir,CFunName+'.dat'), "FunInfo");
clear FunInfo

endfunction