mirror of
https://github.com/boostorg/graph.git
synced 2025-05-09 23:14:00 +00:00
99 lines
3.4 KiB
C++
99 lines
3.4 KiB
C++
//=======================================================================
|
|
// Copyright 2001 Jeremy G. Siek, Andrew Lumsdaine, Lie-Quan Lee,
|
|
//
|
|
// This file is part of the Boost Graph Library
|
|
//
|
|
// You should have received a copy of the License Agreement for the
|
|
// Boost Graph Library along with the software; see the file LICENSE.
|
|
// If not, contact Office of Research, Indiana University,
|
|
// Bloomington, IN 47405.
|
|
//
|
|
// Permission to modify the code and to distribute the code is
|
|
// granted, provided the text of this NOTICE is retained, a notice if
|
|
// the code was modified is included with the above COPYRIGHT NOTICE
|
|
// and with the COPYRIGHT NOTICE in the LICENSE file, and that the
|
|
// LICENSE file is distributed with the modified code.
|
|
//
|
|
// LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.
|
|
// By way of example, but not limitation, Licensor MAKES NO
|
|
// REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY
|
|
// PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS
|
|
// OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS
|
|
// OR OTHER RIGHTS.
|
|
//=======================================================================
|
|
#include <boost/config.hpp>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <boost/graph/adjacency_list.hpp>
|
|
#include <boost/graph/graph_utility.hpp>
|
|
|
|
using namespace boost;
|
|
|
|
namespace std
|
|
{
|
|
template < typename T >
|
|
std::istream & operator >> (std::istream & in, std::pair < T, T > &p)
|
|
{
|
|
in >> p.first >> p.second;
|
|
return in;
|
|
}
|
|
}
|
|
|
|
typedef adjacency_list < listS, // Store out-edges of each vertex in a std::list
|
|
vecS, // Store vertex set in a std::vector
|
|
directedS // The file dependency graph is directed
|
|
> file_dep_graph;
|
|
|
|
typedef graph_traits < file_dep_graph >::vertex_descriptor vertex_t;
|
|
typedef graph_traits < file_dep_graph >::edge_descriptor edge_t;
|
|
|
|
void
|
|
topo_sort_dfs(const file_dep_graph & g, vertex_t u, vertex_t * &topo_order,
|
|
int *mark)
|
|
{
|
|
mark[u] = 1; // 1 means visited, 0 means not yet visited
|
|
graph_traits < file_dep_graph >::adjacency_iterator vi, vi_end;
|
|
for (tie(vi, vi_end) = adjacent_vertices(u, g); vi != vi_end; ++vi)
|
|
if (mark[*vi] == 0)
|
|
topo_sort_dfs(g, *vi, topo_order, mark);
|
|
|
|
*--topo_order = u;
|
|
}
|
|
|
|
void
|
|
topo_sort(const file_dep_graph & g, vertex_t * topo_order)
|
|
{
|
|
std::vector < int >mark(num_vertices(g), 0);
|
|
graph_traits < file_dep_graph >::vertex_iterator vi, vi_end;
|
|
for (tie(vi, vi_end) = vertices(g); vi != vi_end; ++vi)
|
|
if (mark[*vi] == 0)
|
|
topo_sort_dfs(g, *vi, topo_order, &mark[0]);
|
|
}
|
|
|
|
|
|
int
|
|
main()
|
|
{
|
|
std::ifstream file_in("makefile-dependencies.dat");
|
|
typedef graph_traits < file_dep_graph >::vertices_size_type size_type;
|
|
size_type n_vertices;
|
|
file_in >> n_vertices; // read in number of vertices
|
|
std::istream_iterator < std::pair < size_type,
|
|
size_type > >input_begin(file_in), input_end;
|
|
file_dep_graph g(input_begin, input_end, n_vertices);
|
|
|
|
std::vector < std::string > name(num_vertices(g));
|
|
std::ifstream name_in("makefile-target-names.dat");
|
|
graph_traits < file_dep_graph >::vertex_iterator vi, vi_end;
|
|
for (tie(vi, vi_end) = vertices(g); vi != vi_end; ++vi)
|
|
name_in >> name[*vi];
|
|
|
|
std::vector < vertex_t > order(num_vertices(g));
|
|
topo_sort(g, &order[0] + num_vertices(g));
|
|
for (int i = 0; i < num_vertices(g); ++i)
|
|
std::cout << name[order[i]] << std::endl;
|
|
|
|
return 0;
|
|
}
|