Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Weak Pointers


November, 2005: Weak Pointers

Listing 4


#include <memory>
#include <algorithm>
#include <map>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <ostream>
#include <string>
using std::tr1::shared_ptr; using std::tr1::weak_ptr;
using std::string; using std::map; using std::make_pair;
using std::ostream_iterator; using std::copy;
using std::basic_ostream; using std::cout; using std::setw;

typedef weak_ptr<void> address;
typedef map<address, string> name_list;
typedef name_list::value_type element;
typedef name_list::iterator iter;

template <class Ty> void add(name_list& names,
  shared_ptr<Ty> val, string name)
  { // add an element to the list of names
  names.insert(make_pair(address(val), name));
  }

namespace std { // add to overload set for operator<<
template <class Elem, class Traits>
basic_ostream<Elem, Traits>& operator<<(
  basic_ostream<Elem, Traits>& str, const element& elt)
  { // insert element into stream
  return str << elt.first.lock() << ", " << elt.second;
  }
}

void show_element(string title, iter it, iter last)
  { // show an element if found
  cout << setw(6) << title;
  if (it == last)

    cout << "  not found\n";
  else
    cout << setw(10) << *it << '\n';
  }

void show_contents(iter first, iter last)
  { // show elements in half-open range [first, last)
  cout << " Contents: ";
  copy(first, last, ostream_iterator<element>(cout, "; "));
  cout << '\n';
  }

int main()
  { // demonstrate operator< for weak_ptr objects
  name_list names;
  shared_ptr<int> sp0(new int(3));
  add(names, sp0, "int");
  shared_ptr<double> sp1(new double(3.14159));
  add(names, sp1, "double");
  shared_ptr<long> sp2(new long(-1L));
  add(names, sp2, "long");
  cout << "After inserting three resources:\n";
  show_contents(names.begin(), names.end());
  show_element("sp0", names.find(sp0), names.end());
  show_element("sp1", names.find(sp1), names.end());
  show_element("sp2", names.find(sp2), names.end());
  sp1.reset();
  cout << "After releasing one resource:\n";
  show_contents(names.begin(), names.end());
  show_element("sp0", names.find(sp0), names.end());
  show_element("sp1", names.find(sp1), names.end());
  show_element("sp2", names.find(sp2), names.end());
  return 0;
  }


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.