forked from cubewise-code/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bedrock.Dim.Clone.pro
408 lines (326 loc) · 9.29 KB
/
Bedrock.Dim.Clone.pro
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
601,100
602,"Bedrock.Dim.Clone"
562,"SUBSET"
586,"}Cubes"
585,"}Cubes"
564,
565,"sHmmx_4Hmh2qe0`ZY4\aQ=afX45Y3H>mMawRcSy4ePBr?fqgdhCfipX?>Z6V`f`9Vo2;qS=;j[s>;:EKfxZ0>EV]u7F^y9saBi6GV6@MNOgrmXrqJ?>dlcP[EqP6KcKi6SZJz0=]2Ta91mCR_I<:N4cCnk]S1MlqHxrppnBIXuY[YG`<Rt\ZwUA4Cs1Z5kcVc2SWq8?g"
559,1
928,0
593,
594,
595,
597,
598,
596,
800,
801,
566,0
567,","
588,"."
589,
568,""""
570,
571,All
569,0
592,0
599,1000
560,5
pSourceDim
pTargetDim
pAttr
pUnwind
pDebug
561,5
2
2
1
1
1
590,5
pSourceDim,""
pTargetDim,""
pAttr,0
pUnwind,0
pDebug,0
637,5
pSourceDim,"Source Dimension"
pTargetDim,"Target Dimension"
pAttr,"Include Attributes? (Boolean 1=True)"
pUnwind,"0 = Delete all Elements, 1 = Unwind Existing Elements, 2 = Do not change Existing Elements"
pDebug,"Debug Mode"
577,1
vElement
578,1
2
579,1
1
580,1
0
581,1
0
582,1
VarType=32ColType=827
603,0
572,162
#****Begin: Generated Statements***
#****End: Generated Statements****
#####################################################################################
##~~Copyright bedrocktm1.org 2011 www.bedrocktm1.org/how-to-licence.php Ver 3.1.0~~##
#####################################################################################
# This process will clone the source dimension
# If the target dimension already exists then it will be overwritten
### Constants ###
cProcess = 'Bedrock.Dim.Clone' ;
cTimeStamp = TimSt( Now, '\Y\m\d\h\i\s' );
cDebugFile = GetProcessErrorFileDirectory | cProcess | '.' | cTimeStamp | '.';
cSubset = cProcess;
### Initialise Debug ###
If( pDebug >= 1 );
# Set debug file name
sDebugFile = cDebugFile | 'Prolog.debug';
# Log start time
AsciiOutput( sDebugFile, 'Process Started: ' | TimSt( Now, '\d-\m-\Y \h:\i:\s' ) );
# Log parameters
AsciiOutput( sDebugFile, 'Parameters: pSourceDim : ' | pSourceDim );
AsciiOutput( sDebugFile, ' pTargetDim : ' | pTargetDim );
AsciiOutput( sDebugFile, ' pUnwind : ' | NumberToString( pUnwind ) );
AsciiOutput( sDebugFile, ' pAttr : ' | NumberToString( pAttr ) );
EndIf;
### Validate Parameters ###
nErrors = 0;
# Validate source dimension
If ( DimensionExists( pSourceDim ) = 0 );
nErrors = 1;
sMessage = 'Invalid source dimension: ' | pSourceDim;
If( pDebug >= 1 );
AsciiOutput( sDebugFile, sMessage );
EndIf;
DataSourceType = 'NULL';
ItemReject( sMessage );
EndIf;
# Validate target dimension
If(
pTargetDim @= '' % pTargetDim @= pSourceDim );
pTargetDim = pSourceDim | '_Clone';
EndIf;
### Create target dimension ###
If( pDebug <= 1 );
If(
DimensionExists( pTargetDim ) = 0 );
DimensionCreate( pTargetDim );
If( pDebug >= 1 );
AsciiOutput( sDebugFile, 'Target dimension created: ' | pTargetDim );
EndIf;
Else;
IF(
pUnwind = 1 );
ExecuteProcess( 'Bedrock.Dim.Hierarchy.Unwind.All',
'pDimension', pTargetDim,
'pDebug', pDebug
);
If( pDebug >= 1 );
AsciiOutput( sDebugFile, 'Target dimension unwound: ' | pTargetDim );
EndIf;
ELSEIF(
pUnwind = 2 );
If( pDebug >= 1 );
AsciiOutput( sDebugFile, 'Target dimension kept unchanged: ' | pTargetDim );
EndIf;
ELSE;
DimensionDeleteAllElements( pTargetDim );
If( pDebug >= 1 );
AsciiOutput( sDebugFile, 'All element deleted from Target element: ' | pTargetDim );
EndIf;
EndIf;
EndIf;
EndIf;
### Set the target Sort Order ###
sSortElementsType = CELLGETS( '}DimensionProperties', pSourceDim, 'SORTELEMENTSTYPE');
sSortElementsSense = CELLGETS( '}DimensionProperties', pSourceDim, 'SORTELEMENTSSENSE');
sSortComponentsType = CELLGETS( '}DimensionProperties', pSourceDim, 'SORTCOMPONENTSTYPE');
sSortComponentsSense = CELLGETS( '}DimensionProperties', pSourceDim, 'SORTCOMPONENTSSENSE');
If( pDebug <= 1 );
DimensionSortOrder( pTargetDim, sSortComponentsType, sSortComponentsSense, sSortElementsType , sSortElementsSense);
EndIf;
If( pDebug >= 1 );
AsciiOutput( sDebugFile, 'Dimension Sort: Sort Components Type : ' | sSortComponentsType );
AsciiOutput( sDebugFile, ' Sort Components Sense: ' | sSortComponentsSense );
AsciiOutput( sDebugFile, ' Sort Elements Type : ' | sSortElementsType );
AsciiOutput( sDebugFile, ' Sort Elements Sense : ' | sSortElementsSense );
EndIf;
### Build Source Subset ###
If( SubsetExists( pSourceDim, cSubset ) = 1 );
SubsetDeleteAllElements( pSourceDim, cSubset );
Else;
SubsetCreate( pSourceDim, cSubset );
EndIf;
SubsetIsAllSet( pSourceDim, cSubset, 1 );
nSourceDimSize = DIMSIZ( pSourceDim );
nIndex = 1;
WHILE( nIndex <= nSourceDimSize );
sElName = DIMNM( pSourceDim, nIndex);
sElType = DTYPE( pSourceDim, sElName);
If( pDebug <= 1 );
DimensionElementInsert( pTargetDim, '', sElName, sElType );
ENDIF;
nIndex = nIndex + 1;
END;
### Assign Data Source ###
DatasourceNameForServer = pSourceDim;
DatasourceNameForClient = pSourceDim;
DataSourceType = 'SUBSET';
DatasourceDimensionSubset = cSubset;
### Replicate Attributes ###
# Note: DType on Attr dim returns "AS", "AN" or "AA" need to strip off leading "A"
sAttrDim = '}ElementAttributes_' | pSourceDim;
If( pAttr = 1 & DimensionExists( sAttrDim ) = 1 );
nNumAttrs = DimSiz( sAttrDim );
nCount = 1;
While( nCount <= nNumAttrs );
sAttrName = DimNm( sAttrDim, nCount );
sAttrType = SubSt(DType( sAttrDim, sAttrName ), 2, 1 );
If( pDebug <= 1 );
AttrInsert( pTargetDim, '', sAttrName, sAttrType );
EndIf;
nCount = nCount + 1;
End;
EndIf;
### End Prolog ###
573,40
#****Begin: Generated Statements***
#****End: Generated Statements****
#####################################################################################
##~~Copyright bedrocktm1.org 2011 www.bedrocktm1.org/how-to-licence.php Ver 1.0.0~~##
#####################################################################################
### Check for errors in prolog ###
If( nErrors <> 0 );
ProcessBreak;
EndIf;
### Add Elements to target dimension ###
If( pDebug <= 1 );
sElType = DType( pSourceDim, vElement );
IF(
sElType @= 'C' &
ElCompN( pSourceDim, vElement ) > 0 );
nChildren = ElCompN( pSourceDim, vElement );
nCount = 1;
While( nCount <= nChildren );
sChildElement = ElComp( pSourceDim, vElement, nCount );
sChildWeight = ElWeight( pSourceDim, vElement, sChildElement );
DimensionElementComponentAdd( pTargetDim, vElement, sChildElement, sChildWeight );
nCount = nCount + 1;
End;
EndIf;
EndIf;
### End MetaData ###
574,48
#****Begin: Generated Statements***
#****End: Generated Statements****
#####################################################################################
##~~Copyright bedrocktm1.org 2011 www.bedrocktm1.org/how-to-licence.php Ver 1.0.0~~##
#####################################################################################
### Check for errors in prolog ###
If( nErrors <> 0 );
ProcessBreak;
EndIf;
### Replicate Attributes ###
# Note: DTYPE on Attr dim returns "AS", "AN" or "AA" need to strip off leading "A"
If( pDebug <= 1 );
If( pAttr = 1 & DimensionExists( sAttrDim ) = 1 );
nCount = 1;
While( nCount <= nNumAttrs );
sAttrName = DimNm( sAttrDim, nCount );
sAttrType = SubSt( DTYPE( sAttrDim, sAttrName ), 2, 1 );
If( sAttrType @= 'S' % sAttrType @= 'A' );
sAttrVal = AttrS( pSourceDim, vElement, sAttrName );
If( sAttrVal @<> '' );
AttrPutS( sAttrVal, pTargetDim, vElement, sAttrName );
EndIf;
Else;
nAttrVal = AttrN( pSourceDim, vElement, sAttrName );
If( nAttrVal <> 0 );
AttrPutN( nAttrVal, pTargetDim, vElement, sAttrName );
EndIf;
EndIf;
nCount = nCount + 1;
End;
EndIf;
EndIf;
### End Data ###
575,50
#****Begin: Generated Statements***
#****End: Generated Statements****
#####################################################################################
##~~Copyright bedrocktm1.org 2011 www.bedrocktm1.org/how-to-licence.php Ver 1.0.0~~##
#####################################################################################
### Initialise Debug ###
If( pDebug >= 1 );
# Set debug file name
sDebugFile = cDebugFile | 'Epilog.debug';
# Log errors
If( nErrors <> 0 );
AsciiOutput( sDebugFile, 'Errors Occurred' );
EndIf;
# Log finish time
AsciiOutput( sDebugFile, 'Process Finished: ' | TimSt( Now, '\d-\m-\Y \h:\i:\s' ) );
EndIf;
### Destroy Source Subset ###
If( pDebug <= 1 );
If(
SubsetExists( pSourceDim, cSubset ) = 1 );
SubsetDestroy( pSourceDim, cSubset );
EndIf;
ENDIF;
### If errors occurred terminate process with a major error status ###
If( nErrors <> 0 );
ProcessQuit;
EndIf;
### Set the target Sort Order ###
If( pDebug >= 1 );
CELLPUTS( sSortElementsType, '}DimensionProperties', pTargetDim, 'SORTELEMENTSTYPE');
CELLPUTS( sSortElementsSense, '}DimensionProperties', pTargetDim, 'SORTELEMENTSSENSE');
CELLPUTS( sSortComponentsType, '}DimensionProperties', pTargetDim, 'SORTCOMPONENTSTYPE');
CELLPUTS( sSortComponentsSense, '}DimensionProperties', pTargetDim, 'SORTCOMPONENTSSENSE');
ENDIF;
### End Epilog ###
576,CubeAction=1511DataAction=1503CubeLogChanges=0
930,0
638,1
804,0
1217,1
900,
901,
902,
938,0
937,
936,
935,
934,
932,0
933,0
903,
906,
929,
907,
908,
904,0
905,0
909,0
911,
912,
913,
914,
915,
916,
917,1
918,1
919,0
920,50000
921,""
922,""
923,0
924,""
925,""
926,""
927,""