2019-07-13 19:45:48 +03:00
/*
* virsh - completer - interface . c : virsh completer callbacks related to interfaces
*
* Copyright ( C ) 2019 Red Hat , Inc .
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library . If not , see
* < http : //www.gnu.org/licenses/>.
*/
# include <config.h>
# include "virsh-completer-interface.h"
# include "viralloc.h"
# include "virsh.h"
# include "virstring.h"
2020-11-10 12:50:55 +03:00
typedef const char *
( * virInterfaceStringCallback ) ( virInterfacePtr iface ) ;
static char * *
virshInterfaceStringHelper ( vshControl * ctl ,
const vshCmd * cmd G_GNUC_UNUSED ,
unsigned int flags ,
virInterfaceStringCallback cb )
2019-07-13 19:45:48 +03:00
{
virshControlPtr priv = ctl - > privData ;
virInterfacePtr * ifaces = NULL ;
int nifaces = 0 ;
size_t i = 0 ;
VIR_AUTOSTRINGLIST tmp = NULL ;
virCheckFlags ( VIR_CONNECT_LIST_INTERFACES_ACTIVE |
VIR_CONNECT_LIST_INTERFACES_INACTIVE ,
NULL ) ;
if ( ! priv - > conn | | virConnectIsAlive ( priv - > conn ) < = 0 )
return NULL ;
if ( ( nifaces = virConnectListAllInterfaces ( priv - > conn , & ifaces , flags ) ) < 0 )
return NULL ;
2020-09-14 17:24:44 +03:00
tmp = g_new0 ( char * , nifaces + 1 ) ;
2019-07-13 19:45:48 +03:00
for ( i = 0 ; i < nifaces ; i + + ) {
2020-11-10 12:50:55 +03:00
const char * name = ( cb ) ( ifaces [ i ] ) ;
2019-07-13 19:45:48 +03:00
2019-10-20 14:49:46 +03:00
tmp [ i ] = g_strdup ( name ) ;
2019-07-13 19:45:48 +03:00
}
for ( i = 0 ; i < nifaces ; i + + )
virInterfaceFree ( ifaces [ i ] ) ;
2020-09-14 17:10:15 +03:00
g_free ( ifaces ) ;
2020-11-10 12:50:55 +03:00
return g_steal_pointer ( & tmp ) ;
}
char * *
virshInterfaceNameCompleter ( vshControl * ctl ,
const vshCmd * cmd ,
unsigned int flags )
{
return virshInterfaceStringHelper ( ctl , cmd , flags , virInterfaceGetName ) ;
2019-07-13 19:45:48 +03:00
}
2020-11-10 12:50:56 +03:00
char * *
virshInterfaceMacCompleter ( vshControl * ctl ,
const vshCmd * cmd ,
unsigned int flags )
{
return virshInterfaceStringHelper ( ctl , cmd , flags ,
virInterfaceGetMACString ) ;
}