82a6d74d创建于 2025年4月30日历史提交
/*
 * nodelist.cpp - node list class implementation
 *
 * Copyright (C) 2003, 2004, 2006, 2008 Stefan Jahn <stefan@lkcc.org>
 *
 * This 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 2, or (at your option)
 * any later version.
 *
 * This software 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 this package; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 * $Id$
 *
 */

#if HAVE_CONFIG_H
# include <config.h>
#endif

#include <algorithm>
#include <cassert>

#include "logging.h"
#include "object.h"
#include "node.h"
#include "complex.h"
#include "circuit.h"
#include "net.h"
#include "nodelist.h"

namespace qucs {



/* The function creates a nodelist for the given netlist.  The
   nodelist is based on the circuit list and consists of unique nodes
   inside the circuit list only.  Each node in the list has references
   to their actual circuit nodes and thereby to the circuits it is
   connected to. */
nodelist::nodelist (net * subnet) {
  sorting = 0;

  circuit * c;
  // go through circuit list and find unique nodes
  for (c = subnet->getRoot (); c != NULL; c = (circuit *) c->getNext ()) {
    for (int i = 0; i < c->getSize (); i++) {
      node * n = c->getNode (i);
      if (contains (n->getName ()) == 0) {
	root.push_front(new nodelist_t(n->getName (), n->getInternal ()));;
      }
    }
  }
  // add circuit nodes to each unique node in the list
  for (auto &n : this->root) {
    for (c = subnet->getRoot (); c != NULL; c = (circuit *) c->getNext ()) {
      for (int i = 0; i < c->getSize (); i++) {
	assert (c->getNode(i)->getName () != NULL);
	if (n->name == c->getNode(i)->getName ()) {
	  addCircuitNode(n, c->getNode (i));
	}
      }
    }
  }
}

// Destructor deletes an instance of the nodelist class.
nodelist::~nodelist () {
  for (auto &n: root) {
    delete n;
  }
}


// This function counts the node names in the list.
int nodelist::length (void) const {
  return root.size();
}

// This function finds the specified node name in the list.
bool nodelist::contains (const std::string &str) const {
  return std::find_if(root.begin(),root.end(),[str](nodelist_t *n) { return n->name == str; }) != root.end();
}

// Returns the node number of the given node name.
int nodelist::getNodeNr (const std::string &str) const {
  
  if(sorting) {
    auto it = std::find_if(narray.begin(),narray.end(),[str](nodelist_t *n) { return n->name == str; });
    if(it == narray.end())
      return -1;
    return (*it)->n;
  }
  auto it = std::find_if(root.begin(),root.end(),[str](nodelist_t *n) { return n->name == str; });
  if(it == root.end())
    return -1;
  return (*it)->n;
}

/* This function returns the node name positioned at the specified
   location in the node name list. */
std::string nodelist::get (int nr) const {
  return narray[nr + 1]->name;
}

/* This function returns non-zero if the node positioned at the
   specified location in the node name list is marked internal and
   zero otherwise. */
bool nodelist::isInternal (int nr) const {
  return narray[nr + 1]->internal;
}

/* The function returns the nodelist structure with the given name in
   the node name list.  It returns NULL if there is no such node. */
struct nodelist_t * nodelist::getNode (const std::string &str) const {
  auto it = std::find_if(root.begin(),root.end(),[str](nodelist_t *n) { return n->name == str; });
  if(it != root.end())
    return *it;
  return nullptr;
}

/* Returns a comma separated list of the circuits connected to the
   node specified by the given number. */
std::string nodelist::getNodeString (int nr) const {
  std::string txt;
  // find the specified node
  struct nodelist_t * n = getNode (nr);
  // append circuit names connected to the node
  std::size_t i=0;
  for (auto &currentn: *n) {
    const std::string str = currentn->getCircuit()->getName ();
    txt+=str;
    if (i != n->size() - 1)
      txt+=",";
    ++i;
  }
  return txt;
}


// This function enumerates the nodes in the node name list.
void nodelist::assignNodes (void) {
  int i = 1;

  // create fast array access possibility
  narray.clear();
  narray.reserve(this->length());
  narray.resize(1);

  for (auto n: root) {
    // ground node gets a zero counter
    if (n->name=="gnd") {
      n->n = 0;
      narray[0] = n;
    }
    // others get a unique number greater than zero
    else {
      narray.resize(i+1);
      narray[i] = n;
      n->n = i++;
    }
  }
}

/* The function appends a node pointer to the given nodelist
   structure. */
void nodelist::addCircuitNode (struct nodelist_t * nl, node * n) {
  (*nl).push_back(n);
  if (n->getInternal ()) nl->internal = n->getInternal ();
}


/* This function is used as sorting criteria for the S-parameter
   analysis.  It returns the number of nodes a join of the two
   circuits connected to the given node would yield. */
static int sortfunc (struct nodelist_t * n) {
  int p;
  circuit * c1 = (*n)[0]->getCircuit ();
  circuit * c2 = (*n).size() > 1 ? (*n)[1]->getCircuit () : nullptr;
  if (c1->getPort () || (c2 && c2->getPort ())) return -1;
  if (c1 == c2) { // interconnect
    p = c1->getSize () - 2;
  } else {        // connect
    p = c1->getSize () + (c2 ? c2->getSize () - 2 : 0);
  }
  return p;
}

/* The function evaluates the sorting criteria of the given two nodes.
   It returns non-zero if 'n1' should be inserted before 'n2'. */
static int insfunc (struct nodelist_t * n1, struct nodelist_t * n2) {
  int p1 = sortfunc (n1);
  int p2 = sortfunc (n2);
  return p1 >= 0 && (p1 <= p2 || p2 < 0);
}

/* The function inserts the given node structure into the node list.
   If the nodelist is sorted then the node gets inserted at a certain
   position. */
void nodelist::insert (struct nodelist_t * n) {
  // first node at all
  if (root.empty()) {
    root.push_front(n);
    return;
  }

  // sorted node list
  if (sorting) {
    int added = 0;
    for (auto it = root.begin();it != root.end();it++) {
      if (insfunc (n, *it)) {
	root.insert(it,n);
	added++;
	break;
      }
    }
    if (!added)
      root.push_back (n);
    return;
  }

  // unsorted node list
  root.push_front(n);
}

/* This function removes the nodes associated with the given circuits
   from the node list.  If the node list is sorted then the order gets
   rearranged properly. */
void nodelist::remove (circuit * c) {
  // go through each node of the circuit
  for (int i = 0; i < c->getSize (); i++) {
    node * n = c->getNode (i);
    struct nodelist_t * nl;
    if ((nl = this->getNode (n->getName ())) != NULL) {
      // remove node from node structure
      nl->erase(std::remove(nl->begin(), nl->end(), n), nl->end());
      if (nl->empty()) {
	// completely remove the node structure
	root.erase(std::remove(root.begin(), root.end(), nl), root.end());
	delete nl;
      }
      else if (sorting && sortfunc (nl) > 0) {
	// rearrange sorting
	root.erase(std::remove(root.begin(), root.end(), nl), root.end());
	insert (nl);
      }
    }
  }
}

/* The following function can be used to insert a new circuit to the
   node list.  It goes through each node of the circuit and rearranges
   the node list appropriately. */
void nodelist::insert (circuit * c) {
  // go through each node of the circuit
  for (int i = 0; i < c->getSize (); i++) {
    struct nodelist_t * nl;
    node * n = c->getNode (i);
    // is this node already in the nodelist?
    if (contains (n->getName ()) == 0) {
      // no, create new node and put it into the list
      nl = new nodelist_t(n->getName (), n->getInternal ());
      addCircuitNode (nl, n);
      if (sorting) {
	if (c->getPort ())
	  root.push_back (nl);
	else
	  insert (nl);
      }
      else root.push_front (nl);
    }
    else {
      // yes, put additional node into nodelist structure
      if ((nl = getNode (n->getName ())) != NULL) {
	addCircuitNode (nl, n);
	if (sorting && sortfunc (nl) > 0) {
	  // rearrange sorting
	  root.erase(std::remove(root.begin(), root.end(), nl), root.end());
	  insert (nl);
	}
      }
    }
  }
}

/* The function completely rebuilds the nodelist.  Once sort()'ed it
   keeps being sorted when removing or inserting new circuits. */
void nodelist::sort (void) {
  nodelist * nodes = new nodelist ();
  struct nodelist_t * cand;
  int i, ports, MaxPorts, len = length ();

  // go through the list until there is no node left
  for (i = 0; i < len; i++) {
    // find last order node
    cand = NULL;
    auto nl =  root.begin();
    for (MaxPorts = -1, nl = root.begin(); nl != root.end(); nl++) {
      ports = sortfunc (*nl);
      if (ports > MaxPorts || MaxPorts < 0 || ports == -1) {
	cand = *nl;
	MaxPorts = ports;
      }
      if (ports == -1) break;
    }
    // add last order node
    root.erase(std::remove(root.begin(), root.end(), cand), root.end());
    nodes->root.push_front (cand);
  }

  // store sorted node list in current object
  root = nodes->root;
  sorting = 1;

  // delete temporary node list: UGLY todo proper lifetime
  nodes->root.clear();
  delete nodes;
}

// The function returns the first two nodes of the sorted list.
void nodelist::sortedNodes (node ** node1, node ** node2) {
  assert ((*root.begin())->size() == 2);
  *node1 = (**(root.begin()))[0];
  *node2 = (**(root.begin()))[1];
}

#if DEBUG
// Debug function: Prints the entire nodelist.
void nodelist::print (void) const {
  for (auto n: root) {
    logprint (LOG_STATUS, "DEBUG: node %s-%d [", n->name.c_str(), n->n);
    std::size_t i=0;
    for (const auto &currentnode : *n) {
      logprint (LOG_STATUS, "%s", currentnode->getCircuit()->getName ());
      if (i != n->size() - 1) logprint (LOG_STATUS, ",");
      ++i;
    }
    logprint (LOG_STATUS, "]\n");
  }
}
#endif /* DEBUG */

} // namespace qucs