lldependencies.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file   lldependencies.cpp
  3.  * @author Nat Goodspeed
  4.  * @date   2008-09-17
  5.  * @brief  Implementation for lldependencies.
  6.  * 
  7.  * $LicenseInfo:firstyear=2008&license=viewergpl$
  8.  * 
  9.  * Copyright (c) 2008-2010, Linden Research, Inc.
  10.  * 
  11.  * Second Life Viewer Source Code
  12.  * The source code in this file ("Source Code") is provided by Linden Lab
  13.  * to you under the terms of the GNU General Public License, version 2.0
  14.  * ("GPL"), unless you have obtained a separate licensing agreement
  15.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  16.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  17.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  18.  * 
  19.  * There are special exceptions to the terms and conditions of the GPL as
  20.  * it is applied to this Source Code. View the full text of the exception
  21.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  22.  * online at
  23.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  24.  * 
  25.  * By copying, modifying or distributing this software, you acknowledge
  26.  * that you have read and understood your obligations described above,
  27.  * and agree to abide by those obligations.
  28.  * 
  29.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  30.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  31.  * COMPLETENESS OR PERFORMANCE.
  32.  * $/LicenseInfo$
  33.  */
  34. // Precompiled header
  35. #include "linden_common.h"
  36. // associated header
  37. #include "lldependencies.h"
  38. // STL headers
  39. #include <map>
  40. #include <sstream>
  41. // std headers
  42. // external library headers
  43. #include <boost/graph/graph_traits.hpp>  // for boost::graph_traits
  44. #include <boost/graph/adjacency_list.hpp>
  45. #include <boost/graph/topological_sort.hpp>
  46. #include <boost/graph/exception.hpp>
  47. // other Linden headers
  48. LLDependenciesBase::VertexList LLDependenciesBase::topo_sort(int vertices, const EdgeList& edges) const
  49. {
  50.     // Construct a Boost Graph Library graph according to the constraints
  51.     // we've collected. It seems as though we ought to be able to capture
  52.     // the uniqueness of vertex keys using a setS of vertices with a
  53.     // string property -- but I don't yet understand adjacency_list well
  54.     // enough to get there. All the examples I've seen so far use integers
  55.     // for vertices.
  56.     // Define the Graph type. Use a vector for vertices so we can use the
  57.     // default topological_sort vertex lookup by int index. Use a set for
  58.     // edges because the same dependency may be stated twice: Node "a" may
  59.     // specify that it must precede "b", while "b" may also state that it
  60.     // must follow "a".
  61.     typedef boost::adjacency_list<boost::setS, boost::vecS, boost::directedS,
  62.                                   boost::no_property> Graph;
  63.     // Instantiate the graph. Without vertex properties, we need say no
  64.     // more about vertices than the total number.
  65.     Graph g(edges.begin(), edges.end(), vertices);
  66.     // topo sort
  67.     typedef boost::graph_traits<Graph>::vertex_descriptor VertexDesc;
  68.     typedef std::vector<VertexDesc> SortedList;
  69.     SortedList sorted;
  70.     // note that it throws not_a_dag if it finds a cycle
  71.     try
  72.     {
  73.         boost::topological_sort(g, std::back_inserter(sorted));
  74.     }
  75.     catch (const boost::not_a_dag& e)
  76.     {
  77.         // translate to the exception we define
  78.         std::ostringstream out;
  79.         out << "LLDependencies cycle: " << e.what() << 'n';
  80.         // Omit independent nodes: display only those that might contribute to
  81.         // the cycle.
  82.         describe(out, false);
  83.         throw Cycle(out.str());
  84.     }
  85.     // A peculiarity of boost::topological_sort() is that it emits results in
  86.     // REVERSE topological order: to get the result you want, you must
  87.     // traverse the SortedList using reverse iterators.
  88.     return VertexList(sorted.rbegin(), sorted.rend());
  89. }
  90. std::ostream& LLDependenciesBase::describe(std::ostream& out, bool full) const
  91. {
  92.     // Should never encounter this base-class implementation; may mean that
  93.     // the KEY type doesn't have a suitable ostream operator<<().
  94.     out << "<no description available>";
  95.     return out;
  96. }
  97. std::string LLDependenciesBase::describe(bool full) const
  98. {
  99.     // Just use the ostream-based describe() on a std::ostringstream. The
  100.     // implementation is here mostly so that we can avoid #include <sstream>
  101.     // in the header file.
  102.     std::ostringstream out;
  103.     describe(out, full);
  104.     return out.str();
  105. }