-
Notifications
You must be signed in to change notification settings - Fork 0
/
RedesAlgebra.cpp
1638 lines (1328 loc) · 41.1 KB
/
RedesAlgebra.cpp
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
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "Attribute.h" // implementation of attribute types
#include "Algebra.h" // definition of the algebra
#include "NestedList.h" // required at many places
#include "QueryProcessor.h" // needed for implementing value mappings
#include "AlgebraManager.h" // e.g., check for certain kind
#include "Operator.h" // for operator creation
#include "StandardTypes.h" // provides int, real, string, bool type
#include "FTextAlgebra.h" //
#include "Symbols.h" // predefined strings
#include "ListUtils.h" // useful functions for nested lists
#include "Stream.h" // wrapper for secondo streams
#include "GenericTC.h" //use of generic type constructors
#include "LogMsg.h" //send error messages
#include "../../Tools/Flob/DbArray.h" //use of DbArrays
#include "RelationAlgebra.h" //use of tuples
#include <math.h> //require for some operators
#include <stack>
#include <limits>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
extern NestedList *nl;
extern QueryProcessor *qp;
extern AlgebraManager *am;
using namespace std;
namespace Redes{
class Arco
{
private:
int source,destination;
char relacion[20];
public:
Arco(){source=0;destination=0;strcpy(relacion,"null");}
Arco(const char* _relacion,const int _source,const int _destination){source=_source;destination=_destination;strcpy(relacion,_relacion);}
~Arco(){};
static const string BasicType(){ return "arco";}
static const bool checkType(const ListExpr list) {
return listutils::isSymbol(list, BasicType());
}
int getSource(){return source;}
int getDestination(){return destination;}
string getRelacion(){return relacion;}
bool setArco(int _source, int _destination,string _relacion){
source=_source;destination=_destination;strcpy(relacion,_relacion.c_str());
}
};
class Nodo
{
private:
int ID;
char nombre[20];
public:
Nodo(){ID=0;strcpy(nombre,"NULL");}
Nodo(const int _ID, const char* _nombre){ID=_ID;strcpy(nombre,_nombre);}
//Nodo(const int _ID, const string _nombre):ID(_ID), nombre(_nombre){};
~Nodo(){};
static const string BasicType(){ return "nodo";}
// the checktype function for non-nested types looks always the same
static const bool checkType(const ListExpr list) {
return listutils::isSymbol(list, BasicType());
}
int getID(){return ID;}
string getNombre(){return nombre;}
bool setNodo(int _ID,string _nombre){ID=_ID; strcpy(nombre,_nombre.c_str());return true;}
};
//Definición de clase circulo
class Grafo
{
private:
string identificador;
int cantNodos;
int cantArcos;
std::vector<Nodo> Nodos;
std::vector<Arco> arcos;
void resizeVec( std::vector<std::vector<int> > &vec , const unsigned short ROWS , const unsigned short COLUMNS )
{
vec.resize( ROWS );
for( std::vector<std::vector<int> >::iterator it = vec.begin(); it != vec.end(); ++it)
{
it->resize( COLUMNS );
}
}
public:
//constructor doing nothing
Grafo() {};
//constructor initializing the object
Grafo(const string _identificador, const int _cantNodos, const int _cantArcos):identificador(_identificador),cantNodos(_cantNodos), cantArcos(_cantArcos){}
//metodo para clonar;
Grafo(Grafo* k){
arcos= *k->GetArcos();
Nodos = *k->GetNodos();
//falta rellenar la matriz
}
Grafo(vector<Nodo> _nodos, vector<Arco> _arco){Nodos =vector<Nodo>(_nodos);arcos = vector<Arco>(_arco);}
//destructor
~Grafo(){}
static const string BasicType(){ return "grafo";}
// the checktype function for non-nested types looks always the same
static const bool checkType(const ListExpr list) {
return listutils::isSymbol(list, BasicType());
}
bool AddNodo(const int ID, const string name){
char aux[20];
strcpy(aux,name.c_str());
Nodo nodito=Nodo(ID,aux);
Nodos.push_back(nodito);
return true;
}
bool AddArco(const int ID1,const int ID2, const string name){
char aux[20];
strcpy(aux,name.c_str());
Arco arc= Arco(aux,ID1,ID2);
arcos.push_back(arc);
//Arcos[ID1][ID2]=name;
return true;
}
//para la funcion out
vector<Nodo>* GetNodos(){
return &Nodos;
}
vector<Arco>* GetArcos(){
return &arcos;
}
int nodosMasArcos() const {return Nodos.size()+arcos.size();}
int CantNodos() const {return Nodos.size();}
int CantArcos() const {return arcos.size();}
Nodo nodoMasPopular(){
std::map<int,int> var;
//vector<int> var;
for (int i = 0; i < Nodos.size(); ++i)
{
var[Nodos[0].getID()]=0;
}
for (int i = 0; i < arcos.size(); ++i)
{
var[arcos[0].getDestination()]=var[arcos[0].getDestination()]+1;
}
int pop=-1;
int index=-1;
for (int i = 0; i < Nodos.size(); ++i){
if(var[i]>pop){
pop=var[i];
index=i;
}
}
if(index==-1){
return Nodo();}
else{
return Nodos[index];
}
}
string relacion(string a1, string a2){
bool var;
int id1=-1,id2=-1;
string aux;
stringstream h,h1;
for(int i = 0; i< Nodos.size() ;i++){
if(Nodos[i].getNombre().compare(a1)==0) id1=Nodos[i].getID();
else if(Nodos[i].getNombre().compare(a2)==0) id2=Nodos[i].getID();
}
if(id1==-1 || id2==-1) return "No tienen relacion";
for (int i = 0; i < arcos.size(); ++i)
{
if((arcos[i].getSource()==id1 && arcos[i].getDestination()==id2)){
return arcos[i].getRelacion();
}else if((arcos[i].getSource()==id2 && arcos[i].getDestination()==id1)){
return arcos[i].getRelacion();
}
}
return "No existe relacion";
}
Nodo common(Nodo a1, Nodo a2){
int id1=-1,id2=-1;
string err="error";
vector<int> first,second;
vector<Nodo>salida;
vector<int> third;
//stringstream h,h1;
// for(int i = 0; i< Nodos.size() ;i++){
// if(Nodos[i].getNombre().compare(a1.getNombre())==0) id1=Nodos[i].getID();
// else if(Nodos[i].getNombre().compare(a2.getNombre())==0) id2=Nodos[i].getID();
// }
//if(id1==-1 || id2==-1) return Nodo(-1,err.c_str());
for (int i = 0; i < arcos.size(); ++i)
{
if(arcos[i].getSource()==a1.getID()){
first.push_back(arcos[i].getDestination());
}else if(arcos[i].getDestination()==a1.getID()){
first.push_back(arcos[i].getSource());
}else if((arcos[i].getSource()==a2.getID())){
second.push_back(arcos[i].getDestination());
}else if(arcos[i].getDestination()==a2.getID()){
second.push_back(arcos[i].getSource());
}
}
for(vector<int>::iterator it=first.begin(); it != first.end(); ++it){
for (vector<int>::iterator ot=second.begin(); ot != second.end(); ++ot)
{
if(*ot==*it) third.push_back(*ot);
}
}
for (int j = 0; j < third.size(); ++j)
{
for(int i = 0; i< Nodos.size() ;i++){
if(Nodos[i].getID()==third[j]) salida.push_back(Nodos[i]);
}
}
if(salida.size()==0)return Nodo(-1,err.c_str());
else return salida[0];
}
int radio(){
int N = Nodos.size(); // Number of nodes in graph
int INF = 0xFFFF; // Infinity
int d[N][N]; // Distances between nodes
int e[N]; // Eccentricity of nodes
int rad = INF; // Radius of graph
for (int i = 0; i < N; ++i)
{
for (int j = 0; j < N; ++j)
{
d[i][j]=INF;
}
e[i]=-1;
}
for(vector<Arco>::iterator it=arcos.begin();it!=arcos.end();++it){
d[it->getSource()][it->getDestination()]=1;
d[it->getDestination()][it->getSource()]=1;
}
// Floyd-Warshall's algorithm
for (int k = 0; k < N; k++) {
for (int j = 0; j < N; j++) {
for (int i = 0; i < N; i++) {
d[i][j] = min(d[i][j], d[i][k] + d[k][j]);
}
}
}
// Counting values of eccentricity
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if(d[i][j]!=INF)
e[i] = max(e[i], d[i][j]);
}
}
for (int i = 0; i < N; i++) {
if(e[i]!=-1)
rad = min(rad, e[i]);
}
return rad;
}
int diameter(){
int N = Nodos.size(); // Number of nodes in graph
int INF = 0xFFFF; // Infinity
int d[N][N]; // Distances between nodes
int e[N]; // Eccentricity of nodes
set <int> c; // Center of graph
int diam=-1; // Diamater of graph
for (int i = 0; i < N; ++i)
{
for (int j = 0; j < N; ++j)
{
d[i][j]=INF;
}
e[i]=-1;
}
for(vector<Arco>::iterator it=arcos.begin();it!=arcos.end();++it){
d[it->getSource()][it->getDestination()]=1;
d[it->getDestination()][it->getSource()]=1;
}
// Floyd-Warshall's algorithm
for (int k = 0; k < N; k++) {
for (int j = 0; j < N; j++) {
for (int i = 0; i < N; i++) {
d[i][j] = min(d[i][j], d[i][k] + d[k][j]);
}
}
}
// Counting values of eccentricity
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if(d[i][j]!=INF)
e[i] = max(e[i], d[i][j]);
}
}
for (int i = 0; i < N; i++) {
if(e[i]!=-1)
diam = max(diam, e[i]);
}
return diam;
}
Nodo central(){
int N = Nodos.size(); // Number of nodes in graph
int INF = 0xFFFF; // Infinity
int d[N][N]; // Distances between nodes
int e[N]; // Eccentricity of nodes
vector<int> c; // Center of graph
int rad = INF; // Radius of graph
int diam=-1; // Diamater of graph
for (int i = 0; i < N; ++i)
{
for (int j = 0; j < N; ++j)
{
d[i][j]=INF;
}
e[i]=-1;
}
for(vector<Arco>::iterator it=arcos.begin();it!=arcos.end();++it){
d[it->getSource()][it->getDestination()]=1;
d[it->getDestination()][it->getSource()]=1;
}
// Floyd-Warshall's algorithm
for (int k = 0; k < N; k++) {
for (int j = 0; j < N; j++) {
for (int i = 0; i < N; i++) {
d[i][j] = min(d[i][j], d[i][k] + d[k][j]);
}
}
}
// Counting values of eccentricity
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if(d[i][j]!=INF)
e[i] = max(e[i], d[i][j]);
}
}
for (int i = 0; i < N; i++) {
if(e[i]!=-1)
rad = min(rad, e[i]);
}
for (int i = 0; i < N; i++) {
if (e[i] == rad) {
c.push_back(i);
}
}
for(vector<Nodo>::iterator it=Nodos.begin();it!=Nodos.end();++it){
if(it->getID()==c.front()) return *it;
}
return Nodo(-1,"No existe");
}
bool nodoPertenece(Nodo node){
for (std::vector<Nodo>::iterator i = Nodos.begin(); i != Nodos.end(); ++i)
{
if(i->getID()==node.getID() && i->getNombre().compare(node.getNombre())==0) return true;
}
return false;
}
bool arcoPertenece(Arco arco){
for (std::vector<Arco>::iterator i = arcos.begin(); i != arcos.end(); ++i)
{
if(i->getSource()==arco.getSource() && i->getDestination()==arco.getDestination() && i->getRelacion().compare(arco.getRelacion())==0) return true;
}
return false;
}
bool borrarNodo(Nodo n){
return false;
}
bool agregarNodo(Nodo n){
return false;
}
bool borrarArco(Nodo n){
return false;
}
bool agregarArco(Nodo n){
return false;
}
};
// Property Function
// Esta función provee una descripción del tipo al usuario. Retorna una lista anidada
// que siempre tiene el mismo formato. El primer elemento de la lista es simpre el mismo
// y el segundo elemento de la lista contiene tipos específicos de descripciones.
ListExpr GrafoProperty() {
return( nl->TwoElemList (
nl->FourElemList (
nl->StringAtom("Signature"),
nl->StringAtom("Example Type List"),
nl->StringAtom("List Rep"),
nl->StringAtom("Example List")),
nl->FourElemList (
nl->StringAtom("-> SIMPLE"),
nl->StringAtom(Grafo::BasicType()),
nl->StringAtom(""),
nl->StringAtom("(((1 Juan)) ((2 3 familiar)))")
)));
}
ListExpr NodoProperty() {
return( nl->TwoElemList (
nl->FourElemList (
nl->StringAtom("Signature"),
nl->StringAtom("Example Type List"),
nl->StringAtom("List Rep"),
nl->StringAtom("Example List")),
nl->FourElemList (
nl->StringAtom("-> SIMPLE"),
nl->StringAtom(Nodo::BasicType()),
nl->StringAtom("(int string)=(ID nombre)"),
nl->StringAtom("(1 Juan)")
)));
}
ListExpr ArcoProperty() {
return( nl->TwoElemList (
nl->FourElemList (
nl->StringAtom("Signature"),
nl->StringAtom("Example Type List"),
nl->StringAtom("List Rep"),
nl->StringAtom("Example List")),
nl->FourElemList (
nl->StringAtom("-> SIMPLE"),
nl->StringAtom(Nodo::BasicType()),
nl->StringAtom("(int int string)=(source destination relacion)"),
nl->StringAtom("(1 Juan)")
)));
}
// In Function
// La tarea de la "In Function" es convertir una lista en una representación interna del
// del objeto, o sea tomar los datos que vienen en el formato de una lista y convertirlos
// en el formato de la clase (SCircle). La lista puede tener un formato inválido, en cuyo
// caso el parámetro de salida "correct" debe ser fijado en falso y el puntero addr debe
// fijado a 0. Una descripción detallada del error puede ser proveida al usuario llamando
// a inFunError del objeto global cmsg. En caso de éxito, el parámetro "correct" debe ser
// fijado como verdadero y el puntero addr apuntando a un objeto que tenga el valor
// representado por la instancia.
// typeInfo: contiene la descripción completa del tipo y es requerida para tipos anidados como tuplas
// instance: el valor del objeto en representación externa (nested list).
// errorPos: parámetro de salida reportando la posición de un error en la lista
// errorInfo: puede proveer información sobre el error al usuario
// correct: parametro de salida retornando el resultado de la llamada
Word InGrafo( const ListExpr typeInfo, const ListExpr instance, const int errorPos, ListExpr& errorInfo, bool& correct){
Grafo* grafo ;
grafo = new Grafo();
//crea un resultado con addr apuntando a 0
Word res((void*)0);
//asume una lista incorrecta
correct = false;
//verifica si la lista contiene tres elementos
if(!nl->HasLength(instance,2)){
cmsg.inFunError("expected two list");
return res;
}
if (nl->ListLength(instance) == 2) {
ListExpr nodosList = nl->First(instance);
ListExpr arcosList = nl->Second(instance);
// si las listas no son elementos atomicos entonces:
if (!(nl->IsAtom(nodosList) || nl->IsAtom(arcosList))) {
correct = true;
ListExpr first, second, third;
ListExpr firstElem = nl->Empty();
ListExpr rest = nodosList;
// parse values of vertices
while (correct && !nl->IsEmpty(rest)) {
firstElem = nl->First(rest);
rest = nl->Rest(rest);
if (nl->ListLength(firstElem) != 2)
correct = false;
else {
first = nl->First(firstElem);
second = nl->Second(firstElem);
//third = nl->Third(firstElem);
if (!(nl->IsAtom(first) && (nl->AtomType(first) == IntType)
&& nl->IsAtom(second) && (nl->AtomType(second) == StringType)))
correct = false;
else
correct = grafo->AddNodo(nl->IntValue(first),
nl->StringValue(second));
//nodo=(Nodo*)InNodo(nl->TheEmptyList(),first,0,errorInfo,correct).addr;
//if (correct) {
// correct = grafo->AddNodo(*nodo);
// delete nodo;
//}
}
}
// parse values of edges
firstElem = nl->Empty();
rest = arcosList;
while (correct && !nl->IsEmpty(rest)) {
firstElem = nl->First(rest);
rest = nl->Rest(rest);
if (nl->ListLength(firstElem) != 3)
correct = false;
else {
first = nl->First(firstElem);
second = nl->Second(firstElem);
third = nl->Third(firstElem);
if (!(nl->IsAtom(first) && (nl->AtomType(first) == IntType)
&& nl->IsAtom(second) && (nl->AtomType(second) == IntType)
&& nl->IsAtom(third) && (nl->AtomType(third) == StringType)))
correct = false;
else
correct = grafo->AddArco(nl->IntValue(first),
nl->IntValue(second),
nl->StringValue(third));
}
}
}
}
//
// //obtiene el valor numérico de los elementos
// double cantNodos = listutils::getNumValue(nl->First(instance));
// double cantArcos = listutils::getNumValue(nl->Second(instance));
// //si la lista fue correcta, creamos el resultado
// correct = true;
// res.addr = new Grafo(cantNodos,cantArcos);
// return res;
if (correct)
return SetWord(grafo);
delete grafo;
return SetWord(Address(0));
}
Word InNodo( const ListExpr typeInfo, const ListExpr instance, const int errorPos, ListExpr& errorInfo, bool& correct){
Nodo* nodo ;
nodo = new Nodo();
//crea un resultado con addr apuntando a 0
Word res((void*)0);
//asume una lista incorrecta
correct = false;
//verifica si la lista contiene tres elementos
if(!nl->HasLength(instance,2)){
cmsg.inFunError("expected dos elementos");
return res;
}
if (nl->ListLength(instance) == 2) {
ListExpr ID = nl->First(instance);
ListExpr nombre = nl->Second(instance);
// si las listas son elementos atomicos entonces:
if ((nl->IsAtom(ID) && nl->IsAtom(nombre))) {
correct = true;
if (!(nl->IsAtom(ID) && (nl->AtomType(ID) == IntType)
&& nl->IsAtom(nombre) && (nl->AtomType(nombre) == StringType)))
correct = false;
else
correct = nodo->setNodo(nl->IntValue(ID),
nl->StringValue(nombre));
}
}
if (correct)
return SetWord(nodo);
delete nodo;
return SetWord(Address(0));
}
Word InArco( const ListExpr typeInfo, const ListExpr instance, const int errorPos, ListExpr& errorInfo, bool& correct){
Arco* arco ;
arco = new Arco();
//crea un resultado con addr apuntando a 0
Word res((void*)0);
//asume una lista incorrecta
correct = false;
//verifica si la lista contiene tres elementos
if(!nl->HasLength(instance,3)){
cmsg.inFunError("expected tres elementos");
return res;
}
if (nl->ListLength(instance) == 3) {
ListExpr source = nl->First(instance);
ListExpr destination = nl->Second(instance);
ListExpr name = nl->Third(instance);
// si las listas son elementos atomicos entonces:
if ((nl->IsAtom(source) && nl->IsAtom(destination) && nl->IsAtom(name))) {
correct = true;
if (!(nl->IsAtom(source) && (nl->AtomType(source) == IntType)
&& nl->IsAtom(destination) && (nl->AtomType(destination) == IntType)
&& nl->IsAtom(name) && (nl->AtomType(name) == StringType)))
correct = false;
else
correct = arco->setArco(nl->IntValue(source),
nl->IntValue(destination),
nl->StringValue(name));
}
}
if (correct)
return SetWord(arco);
delete arco;
return SetWord(Address(0));
}
// Out Function
// Esta funcion se utiliza convertir cada instancia de la clase en una lista anidada.
// Por tal motivo no función para reportar error como sucede en las In Function.
ListExpr OutGrafo( ListExpr typeInfo, Word value){
Grafo* grafo = (Grafo*) value.addr;
vector<Nodo>* n = grafo->GetNodos();
ListExpr last;
ListExpr verticesList;
// crear ListExpr para vertices
if(n->size()>0){
verticesList= nl->OneElemList(
nl->TwoElemList(
nl->IntAtom((*n)[0].getID()),
nl->StringAtom((*n)[0].getNombre())
)
);
last= verticesList;
for(int i=1;i<(*n).size();i++){
last=
nl->Append(
last,
nl->TwoElemList(
nl->IntAtom((*n)[i].getID()),
nl->StringAtom((*n)[i].getNombre())
)
);
}
}
else{
verticesList = nl->TheEmptyList();
}
//delete n;
vector<Arco>* m = grafo->GetArcos();
ListExpr arcosList;
if(m->size()>0){
arcosList= nl->OneElemList(
nl->ThreeElemList(
nl->IntAtom((*m)[0].getSource()),
nl->IntAtom((*m)[0].getDestination()),
nl->StringAtom((*m)[0].getRelacion())
)
);
last= arcosList;
for(int i=1;i<(*m).size();i++){
last=
nl->Append(
last,
nl->ThreeElemList(
nl->IntAtom((*m)[i].getSource()),
nl->IntAtom((*m)[i].getDestination()),
nl->StringAtom((*m)[i].getRelacion())
)
);
}
}
else{
arcosList = nl->TheEmptyList();
}
//delete m;
return (nl->TwoElemList(verticesList,arcosList));
}
ListExpr OutNodo( ListExpr typeInfo, Word value){
Nodo* nodo = (Nodo*) value.addr;
ListExpr aux;
//ListExpr verticesList;
// crear ListExpr para vertices
aux= nl->OneElemList(
nl->TwoElemList(
nl->IntAtom((*nodo).getID()),
nl->StringAtom((*nodo).getNombre())
)
);
return (nl->OneElemList(aux));
}
ListExpr OutArco( ListExpr typeInfo, Word value){
Arco* arco = (Arco*) value.addr;
ListExpr aux;
//ListExpr verticesList;
// crear ListExpr para vertices
aux= nl->OneElemList(
nl->ThreeElemList(
nl->IntAtom((*arco).getSource()),
nl->IntAtom((*arco).getDestination()),
nl->StringAtom((*arco).getRelacion())
)
);
return (nl->OneElemList(aux));
}
// Create Function
// Esta función crea un objeto con valor arbitrario
Word CreateGrafo( const ListExpr typeInfo){
Word w;
w.addr = (new Grafo());
return w;
}
Word CreateNodo( const ListExpr typeInfo){
Word w;
w.addr = (new Nodo());
return w;
}
Word CreateArco( const ListExpr typeInfo){
Word w;
w.addr = (new Arco());
return w;
}
// Delete Function
// Remueve completamente el objeto (incluyendo las partes en disco si es que hay)
void DeleteGrafo( const ListExpr typeInfo, Word& w){
Grafo *k = (Grafo *)w.addr;
delete k;
w.addr = 0;
}
void DeleteNodo( const ListExpr typeInfo, Word& w){
Nodo *k = (Nodo *)w.addr;
delete k;
w.addr = 0;
}
void DeleteArco( const ListExpr typeInfo, Word& w){
Arco *k = (Arco *)w.addr;
delete k;
w.addr = 0;
}
// Open Function
// Lee un objeto desde disco via SmiRecord
// valueRecord: the disc representation of the object is stored
// offset: la representación del objeto comienza en el valueRecord despues de la llamada
// de esta función, el offset debe ser despúes del valor del objeto
// typeInfo: la descripción del tipo (requerida para tipos complejos)
// value: argumento de salida
bool OpenGrafo(SmiRecord& valueRecord, size_t& offset, const ListExpr typeInfo, Word& value){
int nodo_size,arco_size;
size_t integer=sizeof(int);
size_t varchar = sizeof(char)*20;
vector<Nodo> nodo;
vector<Arco> arco;
bool ok=(valueRecord.Read(&nodo_size,integer,offset)==integer);
offset+= integer;
ok= ok&& (valueRecord.Read(&arco_size,integer,offset)==integer);
offset +=integer;
//int id1,id2,id;
//string name,rel;
for(int j=0;j<nodo_size;j++){
int id ;
char aux[20];
ok= ok&& (valueRecord.Read(&id,integer,offset)==integer);
offset +=integer;
ok= ok&& (valueRecord.Read(aux,varchar,offset)==varchar);
offset +=varchar;
string str(aux);
Nodo node=Nodo(id,aux);
nodo.push_back(node);
}
for(int j=0;j<arco_size;j++){
int id1 ;
int id2;
char aux[20];
ok= ok&& (valueRecord.Read(&id1,integer,offset)==integer);
offset +=integer;
ok= ok&& (valueRecord.Read(&id2,integer,offset)==integer);
offset +=integer;
ok= ok&& (valueRecord.Read(aux,varchar,offset)==varchar);
offset +=varchar;
string str(aux);
Arco arc=Arco(aux,id1,id2);
arco.push_back(arc);
}
if(ok){
value.addr = new Grafo(nodo,arco);
}else {
value.addr = 0;
}
return 0;
}
bool OpenNodo(SmiRecord& valueRecord, size_t& offset, const ListExpr typeInfo, Word& value){
size_t integer=sizeof(int);
size_t varchar = sizeof(char)*20;
int ID;
char aux[20];
// size_t size = sizeof(double);
// double cantNodos,cantArcos;
bool ok = (valueRecord.Read(&ID,integer,offset) == integer);
offset+= integer;
ok = ok&& (valueRecord.Read(aux,varchar,offset) == varchar);
offset+= varchar;
if(ok){
value.addr = new Nodo(ID,aux);
}
else {
value.addr = 0;
}
return ok;
}
bool OpenArco(SmiRecord& valueRecord, size_t& offset, const ListExpr typeInfo, Word& value){
size_t integer=sizeof(int);
size_t varchar = sizeof(char)*20;
int source,destination;
char aux[20];
// size_t size = sizeof(double);
// double cantNodos,cantArcos;
bool ok = (valueRecord.Read(&source,integer,offset) == integer);
offset+= integer;
ok = (valueRecord.Read(&destination,integer,offset) == integer);
offset+= integer;
ok = ok&& (valueRecord.Read(aux,varchar,offset) == varchar);
offset+= varchar;
if(ok){
value.addr = new Arco(aux,source,destination);
}
else {
value.addr = 0;
}
return ok;
}
// Save Function
bool SaveGrafo( SmiRecord& valueRecord, size_t& offset, const ListExpr typeInfo, Word&value){
Grafo* k = static_cast<Grafo*>(value.addr);
size_t size_int = sizeof(int);
size_t size_string = sizeof(char)*20;
bool ok=true;