v4.0.0-rc5 - add dependency tree data type support
This commit is contained in:
parent
4e7c397df4
commit
e39f31e411
@ -6,3 +6,5 @@ CC = /bin/gcc
|
|||||||
AR = /bin/ar
|
AR = /bin/ar
|
||||||
|
|
||||||
LIBFLAGS = -lconfig
|
LIBFLAGS = -lconfig
|
||||||
|
|
||||||
|
PREFIX = /usr
|
||||||
|
75
include/glacier_data.h
Normal file
75
include/glacier_data.h
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
/*
|
||||||
|
* glacier_log.h - Data structures for libglacier
|
||||||
|
*
|
||||||
|
* This file is part of Glacier.
|
||||||
|
*
|
||||||
|
* Glacier 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 3 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Glacier 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 Glacier. If
|
||||||
|
* not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef GLACIERDATA_H_
|
||||||
|
#define GLACIERDATA_H_
|
||||||
|
|
||||||
|
/*
|
||||||
|
* create_node
|
||||||
|
*
|
||||||
|
* DESCRIPTION: Create_node creates a node for a dependency tree data structure.
|
||||||
|
* PARAMETERS:
|
||||||
|
* char *data -> The name of the node to create
|
||||||
|
* RETURN VALUES:
|
||||||
|
* None.
|
||||||
|
* CAVEATS:
|
||||||
|
* None.
|
||||||
|
* EXAMPLE:
|
||||||
|
* struct node package = create_node("Package");
|
||||||
|
*/
|
||||||
|
|
||||||
|
struct node *create_node(char *data);
|
||||||
|
|
||||||
|
/**************************************************************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* add_child
|
||||||
|
*
|
||||||
|
* DESCRIPTION: Add_child adds a child node to a parent node.
|
||||||
|
* PARAMETERS:
|
||||||
|
* struct node *parent -> The parent node which the child will be added to
|
||||||
|
* struct node *child -> The child node which will be added to the parent node
|
||||||
|
* RETURN VALUES:
|
||||||
|
* 1 on maximum children exceeded
|
||||||
|
* CAVEATS:
|
||||||
|
* None.
|
||||||
|
* EXAMPLE:
|
||||||
|
* add_child(package, dep1);
|
||||||
|
*/
|
||||||
|
|
||||||
|
void add_child(struct node *parent, struct node *child);
|
||||||
|
|
||||||
|
/**************************************************************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* print_tree
|
||||||
|
*
|
||||||
|
* DESCRIPTION: Print_tree prints a dependency tree specified at its root node
|
||||||
|
* PARAMETERS:
|
||||||
|
* struct node *root -> The tree to print
|
||||||
|
* int level -> The number of levels to descend
|
||||||
|
* RETURN VALUES:
|
||||||
|
* None.
|
||||||
|
* CAVEATS:
|
||||||
|
* None.
|
||||||
|
* EXAMPLE:
|
||||||
|
* print_tree(package, 0);
|
||||||
|
*/
|
||||||
|
|
||||||
|
void print_tree(struct node *root, int level);
|
||||||
|
|
||||||
|
#endif
|
73
libglacier.c
73
libglacier.c
@ -31,6 +31,8 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
|
#define MAX_CHILDREN 64
|
||||||
|
|
||||||
/* Global variables */
|
/* Global variables */
|
||||||
|
|
||||||
config_t cfg;
|
config_t cfg;
|
||||||
@ -53,6 +55,12 @@ const char *runtime_files[] = {
|
|||||||
"/etc/make.conf"
|
"/etc/make.conf"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct node {
|
||||||
|
char *data;
|
||||||
|
struct node *children[MAX_CHILDREN];
|
||||||
|
int numChildren;
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* infolog
|
* infolog
|
||||||
*
|
*
|
||||||
@ -285,6 +293,71 @@ load_all_from_config()
|
|||||||
load_setting_from_config(char SETTING[])
|
load_setting_from_config(char SETTING[])
|
||||||
{} */
|
{} */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* create_node
|
||||||
|
*
|
||||||
|
* DESCRIPTION: Create a dependency tree node.
|
||||||
|
* PARAMETERS: char *data
|
||||||
|
* DEFINED IN: glacier_data.h
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
struct node
|
||||||
|
*create_node(char *data)
|
||||||
|
{
|
||||||
|
struct node *newNode = (struct node*)malloc(sizeof(struct node));
|
||||||
|
newNode->data = strdup(data);
|
||||||
|
newNode->numChildren = 0;
|
||||||
|
return newNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* add_child
|
||||||
|
*
|
||||||
|
* DESCRIPTION: Add a child node to a parent node.
|
||||||
|
* PARAMETERS: struct node *parent, struct node *child
|
||||||
|
* DEFINED IN: glacier_data.h
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
void
|
||||||
|
add_child(struct node *parent, struct node *child)
|
||||||
|
{
|
||||||
|
if (parent->numChildren < MAX_CHILDREN) {
|
||||||
|
parent->children[parent->numChildren++] = child;
|
||||||
|
} else {
|
||||||
|
if (LG_VERBOSE == 1) { errlog("Maximum number of children exceeded"); }
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* print_tree
|
||||||
|
*
|
||||||
|
* DESCRIPTION: Print a dependency tree.
|
||||||
|
* PARAMETERS: struct node *root, int level
|
||||||
|
* DEFINED IN: glacier_data.h
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
void
|
||||||
|
print_tree(struct node *root, int level)
|
||||||
|
{
|
||||||
|
if (root == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < level; i++) {
|
||||||
|
printf(" ");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("%s\n", root->data);
|
||||||
|
|
||||||
|
for (int i = 0; i < root->numChildren; i++) {
|
||||||
|
print_tree(root->children[i], level + 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* mkworkspace
|
* mkworkspace
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user