Mercurial > hg > orthanc
annotate Resources/Toolbox.lua @ 1224:29cf3dd2cea4
removal of Plustache experiments
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 12 Nov 2014 14:05:02 +0100 |
parents | 921532f67770 |
children | d710ea64f0fd |
rev | line source |
---|---|
397
941ea46e9e26
lua filter of new instances
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
394
diff
changeset
|
1 --[[ PrintRecursive(struct, [limit], [indent]) Recursively print arbitrary data. |
384 | 2 Set limit (default 100) to stanch infinite loops. |
3 Indents tables as [KEY] VALUE, nested tables as [KEY] [KEY]...[KEY] VALUE | |
4 Set indent ("") to prefix each line: Mytable [KEY] [KEY]...[KEY] VALUE | |
394
9784f19f7e1b
path relative to configuration path, list of lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
384
diff
changeset
|
5 Source: https://gist.github.com/stuby/5445834#file-rprint-lua |
384 | 6 --]] |
394
9784f19f7e1b
path relative to configuration path, list of lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
384
diff
changeset
|
7 |
397
941ea46e9e26
lua filter of new instances
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
394
diff
changeset
|
8 function PrintRecursive(s, l, i) -- recursive Print (structure, limit, indent) |
1006
649d47854314
proper handling of metadata in Store
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
418
diff
changeset
|
9 l = (l) or 100; -- default item limit |
649d47854314
proper handling of metadata in Store
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
418
diff
changeset
|
10 i = i or ""; -- indent string |
384 | 11 if (l<1) then print "ERROR: Item limit reached."; return l-1 end; |
12 local ts = type(s); | |
13 if (ts ~= "table") then print (i,ts,s); return l-1 end | |
14 print (i,ts); -- print "table" | |
15 for k,v in pairs(s) do -- print "[KEY] VALUE" | |
397
941ea46e9e26
lua filter of new instances
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
394
diff
changeset
|
16 l = PrintRecursive(v, l, i.."\t["..tostring(k).."]"); |
384 | 17 if (l < 0) then break end |
18 end | |
19 return l | |
20 end | |
418
b79bf2f4ab2e
execution of lua through REST
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
397
diff
changeset
|
21 |
1010 | 22 |
23 | |
24 | |
25 function _InitializeJob() | |
26 _job = {} | |
27 end | |
28 | |
29 | |
30 function _AccessJob() | |
31 return _job | |
32 end | |
33 | |
34 | |
35 function SendToModality(instanceId, modality) | |
36 if instanceId == nil then | |
37 error('Cannot send a nonexistent instance') | |
38 end | |
39 | |
40 table.insert(_job, { | |
41 Operation = 'store-scu', | |
42 Instance = instanceId, | |
43 Modality = modality | |
44 }) | |
45 return instanceId | |
46 end | |
47 | |
48 | |
49 function SendToPeer(instanceId, peer) | |
50 if instanceId == nil then | |
51 error('Cannot send a nonexistent instance') | |
52 end | |
53 | |
54 table.insert(_job, { | |
55 Operation = 'store-peer', | |
56 Instance = instanceId, | |
57 Peer = peer | |
58 }) | |
59 return instanceId | |
60 end | |
61 | |
62 | |
63 function Delete(instanceId) | |
64 if instanceId == nil then | |
65 error('Cannot delete a nonexistent instance') | |
66 end | |
67 | |
68 table.insert(_job, { | |
69 Operation = 'delete', | |
70 Instance = instanceId | |
71 }) | |
72 return nil -- Forbid chaining | |
73 end | |
74 | |
75 | |
76 function ModifyInstance(instanceId, replacements, removals, removePrivateTags) | |
77 if instanceId == nil then | |
78 error('Cannot modify a nonexistent instance') | |
79 end | |
80 | |
81 if instanceId == '' then | |
82 error('Cannot modify twice an instance'); | |
83 end | |
84 | |
85 table.insert(_job, { | |
86 Operation = 'modify', | |
87 Instance = instanceId, | |
88 Replace = replacements, | |
89 Remove = removals, | |
90 RemovePrivateTags = removePrivateTags | |
91 }) | |
92 return '' -- Chain with another operation | |
93 end | |
94 | |
95 | |
1065
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
96 function CallSystem(instanceId, command, args) |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
97 if instanceId == nil then |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
98 error('Cannot modify a nonexistent instance') |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
99 end |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
100 |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
101 table.insert(_job, { |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
102 Operation = 'call-system', |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
103 Instance = instanceId, |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
104 Command = command, |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
105 Arguments = args |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
106 }) |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
107 |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
108 return instanceId |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
109 end |
921532f67770
Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1010
diff
changeset
|
110 |
1010 | 111 |
418
b79bf2f4ab2e
execution of lua through REST
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
397
diff
changeset
|
112 print('Lua toolbox installed') |