-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsentenciaSeleccionar.go
825 lines (723 loc) · 23.9 KB
/
sentenciaSeleccionar.go
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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
package bdsql
import (
"fmt"
"reflect"
"strconv"
"strings"
"time"
"database/sql"
)
type seleccionar struct {
bd *BD
tx *sql.Tx
tabla string
campos []string
condicion string
condicionValores []interface{}
ordenadoPor []string
agruparPor []string
teniendoCondicion string
teniendoValores []interface{}
limite int
salto int
objeto interface{} // puntero de slice de objeto para el método Resultado().
juntaInternaTabla []string
juntaInternaCondicion []string
juntaIzquierdaTabla []string
juntaIzquierdaCondicion []string
juntaDerechaTabla []string
juntaDerechaCondicion []string
juntaExternaTabla []string
juntaExternaCondicion []string
senSQLExiste bool
senSQLNombre string
senSQL string
}
// Tabla establece el nombre de la tabla a seleccionar.
func (o *seleccionar) Tabla(tabla string) *seleccionar {
if o.senSQLExiste {
return o
}
o.tabla = tabla
return o
}
// Campos establece los nombres de campos a seleccionar.
func (o *seleccionar) Campos(campos ...string) *seleccionar {
o.campos = campos
return o
}
// Condicion implementa la cláusula 'where' de la sentencia 'select'.
func (o *seleccionar) Condicion(condicion string, valores ...interface{}) *seleccionar {
if !o.senSQLExiste {
o.condicion = condicion
}
o.condicionValores = valores
return o
}
// OrdenarPor implementa a la cláusula 'order by' de la sentencia 'select'.
func (o *seleccionar) OrdenarPor(valores ...string) *seleccionar {
if !o.senSQLExiste {
o.ordenadoPor = valores
}
return o
}
// AgruparPor implementa a la cláusula 'group by' de la sentencia 'select'.
func (o *seleccionar) AgruparPor(valores ...string) *seleccionar {
if !o.senSQLExiste {
o.agruparPor = valores
}
return o
}
// Teniendo implementa la cláusula 'having' de la sentencia 'select'.
func (o *seleccionar) Teniendo(condicion string, valores ...interface{}) *seleccionar {
if !o.senSQLExiste {
o.teniendoCondicion = condicion
}
o.teniendoValores = valores
return o
}
// Limitar implementa la cláusula 'limit' de la sentencia 'select'.
func (o *seleccionar) Limitar(limite int) *seleccionar {
o.limite = limite
return o
}
// Saltar implementa la cláusula 'offset' de la sentencia 'select'.
func (o *seleccionar) Saltar(salto int) *seleccionar {
o.salto = salto
return o
}
// Juntar implementa la cláusula 'inner join' de la sentencia 'select'.
func (o *seleccionar) JuntarCon(tabla, condicion string) *seleccionar {
if !o.senSQLExiste {
o.juntaInternaTabla = append(o.juntaInternaTabla, tabla)
o.juntaInternaCondicion = append(o.juntaInternaCondicion, condicion)
}
return o
}
// JuntarIzquierda implementa la cláusula 'left join' de la sentencia 'select'.
func (o *seleccionar) JuntarIzquierda(tabla, condicion string) *seleccionar {
if !o.senSQLExiste {
o.juntaIzquierdaTabla = append(o.juntaIzquierdaTabla, tabla)
o.juntaIzquierdaCondicion = append(o.juntaIzquierdaCondicion, condicion)
}
return o
}
// JuntarDerecha implementa la cláusula 'right join' de la sentencia 'select'.
func (o *seleccionar) JuntarDerecha(tabla, condicion string) *seleccionar {
if !o.senSQLExiste {
o.juntaDerechaTabla = append(o.juntaDerechaTabla, tabla)
o.juntaDerechaCondicion = append(o.juntaDerechaCondicion, condicion)
}
return o
}
// JuntarExterior implementa la cláusula 'outer join' de la sentencia 'select'.
func (o *seleccionar) JuntarExterior(tabla, condicion string) *seleccionar {
if !o.senSQLExiste {
o.juntaExternaTabla = append(o.juntaExternaTabla, tabla)
o.juntaExternaCondicion = append(o.juntaExternaCondicion, condicion)
}
return o
}
// Resultado recibe el objeto donde se almacena el resultado de la consulta.
// Debe ser un puntero de slice de una estructura.
// Ejemplo:
// var elementos = []struct {
// ID int64 `bdsql:"id"`
// Nombre string `bdsql:"nombre"`
// EsActivo bool `bdsql:"es_activo"`
// Observaciones string `bdsql:"observaciones"`
// }{}
// var cant, err = bd.Seleccionar("consulta").
// Tabla("elementos").
// Campos("*").
// Resultado(&elementos).
// Ejecutar()
// if err != nil {
// fmt.Println(err)
// return err
// }
// fmt.Println(cant, elementos)
//
func (o *seleccionar) Resultado(objeto interface{}) *seleccionar {
o.objeto = objeto
return o
}
// SQL devuelve la sentencia SQL.
func (o *seleccionar) SQL() (string, error) {
return o.generarSQL()
}
// Ejecutar ejecuta la sentencia SQL.
func (o *seleccionar) Ejecutar() (int, error) {
var sentencia, err = o.generarSQL()
if err != nil {
return 0, err
}
// validar que el objeto de resultado, sea un puntero de slice de estructura
if ok := reflect.TypeOf(o.objeto).Kind() == reflect.Ptr && reflect.TypeOf(o.objeto).Elem().Kind() == reflect.Slice && reflect.TypeOf(o.objeto).Elem().Elem().Kind() == reflect.Struct; !ok {
return 0, errorNuevo().asignarMotivoSeleccionarPunteroDeSlice()
}
// slice de parámetros de la sentencia sql a ejecutar
var parametros []interface{}
// where
if o.condicion != "" {
parametros = append(parametros, o.condicionValores...)
}
// having
if o.teniendoCondicion != "" {
parametros = append(parametros, o.teniendoValores...)
}
// var err error
var filas *sql.Rows
if o.tx == nil {
filas, err = o.bd.db.Query(sentencia, parametros...)
} else {
filas, err = o.tx.Query(sentencia, parametros...)
}
if err != nil {
return 0, resolverErrorMysql(err)
}
defer filas.Close()
cant, err := asignarAObjeto(filas, o.objeto)
if err != nil {
return 0, err
}
return cant, nil
}
func (o *seleccionar) generarSQL() (string, error) {
if o.senSQLExiste {
return o.senSQL, nil
}
var err = errorNuevo()
// verificar que el nombre de la tabla no se encuentre vacía
if o.tabla == "" {
err.asignarMotivoNombreDeTablaVacia()
}
// verificar que los nombres de campos no se encuentren vacíos
if len(o.campos) == 0 {
err.asignarMotivoNombresDeCamposVacios()
}
if len(err.mensajes) != 0 {
return "", err
}
// sentencia
sentencia := fmt.Sprintf("select %v from %v", strings.Join(o.campos, ", "), o.tabla)
// inner join
for i := 0; i < len(o.juntaInternaTabla); i++ {
sentencia += fmt.Sprintf(" inner join %v on %v", o.juntaInternaTabla[i], o.juntaInternaCondicion[i])
}
// left join
for i := 0; i < len(o.juntaIzquierdaTabla); i++ {
sentencia += fmt.Sprintf(" left join %v on %v", o.juntaIzquierdaTabla[i], o.juntaIzquierdaCondicion[i])
}
// right join
for i := 0; i < len(o.juntaDerechaTabla); i++ {
sentencia += fmt.Sprintf(" right join %v on %v", o.juntaDerechaTabla[i], o.juntaDerechaCondicion[i])
}
// outer join
for i := 0; i < len(o.juntaExternaTabla); i++ {
sentencia += fmt.Sprintf(" outer join %v on %v", o.juntaExternaTabla[i], o.juntaExternaCondicion[i])
}
// where
if o.condicion != "" {
sentencia += fmt.Sprintf(" where %v", o.condicion)
}
// group by
if len(o.agruparPor) > 0 {
sentencia += fmt.Sprintf(" group by %v", strings.Join(o.agruparPor, ", "))
}
// having
if o.teniendoCondicion != "" {
sentencia += fmt.Sprintf(" having %v", o.teniendoCondicion)
}
// order by
if len(o.ordenadoPor) > 0 {
sentencia += fmt.Sprintf(" order by %v", strings.Join(o.ordenadoPor, ", "))
}
// limit
if o.limite > 0 {
sentencia += fmt.Sprintf(" limit %v", o.limite)
}
// offset
if o.salto > 0 {
if o.limite == 0 {
sentencia += fmt.Sprintf(" limit %v", 2100000000)
}
sentencia += fmt.Sprintf(" offset %v", o.salto)
}
return fmt.Sprintf("%v;", sentencia), nil
}
func asignarAObjeto(filas *sql.Rows, objeto interface{}) (int, error) {
// nombres de campos del resultado obtenido de la base de datos.
camposFila, err := filas.Columns()
if err != nil {
return 0, resolverErrorMysql(err)
}
// obtener la lista de campos de la estructura que podrían ser asignados
// desde la consulta obtenida.
estructura := reflect.TypeOf(objeto).Elem().Elem()
// mapa de estructura del objeto:
// la clave es el valor de la etiqueta.
// el valor es el nombre del campo de la estructura.
camposEstructura := make(map[string]string)
var encontrados int
for i := 0; i < estructura.NumField(); i++ {
campo := estructura.Field(i)
campoTabla := strings.Trim(campo.Tag.Get("bdsql"), " ")
switch campoTabla {
case "-":
// no asignar el valor
continue
case "":
// en caso que el campo de la estructura no tenga asignado el
// tag "bdsql", se asume que el nombre del campo de la la consulta
// SQL, es el mismo (en minúsculas) que el nombre de campo de la
// estructura.
camposEstructura[strings.ToLower(campo.Name)] = campo.Name
default:
// en caso que el campo de la estructura tenga asignado el
// tag "bdsql", se toma el tag para obtener el dato de la
// consulta SQL.
camposEstructura[campoTabla] = campo.Name
}
encontrados++
}
// podría pasar (raramente) que todos los campos de la estructura contengan
// el tag `bdsql:"-"`. En ese caso, la estrucutra no permite que ninguno de
// sus campos sean asignables por los valores recibidos de la consulta SQL.
if encontrados == 0 {
return 0, errorNuevo().asignarMotivoSeleccionarCamposSinRelacion()
}
// mapa de funciones:
// se crea un slice el cuál mantiene la función que completa cada campo
// de la estructura.
funciones := make(map[string]func(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error), estructura.NumField())
// verificar qe todos los campos de la consulta obtenida, puedan ser
// ingresados en el objeto recibido.
var camposFaltantes []string
estructuraNueva := reflect.New(estructura).Elem()
for _, campoFila := range camposFila {
campoEstructura, ok := camposEstructura[campoFila]
if !ok {
camposFaltantes = append(camposFaltantes, campoFila)
continue
}
// llenar el slice de funciones según cada tipo de campo de la estructura.
switch estructuraNueva.FieldByName(campoEstructura).Kind() {
case reflect.Int:
funciones[campoEstructura] = valori
case reflect.Int8:
funciones[campoEstructura] = valori8
case reflect.Int16:
funciones[campoEstructura] = valori16
case reflect.Int32:
funciones[campoEstructura] = valori32
case reflect.Int64:
funciones[campoEstructura] = valori64
case reflect.Uint:
funciones[campoEstructura] = valorui
case reflect.Uint8:
funciones[campoEstructura] = valorui8
case reflect.Uint16:
funciones[campoEstructura] = valorui16
case reflect.Uint32:
funciones[campoEstructura] = valorui32
case reflect.Uint64:
funciones[campoEstructura] = valorui64
case reflect.Float32:
funciones[campoEstructura] = valorf32
case reflect.Float64:
funciones[campoEstructura] = valorf64
case reflect.Bool:
funciones[campoEstructura] = valorbool
case reflect.String:
funciones[campoEstructura] = valorstring
case reflect.Struct:
if estructuraNueva.FieldByName(campoEstructura).Type().String() == "time.Time" {
funciones[campoEstructura] = valorFecha
} else {
return 0, errorNuevo().asignarMotivoSeleccionarContieneEstructura()
}
default:
return 0, errorNuevo().asignarMotivoSeleccionarTipoDeCampoIncorrecto()
}
}
if len(camposFaltantes) > 0 {
return 0, errorNuevo().asignarMotivoSeleccionarCamposFaltantes(strings.Join(camposFaltantes, ","))
}
// obtener los valores de los campos de la base de datos.
var valores = make([]interface{}, len(camposFila))
for i := range valores {
var ii interface{}
valores[i] = &ii
}
// sabiendo que el objeto es un puntero de slice de una estructura se
// asigna un elemento para ir incorporando las estructuras.
sliceDeObjetos := reflect.ValueOf(objeto).Elem()
// recorrer todas las filas e insertarlas en el objeto.
var cant int
for filas.Next() {
cant++
if err := filas.Scan(valores...); err != nil {
return 0, errorNuevo().asignarOrigen(err).asignarMotivoSeleccionarLecturaDeCampos()
}
for i, campoFila := range camposFila {
var valorCrudo = *(valores[i].(*interface{}))
var tipoCrudo = reflect.TypeOf(valorCrudo)
campoEstructura, ok := camposEstructura[campoFila]
if !ok {
return 0, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos(fmt.Sprintf("Inexistente: %v, Campo: %v", err, campoFila))
}
valor, err := funciones[campoEstructura](valorCrudo, tipoCrudo)
if err != nil {
return 0, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos(fmt.Sprintf("Error: %v, Campo: %v", err, campoFila))
}
estructuraNueva.FieldByName(campoEstructura).Set(valor)
}
sliceDeObjetos.Set(reflect.Append(sliceDeObjetos, estructuraNueva))
}
return cant, nil
}
// ---- Funciones de asignación de campos de la estructura ---------------------
func valori(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v int
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.Atoi(string(s))
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo int")
}
v = vTemp
} else {
vTemp, ok := valorCrudo.(int64)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo int64")
}
v = int(vTemp)
}
}
return reflect.ValueOf(v), nil
}
func valori8(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v int8
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseInt(string(s), 10, 8)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo int8")
}
v = int8(vTemp)
} else {
vTemp, ok := valorCrudo.(int64)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo int64")
}
v = int8(vTemp)
}
}
return reflect.ValueOf(v), nil
}
func valori16(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v int16
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseInt(string(s), 10, 16)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo int16")
}
v = int16(vTemp)
} else {
vTemp, ok := valorCrudo.(int64)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo int64")
}
v = int16(vTemp)
}
}
return reflect.ValueOf(v), nil
}
func valori32(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v int32
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseInt(string(s), 10, 32)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo int32")
}
v = int32(vTemp)
} else {
vTemp, ok := valorCrudo.(int64)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo int64")
}
v = int32(vTemp)
}
}
return reflect.ValueOf(v), nil
}
func valori64(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v int64
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseInt(string(s), 10, 64)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo int64")
}
v = vTemp
} else {
vTemp, ok := valorCrudo.(int64)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo int64")
}
v = vTemp
}
}
return reflect.ValueOf(v), nil
}
func valorui(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v uint
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseUint(string(s), 10, 64)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo uint")
}
v = uint(vTemp)
} else {
vTemp, ok := valorCrudo.(uint)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo uint")
}
v = uint(vTemp)
}
}
return reflect.ValueOf(v), nil
}
func valorui8(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v uint8
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseUint(string(s), 10, 8)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo uint8")
}
v = uint8(vTemp)
} else {
vTemp, ok := valorCrudo.(uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo uint8")
}
v = vTemp
}
}
return reflect.ValueOf(v), nil
}
func valorui16(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v uint16
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseUint(string(s), 10, 16)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo uint16")
}
v = uint16(vTemp)
} else {
vTemp, ok := valorCrudo.(uint16)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo uint16")
}
v = vTemp
}
}
return reflect.ValueOf(v), nil
}
func valorui32(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v uint32
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseUint(string(s), 10, 32)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo uint32")
}
v = uint32(vTemp)
} else {
vTemp, ok := valorCrudo.(uint32)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo uint32")
}
v = vTemp
}
}
return reflect.ValueOf(v), nil
}
func valorui64(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v uint64
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseUint(string(s), 10, 64)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo uint64")
}
v = vTemp
} else {
vTemp, ok := valorCrudo.(uint64)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo uint64")
}
v = vTemp
}
}
return reflect.ValueOf(v), nil
}
func valorf32(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v float32
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseFloat(string(s), 32)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo float32")
}
v = float32(vTemp)
} else {
vTemp, ok := valorCrudo.(float32)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo float32")
}
v = float32(vTemp)
}
}
return reflect.ValueOf(v), nil
}
func valorf64(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v float64
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseFloat(string(s), 64)
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo float64")
}
v = vTemp
} else {
vTemp, ok := valorCrudo.(float64)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es del tipo float64")
}
v = vTemp
}
}
return reflect.ValueOf(v), nil
}
func valorbool(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v bool
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
vTemp, err := strconv.ParseBool(string(s))
if err != nil {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo bool")
}
v = vTemp
} else {
switch valorCrudo.(type) {
case bool:
v = valorCrudo.(bool)
case int64:
v = valorCrudo == int64(1)
default:
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible asignar a tipo bool")
}
}
}
return reflect.ValueOf(v), nil
}
func valorstring(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v string
if tipoCrudo != nil {
if tipoCrudo.String() == "[]uint8" {
s, ok := valorCrudo.([]uint8)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es de tipo uint8[]")
}
v = fmt.Sprintf("%s", s)
} else {
v = fmt.Sprintf("%s", valorCrudo)
}
}
return reflect.ValueOf(v), nil
}
func valorFecha(valorCrudo interface{}, tipoCrudo reflect.Type) (reflect.Value, error) {
var vacio reflect.Value
var v time.Time = time.Time{}
if valorCrudo != nil {
fh, ok := valorCrudo.(time.Time)
if !ok {
return vacio, errorNuevo().asignarMotivoSeleccionarAsignacionDeCampos("No es posible convertir al tipo time.Time")
}
v = fh
}
return reflect.ValueOf(v), nil
}