File: explain.cc

package info (click to toggle)
cruft-ng 0.9.77
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,836 kB
  • sloc: cpp: 1,748; sh: 816; python: 233; makefile: 97; ansic: 82; perl: 75
file content (94 lines) | stat: -rw-r--r-- 2,607 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Copyright © 2015 Alexandre Detiste <alexandre@detiste.be>
// SPDX-License-Identifier: GPL-2.0-or-later

#include <cstring>
#include <iostream>
#include <algorithm>
#include <dirent.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/stat.h>

#include "explain.h"
#include "usr_merge.h"
#include "owner.h"

static void read_one_explain(const string& script, const string& package, vector<owner>& explain)
{
	int fd[2];
	if (pipe(fd) != 0) {
		perror("pipe");
		exit(1);
	}
	if(!fork()) // child
	{
		dup2(fd[1], STDOUT_FILENO);
		close(fd[0]);
		close(fd[1]);
		execl(script.c_str(), script.c_str(), static_cast<char*>(nullptr));
		cerr << "Failed to execute command '" << script.c_str() << "': " << strerror(errno) << endl;
		exit(1);
	}

	close(fd[1]);
	FILE* fp;
	fp=fdopen(fd[0], "r");
	char buf[4096];
	string filter;
	string real_package = package;
	while (fgets(buf, sizeof(buf),fp))
	{
		filter=buf;
		filter=filter.substr(0,filter.size() - 1); // remove '/n'
		if (filter.front() == '/') {
			explain.emplace_back(real_package, usr_merge(filter));
		} else {
			real_package = filter;
		}
	}
	fclose(fp);
}

static void read_uppercase(vector<owner>& explain, const string& directory, bool debug)
{
	DIR *dp;
	struct dirent *dirp;

	if (debug) cerr << "EXECUTING UPPERCASE FILTERS IN " << directory  << endl;

	if((dp = opendir(directory.c_str())) == nullptr) {
		cerr << "Failed to open directory " << directory << ": " << strerror(errno) << endl;
		return;
	}
	while ((dirp = readdir(dp)) != nullptr) {
		string package = dirp->d_name;
		if (package==".") continue;
		if (package=="..") continue;
		if (!any_of(package.begin(), package.end(), [] (unsigned char c) { return islower(c); }))
			read_one_explain(directory + package, package, explain);
	}
	closedir(dp);
	if (debug) cerr << endl;
}

int read_explain(const string& dir, const vector<string>& packages, vector<owner>& explain)
{
	bool debug=getenv("DEBUG") != nullptr;

	read_uppercase(explain, "/usr/libexec/cruft/", debug);
	read_uppercase(explain, dir, debug);

	if (debug) cerr << "EXECUTING OTHER FILTERS" << endl;
	for (const auto& package: packages) {
		struct stat stat_buffer;
		string etc_filename = dir + package;
		string usr_filename = "/usr/libexec/cruft/" + package;
		if ( stat(etc_filename.c_str(), &stat_buffer)==0 )
			read_one_explain(etc_filename, package, explain);
		else if ( stat(usr_filename.c_str(), &stat_buffer)==0 )
			read_one_explain(usr_filename, package, explain);
	}
	sort(explain.begin(), explain.end());
	explain.erase( unique( explain.begin(), explain.end() ), explain.end() );
	return 0;
}