-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtpublic.prg
510 lines (385 loc) · 11.5 KB
/
tpublic.prg
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
/*
* TPublic().
* Clase para el reemplazo de Variables Publicas
* Esta basada en la clase original TPublic de
* Daniel Andrade Version 2.1
*
* Rosario - Santa Fe - Argentina
* andrade_2knews@hotmail.com
* http://www.dbwide.com.ar
*
* con Aportes de:
* [ER] Eduardo Rizzolo
* [WA] Wilson Alves - wolverine@sercomtel.com.br 18/05/2002
* [RG] Riztan Gutierrez - riztan@gmail.com 28/10/2008
*
* Sustituido uso de Arreglos por Hashes [RG]
*
* DATAS
* hVars - Hash de variables
* cName - Nombre ultima variable accedida
* nPos - Valor ultimo variable accedida
* lAutomatic - Asignación automatica, por defecto TRUE [WA]
* lSensitive - Sensibilidad a Mayusculas, por defecto FALSE [RG]
*
* METODOS
* New() - Contructor
* Add() - Agrega/define nueva variable
* Del() - Borra variable
* Get() - Accede a una veriable directamente
* Set() - Define nuevo valor directamente
* GetPos() - Obtener la posición en el Hash
* Release() - Inicializa el Hash
* IsDef() - Chequea si una variable fue definida
* Clone() - Clona el Hash
* nCount() - Devuelve cantidad de variables definidas
*
* NOTA
* Para acceder al valor de una variable, se puede hacer de 2 formas,
* una directa usando oPub:Get("Codigo") o por Prueba/Error oPub:Codigo,
* este último es mas simple de usar pero más lento.
*
* Para definir un nuevo valor a una variable tambien puede ser por 2 formas,
* directamente por oPub:Set("Codigo", "ABC" ), o por Prueba/Error
* oPub:Codigo := "ABC".
*
* Las variables definidas NO son case sensitive.
*
* ULTIMAS
* Se guarda el Nombre y Posición de la última variable accedida para incrementar
* la velocidad. (Implementado por Eduardo Rizzolo)
*
* EJEMPLO
* FUNCTION Test()
* local oP := TPublic():New(), aSave, nPos
*
* oP:Add("Codigo") // Defino variable sin valor inicial
* oP:Add("Precio", 1.15) // Defino variable con valor inicial
* oP:Add("Cantidad", 10 )
* oP:Add("TOTAL" )
*
* // Acceso a variables por prueba/error
* oP:Total := oP:Precio * oP:Cantidad
*
* // Definicion y Acceso a variables directamente
* oP:Set("Total", oP:Get("precio") * oP:Get("CANTIDAD") )
*
* oP:Del("Total") // Borro una variable
* ? oP:IsDef("TOTAL") // Verifico si existe una variable
*
* nPos := oP:GetPos("Total") // Obtengo la posición en el array
*
* oP:Release() // Borro TODAS las variables
*
* oP:End() // Termino
*
* RETURN NIL
*
* EXEMPLO (Asignación Automática)
*
* FUNCTION MAIN()
* LOCAL oP:=TPublic():New(.T.)
*
* op:nome := "Wilson Alves"
* op:Endereco := "Rua dos Cravos,75"
* op:Cidade := "Londrina-PR"
* op:Celular := "9112-5495"
* op:Empresa := "WCW Software"
*
* ? op:Nome,op:Endereco,op:Cidade,op:celular,op:empresa
*
* op:End()
* RETURN NIL
*
*/
#include "hbclass.ch"
#include "common.ch"
/*
* TPublic()
*/
/**\file tpublic.prg
* \class TPublic. Clase TPublic
*
* Clase para el reemplazo de Variables Publicas
* Esta basada en la clase original TPublic de
* Daniel Andrade Version 2.1
*
* \see Add().
*/
CLASS TPublic
#xtranslate HGetAutoAdd( <hash> ) => ( hb_HAutoAdd(<hash>) == 2 )
//#xtranslate HHasKey( <hash>, <cVar> ) => ( hb_HHasKey(<hash>,<cVar>) )
protected:
DATA lAutoAdd AS LOGICAL INIT .T.
DATA lSensitive AS LOGICAL INIT .F.
ERROR HANDLER OnError( uValue )
VISIBLE:
DATA hVars
DATA nPos AS NUMERIC INIT 0 // READONLY // [ER]
DATA cName AS CHARACTER INIT "" // READONLY // [ER]
METHOD New( lAutoAdd, lSensitive ) /**New(). */
METHOD End() INLINE ::Release() /**End(). */
METHOD Add( cName, xValue ) /**Add(). */
METHOD Del( cName )
METHOD Get( cName )
METHOD Set( cName, xValue )
METHOD GetPos( cName )
METHOD GetVar( nPos )
METHOD IsDef( cName ) INLINE hb_hHasKey( ::hVars, cName )
METHOD Clone() INLINE HClone( ::hVars )
METHOD nCount() INLINE Len( ::hVars )
METHOD GetArray()
METHOD GetVars() INLINE ::GetArray()
METHOD VarList() INLINE ::GetArray()
METHOD Release() //INLINE ::hVars := Hash()
ENDCLASS
METHOD RELEASE() CLASS TPUBLIC
::hVars := nil
self := nil
hb_gcAll()
RETURN nil
/*
* TPublic:New()
*/
/** Metodo Constructor.
* Permite generar la instancia de un objeto TPublic,
* Se puede inicializar con los parametros lAutomatic y lSensitive,
* para definir si permite la creacion de variables y si admite
* sensibilidad a las mayusculas respectivamente.
*/
METHOD New( lAutoAdd, lSensitive ) CLASS TPublic
::hVars := Hash()
DEFAULT lAutoAdd TO .T.
DEFAULT lSensitive TO .F.
HSetAutoAdd( ::hVars, lAutoAdd )
HSetCaseMatch( ::hVars, lSensitive )
::cName:=""
::lAutoAdd :=lAutoAdd
::lSensitive:=lSensitive
RETURN Self
/**
* TPublic:Add()
*/
/** Metodo Add.
* Permite adicionar una variable al objeto TPublic,
* \param cName.
* \param xValue.
* \return Self.
*/
METHOD Add( cName, xValue ) CLASS TPublic
If ::lAutoAdd .AND. !::IsDef( cName )
HSet( ::hVars, cName, xValue )
EndIf
RETURN Self
/**
* TPublic:Del()
*/
METHOD Del( cName ) CLASS TPublic
If ::IsDef( cName )
HDel( ::hVars , cName )
EndIf
RETURN IIF( ::IsDef( cName ), .f., .t. )
/**
* TPublic:Get()
*/
METHOD Get( cName ) CLASS TPublic
Local xRet:=NIL
If ::IsDef( cName )
xRet := HGet( ::hVars , cName )
Endif
RETURN xRet
/**
* TPublic:Set()
*/
METHOD Set( cName, xValue ) CLASS TPublic
//Detectar y convertir valor logico en caso de venir como CHAR
if left(cName,1)="l" .and. ValType(xValue)="C" .and. ;
(xValue $ ".t.T.f.F." )
xValue := iif( ("t" $ lower(xValue)), .t., .f. )
? "cambiado valor ",cName," a: ", xValue
endif
//Detectar y convertir valor fecha en caso de venir como CHAR
if left(cName,1)="d" .and. ValType(xValue)="C" //.and. ;
//CTOD(xValue)<>0
xValue := CTOD(xValue)
? "cambiado valor ",cName," a fecha "
endif
//Detectar y convertir valor numerico en caso de venir como CHAR
if left(cName,1)="n" .and. ValType(xValue)="C"
xValue := VAL(xValue)
? "cambiado valor ",cName," a numérico "
endif
If ::IsDef( cName )
HSet( ::hVars , cName , xValue )
Else
::Add( cName, xValue )
Endif
RETURN IIF( ::Get(cName)!=xValue, .f., .t. )
/**
* TPublic:GetPos()
*/
METHOD GetPos( cName ) CLASS TPublic
Local nRet:=0
If ::IsDef( ::hVars )
nRet := HGetPos( ::hVars, cName )
Endif
RETURN nRet
/**
* TPublic:GetVar()
*/
METHOD GetVar( nPos ) CLASS TPublic
Local nRet:=0
If !( nPos > Len(::hVars) )
nRet := HGetValueAt( ::hVars, nPos )
Endif
RETURN nRet
/**
* TPublic:GetArray()
*/
METHOD GetArray() CLASS TPublic
Local nCont:= 1, nHash:= Len(::hVars)
Local aRet:=ARRAY( nHash , 2 )
Local aKeys, aValues
aKeys := HGetKeys( ::hVars )
aValues:= HGetValues( ::hVars )
While nCont <= nHash
aRet[ nCont , 1 ]:= aKeys[ nCont ]
aRet[ nCont , 2 ]:= aValues[ nCont ]
nCont++
EndDo
RETURN aRet
/**
* OnError()
*/
METHOD OnError( uValue ) CLASS TPublic
Local cMsg := UPPE(ALLTRIM(__GetMessage()))
Local cMsg2 := Subs(cMsg,2)
If SubStr( cMsg, 1, 1 ) == "_" // Asignar Valor
If !::IsDef( cMsg2 )
::Add( cMsg2 , uValue )
Else
::Set(cMsg2, uValue )
EndIf
Else
If ::IsDef( cMsg )
Return ::Get( cMsg )
EndIf
EndIf
RETURN uValue
/** Nuevo TObject
*
*/
CLASS TObject
VISIBLE:
DATA lAutoAdd AS LOGICAL INIT .T.
DATA lSensitive AS LOGICAL INIT .F.
METHOD New( lAutoAdd ) /**New(). */
METHOD End() INLINE ::Release() /**End(). */
METHOD Add( cName, xValue ) /**Add(). */
METHOD Del( cName )
METHOD Get( cName )
METHOD Set( cName, xValue )
METHOD AddMethod( cMethod, pFunc )
METHOD DelMethod( cMethod )
METHOD IsDef( cName ) INLINE __objHasData( Self, cName )
METHOD SendMsg( cMsg, ... )
METHOD GetArray() INLINE __objGetValueList( self )
METHOD Release() INLINE Self := NIL
ERROR HANDLER OnError( uValue )
ENDCLASS
//------------------------------------------------//
METHOD New( lAutoAdd ) CLASS TObject
DEFAULT lAutoAdd to .T.
::lAutoAdd :=lAutoAdd
RETURN Self
//------------------------------------------------//
METHOD Add( cName, xValue ) CLASS TObject
if !::lAutoAdd ; return .f. ; endif
if !::IsDef(cName)
__objAddData( Self, cName )
if !HB_ISNIL(xValue)
return ::Set(cName, xValue)
endif
endif
RETURN .F.
//------------------------------------------------//
METHOD Del( cName ) CLASS TObject
if !::IsDef(cName)
__objDelMethod( Self, cName )
return .t.
endif
Return .f.
//------------------------------------------------//
METHOD Get( cName ) CLASS TObject
//local aData, nPos
if ::IsDef(cName)
return ::SendMsg( cName )
endif
/*
if __objHasData( Self, cName )
aData := __objGetValueList(Self)
nPos := ASCAN(aData,{|a| a[HB_OO_DATA_SYMBOL]=UPPER(cName) })
return aData[nPos,HB_OO_DATA_VALUE]
endif
*/
Return nil
//------------------------------------------------//
METHOD Set( cName, xValue ) CLASS TObject
local uRet
if __objHasData( Self, cName)
#ifndef __XHARBOUR__
if xValue == nil
uRet = __ObjSendMsg( Self, cName )
else
uRet = __ObjSendMsg( Self, "_"+cName, xValue )
endif
#else
if xValue == nil
uRet = hb_execFromArray( @Self, cName )
else
uRet = hb_execFromArray( @Self, cName, { xValue } )
endif
#endif
endif
return uRet
//------------------------------------------------//
METHOD AddMethod( cMethod, pFunc ) CLASS TObject
if ! __objHasMethod( Self, cMethod )
__objAddMethod( Self, cMethod, pFunc )
endif
return nil
//------------------------------------------------//
METHOD DelMethod( cMethod ) CLASS TObject
if ! __objHasMethod( Self, cMethod )
__objDelMethod( Self, cMethod )
endif
return nil
//------------------------------------------------//
#ifndef __XHARBOUR__
METHOD SendMsg( cMsg, ... ) CLASS TObject
if "(" $ cMsg
cMsg = StrTran( cMsg, "()", "" )
endif
return __ObjSendMsg( Self, cMsg, ... )
#else
METHOD SendMsg( ... ) CLASS TObject
local aParams := hb_aParams()
if "(" $ aParams[ 1 ]
aParams[ 1 ] = StrTran( aParams[ 1 ], "()", "" )
endif
ASize( aParams, Len( aParams ) + 1 )
AIns( aParams, 1 )
aParams[ 1 ] = Self
return hb_execFromArray( aParams )
#endif
//------------------------------------------------//
METHOD ONERROR( uValue ) CLASS TObject
local cCol := __GetMessage()
if Left( cCol, 1 ) == "_"
cCol = Right( cCol, Len( cCol ) - 1 )
endif
if !::IsDef(cCol)
::Add( cCol )
endif
RETURN ::Set(cCol,uValue)
//EOF