main.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #include <stdio.h>
  2. #include <igraph.h>
  3. #include "io.h"
  4. #include "args.h"
  5. #include "graph.h"
  6. const char *argp_program_version = "Ganesha 0.1";
  7. const char *argp_program_bug_address = "<t.rice@ms.unimelb.edu.au>";
  8. int main(int argc, char *argv[]) {
  9. ost = stdout;
  10. /* Set argument defaults */
  11. struct arguments args;
  12. args.outfile = NULL;
  13. args.ifmt = read_error;
  14. args.ofmt = print_dot;
  15. args.ngraphs = 0;
  16. args.oper = graph_operation_error;
  17. argp_parse(&argp, argc, argv, 0, 0, &args);
  18. /* How many input files were listed? */
  19. long int graph_count = 0;
  20. while(args.args[graph_count]) ++graph_count;
  21. args.ngraphs = graph_count;
  22. if(!args.ngraphs) return 1;
  23. /* Define input format, read input files into graphs, then close the input file streams. */
  24. void (*read)(igraph_t *g, FILE *ist);
  25. read = args.ifmt;
  26. igraph_vector_ptr_t g;
  27. igraph_vector_ptr_init(&g, args.ngraphs);
  28. long int arg_idx;
  29. for(arg_idx = 0; args.args[arg_idx]; ++arg_idx) {
  30. src_ist = fopen(args.args[arg_idx], "r");
  31. VECTOR(g)[arg_idx] = calloc(1, sizeof(igraph_t));
  32. read(VECTOR(g)[arg_idx], src_ist);
  33. if(src_ist != NULL) {
  34. fclose(src_ist);
  35. }
  36. }
  37. src_ist = NULL;
  38. /* Do selected operation on input graphs before deleting them. */
  39. void (*operate)(graph_t *result, igraph_vector_ptr_t *glist);
  40. operate = args.oper;
  41. graph_t* result = graph_init();
  42. operate(result, &g);
  43. long int idx;
  44. for(idx = 0; idx < igraph_vector_ptr_size(&g); ++idx) {
  45. igraph_destroy(VECTOR(g)[idx]);
  46. free(VECTOR(g)[idx]);
  47. }
  48. igraph_vector_ptr_destroy(&g);
  49. /* Print in defined output format to destination. */
  50. void (*print)(graph_t *some_graph);
  51. print = args.ofmt;
  52. if(result->initialised) {
  53. print(result);
  54. }
  55. /* Tidy up */
  56. graph_destroy(result);
  57. if(ost != NULL) {
  58. fclose(ost);
  59. }
  60. ost = NULL;
  61. return 0;
  62. }