aboutsummaryrefslogtreecommitdiff
path: root/src/espik.c
blob: 7f6ef72741d2473fbab0f8e0820cfa326e4ef788 (plain) (blame)
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
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>

/* EFL Stuff */
#include <Ecore.h>
#include <Ecore_Config.h>    /* Configuration lib */
/*#include <Ecore_Con.h> */    /* Socket lib */
#include <Ecore_Data.h>      /* List */

/* Espik Stuff */
#include "espik_global.h"
#include "espik_config.h"
#include "espik_common_handler.h"
#include "espik_net.h"
#include "espik.h"

typedef int  (*Handler_Func) (void *data, int ev_type, void *ev);

/* typedef int (*Handler_Fd_Func) (void *data, Ecore_Fd_Handler * fd_handler); */

static void espik_destroy_ptr (void *ptr)
{
  if (ptr)
  {
    printf ("Freeing data %p ...", ptr_list);
    free (ptr);
    ptr = NULL;
  }
}

static void espik_init (void)
{
  printf ("Welcome to %s-%s\n", APPS_NAME, ESPIK_VERSION);
  ptr_list = ecore_list_new();
  
  if (!ecore_init ())
  {
    printf ("Cannot init ecore; %d\n", 1);
    exit (-1);
  }

  ecore_list_set_free_cb (ptr_list, espik_destroy_ptr);
}

void espik_free (void *ptr)
{
  ecore_list_append (ptr_list, ptr);
}

void espik_shutdown (void)
{
  ecore_main_loop_quit();
}

/* Use to replace EOL ('\n') with NULL ('\0') */
int del_backslash (char *msg)
{
  int  i, count;

  for (i = 0, count = 0 ; msg[i] ; i++)
  {
    if (msg[i] == '\n')
    {
      msg[i] = '\0';
      count++;
    }
  }

  return (count);
}

int main (int argc, char **argv)
{
  Ecore_Fd_Handler       *fd_kb;

  espik_init ();
  espik_config_init ();

  if (argc < 3)
  {
    printf ("Loading from conf ...\n");
    espik_config_get (&a_infos);
  }
  else
  {
    printf ("Connecting to %s:%s\n", argv[1], argv[2]);
    a_infos.client = espik_user_sysinfo_get ();
    a_infos.server = espik_server_config_set (argv[1],
         (unsigned short)atoi (argv[2]));
  }

  espik_config_set (a_infos);

  printf ("host: %s\n", a_infos.server->host);
  printf ("port: %hd\n", a_infos.server->port);
  printf ("nick: %s\n", a_infos.client->nickname);
  printf ("user: %s\n", a_infos.client->username);
  printf ("real: %s\n", a_infos.client->realname);

  /* Handler Keyboard */
  fd_kb = ecore_main_fd_handler_add (STDIN_FILENO, ECORE_FD_READ, kb_get,
                         NULL, NULL, NULL);
  espik_free (fd_kb);
  if (!fd_kb)
  {
    printf ("Cannot ecore_main_fd_handler_add\n");
    exit (-1);
  }
  
  espik_con_init (a_infos);
  ecore_main_loop_begin ();

  espik_shutdown ();
  espik_config_shutdown (a_infos);
  
  ecore_shutdown ();
//ecore_list_destroy (ptr_list);

  return (0);
}