2010-01-23 03:52:57 +03:00
/*-*- Mode: C; c-basic-offset: 8 -*-*/
2010-02-03 15:03:47 +03:00
/***
This file is part of systemd .
Copyright 2010 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
systemd 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
General Public License for more details .
You should have received a copy of the GNU General Public License
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
2010-01-23 03:52:57 +03:00
# include <errno.h>
2010-01-26 23:39:06 +03:00
# include "unit.h"
2010-01-23 03:52:57 +03:00
# include "automount.h"
# include "load-fragment.h"
# include "load-dropin.h"
2010-04-10 19:53:17 +04:00
static const UnitActiveState state_translation_table [ _AUTOMOUNT_STATE_MAX ] = {
[ AUTOMOUNT_DEAD ] = UNIT_INACTIVE ,
[ AUTOMOUNT_WAITING ] = UNIT_ACTIVE ,
[ AUTOMOUNT_RUNNING ] = UNIT_ACTIVE ,
[ AUTOMOUNT_MAINTAINANCE ] = UNIT_INACTIVE ,
} ;
2010-01-23 03:52:57 +03:00
2010-04-10 19:53:17 +04:00
static const char * const state_string_table [ _AUTOMOUNT_STATE_MAX ] = {
[ AUTOMOUNT_DEAD ] = " dead " ,
[ AUTOMOUNT_WAITING ] = " waiting " ,
[ AUTOMOUNT_RUNNING ] = " running " ,
[ AUTOMOUNT_MAINTAINANCE ] = " maintainance "
} ;
2010-01-23 03:52:57 +03:00
2010-04-10 19:53:17 +04:00
static void automount_init ( Unit * u ) {
Automount * a = AUTOMOUNT ( u ) ;
2010-01-23 03:52:57 +03:00
2010-04-10 19:53:17 +04:00
a - > state = 0 ;
a - > mount = NULL ;
}
2010-01-23 03:52:57 +03:00
2010-04-10 19:53:17 +04:00
static int automount_load ( Unit * u ) {
int r ;
Automount * a = AUTOMOUNT ( u ) ;
2010-04-06 04:43:58 +04:00
2010-04-10 19:53:17 +04:00
assert ( u ) ;
assert ( u - > meta . load_state = = UNIT_STUB ) ;
2010-01-23 03:52:57 +03:00
2010-04-10 19:53:17 +04:00
/* Load a .automount file */
if ( ( r = unit_load_fragment_and_dropin_optional ( u ) ) < 0 )
return r ;
2010-04-06 04:43:58 +04:00
2010-04-10 19:53:17 +04:00
if ( u - > meta . load_state = = UNIT_LOADED ) {
2010-04-06 04:43:58 +04:00
2010-04-10 19:53:17 +04:00
if ( ( r = unit_load_related_unit ( u , " .mount " , ( Unit * * ) & a - > mount ) ) < 0 )
2010-04-06 04:43:58 +04:00
return r ;
2010-04-10 19:53:17 +04:00
if ( ( r = unit_add_dependency ( u , UNIT_BEFORE , UNIT ( a - > mount ) ) ) < 0 )
2010-04-06 04:43:58 +04:00
return r ;
}
2010-01-23 03:52:57 +03:00
return 0 ;
}
2010-01-26 23:39:06 +03:00
static void automount_done ( Unit * u ) {
2010-04-10 19:53:17 +04:00
Automount * a = AUTOMOUNT ( u ) ;
assert ( a ) ;
2010-01-26 06:18:44 +03:00
2010-04-10 19:53:17 +04:00
a - > mount = NULL ;
2010-01-26 06:18:44 +03:00
}
2010-01-26 23:39:06 +03:00
static void automount_dump ( Unit * u , FILE * f , const char * prefix ) {
Automount * s = AUTOMOUNT ( u ) ;
2010-01-23 03:52:57 +03:00
assert ( s ) ;
fprintf ( f ,
2010-04-10 19:53:17 +04:00
" %sAutomount State: %s \n " ,
prefix , state_string_table [ s - > state ] ) ;
2010-01-23 03:52:57 +03:00
}
2010-01-26 23:39:06 +03:00
static UnitActiveState automount_active_state ( Unit * u ) {
2010-04-10 19:53:17 +04:00
return state_translation_table [ AUTOMOUNT ( u ) - > state ] ;
2010-01-23 03:52:57 +03:00
}
2010-01-26 23:39:06 +03:00
const UnitVTable automount_vtable = {
2010-01-23 03:52:57 +03:00
. suffix = " .mount " ,
2010-04-10 19:53:17 +04:00
. no_alias = true ,
2010-01-26 06:18:44 +03:00
. init = automount_init ,
2010-04-10 19:53:17 +04:00
. load = automount_load ,
2010-01-26 06:18:44 +03:00
. done = automount_done ,
2010-01-23 03:52:57 +03:00
2010-01-26 06:18:44 +03:00
. dump = automount_dump ,
2010-01-23 03:52:57 +03:00
2010-01-26 06:18:44 +03:00
. active_state = automount_active_state
2010-01-23 03:52:57 +03:00
} ;