1 /*****************************************************************************\
2  *  node_select_info.c - get the node select plugin state information of slurm
3  *****************************************************************************
4  *  Copyright (C) 2005 The Regents of the University of California.
5  *  Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
6  *  Written by Morris Jette <jette1@llnl.gov>
7  *  CODE-OCEC-09-009. All rights reserved.
8  *
9  *  This file is part of Slurm, a resource management program.
10  *  For details, see <https://slurm.schedmd.com/>.
11  *  Please also read the included file: DISCLAIMER.
12  *
13  *  Slurm is free software; you can redistribute it and/or modify it under
14  *  the terms of the GNU General Public License as published by the Free
15  *  Software Foundation; either version 2 of the License, or (at your option)
16  *  any later version.
17  *
18  *  In addition, as a special exception, the copyright holders give permission
19  *  to link the code of portions of this program with the OpenSSL library under
20  *  certain conditions as described in each individual source file, and
21  *  distribute linked combinations including the two. You must obey the GNU
22  *  General Public License in all respects for all of the code used other than
23  *  OpenSSL. If you modify file(s) with this exception, you may extend this
24  *  exception to your version of the file(s), but you are not obligated to do
25  *  so. If you do not wish to do so, delete this exception statement from your
26  *  version.  If you delete this exception statement from all source files in
27  *  the program, then also delete it here.
28  *
29  *  Slurm is distributed in the hope that it will be useful, but WITHOUT ANY
30  *  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
31  *  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
32  *  details.
33  *
34  *  You should have received a copy of the GNU General Public License along
35  *  with Slurm; if not, write to the Free Software Foundation, Inc.,
36  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA.
37 \*****************************************************************************/
38 
39 #include <arpa/inet.h>
40 #include <errno.h>
41 #include <netinet/in.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <syslog.h>
46 #include <unistd.h>
47 
48 #include "slurm/slurm.h"
49 
50 #include "src/common/node_select.h"
51 #include "src/common/parse_time.h"
52 #include "src/common/slurm_protocol_api.h"
53 #include "src/common/xmalloc.h"
54 #include "src/common/xstring.h"
55 
slurm_get_select_nodeinfo(dynamic_plugin_data_t * nodeinfo,enum select_nodedata_type data_type,enum node_states state,void * data)56 extern int slurm_get_select_nodeinfo(dynamic_plugin_data_t *nodeinfo,
57 				     enum select_nodedata_type data_type,
58 				     enum node_states state, void *data)
59 {
60 	return select_g_select_nodeinfo_get(nodeinfo, data_type, state, data);
61 }
62