Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
New function: xbt_host_copy (even if it's trivial)
[simgrid.git] / src / xbt / xbt_host.c
1 /* $Id$ */
2
3 /* xbt_host_t management functions                                          */
4
5 /* Copyright (c) 2006 Martin Quinson. All rights reserved.                  */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "xbt/sysdep.h"
11 #include "xbt/log.h"
12 #include "xbt/host.h"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(host,xbt,"Host management");
15
16 /** \brief constructor */
17 xbt_host_t xbt_host_new(const char *name, int port)  {
18    xbt_host_t res=xbt_new(s_xbt_host_t, 1);
19    res->name = xbt_strdup(name);
20    res->port = port;
21    return res;
22 }
23
24 xbt_host_t xbt_host_copy(xbt_host_t h) {
25    return xbt_host_new(h->name,h->port);
26 }
27
28 /** \brief constructor. Argument should be of form '<hostname>:<port>'. */
29 xbt_host_t xbt_host_from_string(const char *hostport)  {
30    xbt_host_t res=xbt_new(s_xbt_host_t, 1);
31    char *name=xbt_strdup(hostport);
32    char *port_str=strchr(name,':');
33    xbt_assert1(port_str,"argument of xbt_host_from_string should be of form <hostname>:<port>, it's '%s'", hostport);
34    *port_str='\0';
35    port_str++;
36    
37    res->name = xbt_strdup(name); /* it will be shorter now that we cut the port */
38    res->port = atoi(port_str);
39    free(name);
40    return res;
41 }
42
43 /** \brief destructor */
44 void xbt_host_free(xbt_host_t host) {
45    if (host) {
46       if (host->name) free(host->name);
47       free(host);
48    }
49 }
50
51 /** \brief Freeing function for dynars of xbt_host_t */
52 void xbt_host_free_voidp(void *d) {
53    xbt_host_free( (xbt_host_t) *(void**)d );
54 }