mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

gary_williams
12.29.2007 b6d6b516bb7268e7af2ca1569a00e0437bbcfd06
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE stax SYSTEM "stax.dtd">
<!--
 ! CDDL HEADER START
 !
 ! The contents of this file are subject to the terms of the
 ! Common Development and Distribution License, Version 1.0 only
 ! (the "License").  You may not use this file except in compliance
 ! with the License.
 !
 ! You can obtain a copy of the license at
 ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
 ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
 ! See the License for the specific language governing permissions
 ! and limitations under the License.
 !
 ! When distributing Covered Code, include this CDDL HEADER in each
 ! file and include the License file at
 ! trunk/opends/resource/legal-notices/OpenDS.LICENSE.  If applicable,
 ! add the following below this CDDL HEADER, with the fields enclosed
 ! by brackets "[]" replaced with your own identifying * information:
 !      Portions Copyright [yyyy] [name of copyright owner]
 !
 ! CDDL HEADER END
 !
 !      Portions Copyright 2006 Sun Microsystems, Inc.
 ! -->
<stax>
 
    <function name="copyfile">
 
    <function-prolog>
        This function copies a source file to destination file to host
    </function-prolog>
 
    <function-map-args>
        <function-arg-def name="srcfile" type="required">
                <function-arg-description>
                    The name of the source fule
                </function-arg-description>
                <function-arg-property name="type" value="filename"/>
        </function-arg-def>
 
        <function-arg-def name="destfile" type="required">
                <function-arg-description>
                    The name of the destination fule
                </function-arg-description>
                <function-arg-property name="type" value="filename"/>
        </function-arg-def>
 
        <function-arg-def name="remotehost" type="optional" default="localhost">
                <function-arg-description>
                    The name of remote host (default localhost)
                </function-arg-description>
                <function-arg-property name="type" value="hostname"/>
        </function-arg-def>
 
    </function-map-args>
 
      <sequence>
 
        <stafcmd name="'STAF Command: Copy File'">
          <location>'%s' % (STAF_LOCAL_HOSTNAME)</location>
          <service>'fs'</service>
          <request>'COPY FILE %s TOFILE %s TOMACHINE %s' % (srcfile,destfile,remotehost) </request>
        </stafcmd>
 
        <script>
          cmdRC=RC
          cmdResult=STAFResult
        </script>
        
        <call function="'checkRC'">
            { 'returncode' : cmdRC ,
              'result'     : cmdResult }
        </call>
 
        <return>cmdRC</return>
 
      </sequence>
 
    </function>
    
    <function name="CopyFolderByExtension">
 
    <function-prolog>
        Copies files by extension from a source to destination folder on host
    </function-prolog>
 
    <function-map-args>
        <function-arg-def name="srcfolder" type="required">
                <function-arg-description>
                    The name of the source folder
                </function-arg-description>
                <function-arg-property name="type" value="foldername"/>
        </function-arg-def>
 
        <function-arg-def name="destfolder" type="required">
                <function-arg-description>
                    The name of the destination fule
                </function-arg-description>
                <function-arg-property name="type" value="foldername"/>
        </function-arg-def>
 
        <function-arg-def name="extension" type="optional" default="'txt'">
                <function-arg-description>
                    The name of host (default txt)
                </function-arg-description>
                <function-arg-property name="type" value="hostname"/>
        </function-arg-def>
        
        <function-arg-def name="hostname" type="optional" default="'localhost'">
                <function-arg-description>
                    The name of remote host (default localhost)
                </function-arg-description>
                <function-arg-property name="type" value="hostname"/>
        </function-arg-def>
 
    </function-map-args>
 
      <sequence>
 
        <stafcmd name="'STAF Command: Copy all %s Files.' % (extension)">
          <location>'%s' % (STAF_LOCAL_HOSTNAME)</location>
          <service>'fs'</service>
          <request>'COPY DIRECTORY %s TODIRECTORY %s TOMACHINE %s EXT %s RECURSE' % (srcfolder,destfolder,hostname,extension) </request>
        </stafcmd>
 
        <script>
          cmdRC=RC
          cmdResult=STAFResult
        </script>
        
        <call function="'checkRC'">
            { 'returncode' : cmdRC ,
              'result'     : cmdResult }
        </call>
 
        <return>cmdRC</return>
        
      </sequence>
 
    </function>
 
    <function name="zipfile">
 
    <function-prolog>
        This function zips a folder on remote machine
    </function-prolog>
 
    <function-map-args>
        <function-required-arg name="zipfilename">
            name of zip file
        </function-required-arg>
        <function-required-arg name="foldername">
            name of destination folder to place zip file contents
        </function-required-arg>
        <function-required-arg name="relativeto">
            folder that the zip archive is relative to
        </function-required-arg>
    </function-map-args>
 
      <sequence>
 
        <stafcmd name="'STAF Command: Zip Up Folder'">
          <location>'%s' % (STAF_LOCAL_HOSTNAME)</location>
          <service>'zip'</service>
          <request>
              'ADD ZIPFILE %s DIRECTORY %s RECURSE RELATIVETO %s' % (zipfilename,foldername,relativeto)
          </request>
        </stafcmd>
 
        <script>
          cmdRC=RC
          cmdResult=STAFResult
        </script>
        
        <call function="'checkRC'">
            { 'returncode' : cmdRC ,
              'result'     : cmdResult }
        </call>
 
        <return>cmdRC</return>
        
      </sequence>
 
    </function>
 
    <function name="unzipfile">
 
    <function-prolog>
        This function unzips a compressed zip archive on remote machine
    </function-prolog>
 
    <function-map-args>
        <function-required-arg name="zipfile">
            name of source zip file
        </function-required-arg>
        <function-required-arg name="unzipdir">
            name of destination folder to place zip file contents
        </function-required-arg>
        <function-optional-arg name="ziphost" default="'localhost'">
            name of host on which to unzip (default localhost)
        </function-optional-arg>
 
    </function-map-args>
 
      <sequence>
 
        <stafcmd name="'STAF Command: Unzip File'">
          <location>'%s' % (ziphost)</location>
          <service>'zip'</service>
          <request>
              'UNZIP ZIPFILE %s TODIRECTORY %s RESTOREPERMISSION REPLACE' % (zipfile,unzipdir)
          </request>
        </stafcmd>
 
        <script>
          cmdRC=RC
          cmdResult=STAFResult
        </script>
        
        <call function="'checkRC'">
            { 'returncode' : cmdRC ,
              'result'     : cmdResult }
        </call>
 
        <return>cmdRC</return>
 
      </sequence>
 
    </function>
 
    <function name="deletefile">
 
    <function-prolog>
        This function recursively deletes a folder
    </function-prolog>
 
    <function-map-args>
        <function-required-arg name="filename">
            name of file to be deleted
        </function-required-arg>
        <function-required-arg name="hostname">
            name of target host
        </function-required-arg>
    </function-map-args>
 
      <sequence>
 
        <stafcmd name="'STAF Command: Delete Existing File'">
          <location>'%s' % (hostname)</location>
          <service>'fs'</service>
          <request>
            'GET ENTRY %s TYPE' % (filename)
          </request>
        </stafcmd>
 
        <if expr="RC == 48">
          <sequence>
            <message log="1">
              'Success: File does not exist, dont delete it.'
            </message>
            <return>0</return>
          </sequence>
        <else>
          <sequence>
            <message log="1">
              'Success: File does exists, will delete it'
            </message>
          </sequence>
        </else>
        </if>
 
        <stafcmd name="'STAF Command: Delete Existing File'">
          <location>'%s' % (hostname)</location>
          <service>'fs'</service>
          <request>
            'DELETE ENTRY %s CONFIRM' % (filename)
          </request>
        </stafcmd>
 
        <script>
          cmdRC=RC
          cmdResult=STAFResult
        </script>
        
        <call function="'checkRC'">
            { 'returncode' : cmdRC ,
              'result'     : cmdResult }
        </call>
 
        <return>cmdRC</return>
 
      </sequence>
 
    </function>
 
    <function name="deletefolder">
 
    <function-prolog>
        This function recursively deletes a folder
    </function-prolog>
 
    <function-map-args>
        <function-required-arg name="foldername">
            name of folder to be deleted
        </function-required-arg>
        <function-required-arg name="hostname">
            name of target host
        </function-required-arg>
    </function-map-args>
 
      <sequence>
 
      <stafcmd name="'STAF Command: Get Folder Attributes'">
        <location>'%s' % (hostname)</location>
        <service>'fs'</service>
        <request>'GET ENTRY %s TYPE' % (foldername)</request>
      </stafcmd>
 
      <if expr="RC == 48">
        <sequence>
          <message log="1">
            'Folder does not exist, do not delete it.'
          </message>
          <return>0</return>
        </sequence>
        <else>
          <sequence>
            <message log="1">
              'Folder exists, will delete it'
            </message>
          </sequence>
        </else>
      </if>
 
      <stafcmd name="'STAF Command: Recursively Delete Folder'">
          <location>'%s' % (hostname)</location>
          <service>'fs'</service>
          <request>
            'DELETE ENTRY %s RECURSE IGNOREERRORS CONFIRM' % (foldername)
          </request>
        </stafcmd>
 
        <script>
          cmdRC=RC
          cmdResult=STAFResult
        </script>
        
        <call function="'checkRC'">
            { 'returncode' : cmdRC ,
              'result'     : cmdResult }
        </call>
 
        <return>cmdRC</return>
        
      </sequence>
 
    </function>
 
</stax>