File: Reference.cc

package info (click to toggle)
thepeg 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 9,312 kB
  • ctags: 11,509
  • sloc: cpp: 57,129; sh: 11,315; java: 3,212; lisp: 1,402; makefile: 830; ansic: 58; perl: 3
file content (170 lines) | stat: -rw-r--r-- 5,514 bytes parent folder | download
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// -*- C++ -*-
//
// Reference.cc is a part of ThePEG - Toolkit for HEP Event Generation
// Copyright (C) 1999-2011 Leif Lonnblad
//
// ThePEG is licenced under version 2 of the GPL, see COPYING for details.
// Please respect the MCnet academic guidelines, see GUIDELINES for details.
//
//
// This is the implementation of the non-inlined, non-templated member
// functions of the ReferenceBase class.
//

#include "InterfacedBase.h"
#include "Reference.h"
#include "Reference.xh"
#include "ThePEG/Utilities/HoldFlag.h"
#include "ThePEG/Utilities/Rebinder.h"
#include "ThePEG/Repository/BaseRepository.h"
#include "ThePEG/Repository/EventGenerator.h"

using namespace ThePEG;

ReferenceBase::
ReferenceBase(string newName, string newDescription,
	      string newClassName, const type_info & newTypeInfo,
	      string newRefClassName, const type_info & newRefTypeInfo,
	      bool depSafe, bool readonly, bool norebind, bool nullable,
	      bool defnull)
  : RefInterfaceBase(newName, newDescription, newClassName, newTypeInfo,
		     newRefClassName, newRefTypeInfo, depSafe,
		     readonly, norebind, nullable, defnull) {}

IVector ReferenceBase::getReferences(const InterfacedBase & i) const {
  IVector r;
  r.push_back(get(i));
  return r;
}

string ReferenceBase::exec(InterfacedBase & i, string action,
			   string arguments) const {
  ostringstream ret;
  istringstream arg(arguments.c_str());
  if ( action == "get" ) {
    cIBPtr ref = get(i);
    if ( ref ) ret << ref->fullName();
    else ret << "*** NULL Reference ***";
  }
  else if ( action == "set" || action == "newdef" || action == "setdef" ) {
    string refname;
    arg >> refname;
    if ( action == "setdef" ) {
      if ( objectDefaults(i).find(name()) == objectDefaults(i).end() )
	return "Error: No default value defined for this object.";
      refname = objectDefaults(i)[name()];
    }
    IBPtr ip;
    if ( refname.size() && refname != "NULL") {
      Interfaced * ii = dynamic_cast<Interfaced *>(&i);
      if ( ii && ii->generator() )
	ip = ii->generator()->getObject<Interfaced>(refname);
      else
	ip = BaseRepository::TraceObject(refname);
    }
    set(i, ip);
    if ( action == "newdef" )
      objectDefaults(i)[name()] = get(i)? get(i)->fullName(): string("NULL");
  }
  else if ( action == "notdef" ) {
    if ( objectDefaults(i).find(name()) == objectDefaults(i).end() ) return "";
    string curr = get(i)? get(i)->fullName(): string("NULL");
    if ( curr == objectDefaults(i)[name()] ) return "";
    return curr + "  (" + objectDefaults(i)[name()] + ")";
  }
  else 
    throw InterExUnknown(*this, i);
  return ret.str();
}

string ReferenceBase::fullDescription(const InterfacedBase & ib) const {
  string ret = InterfaceBase::fullDescription(ib) +
    ( noNull()? "nevernull\n": "nullable\n" ) +
    ( defaultIfNull()? "defnull\n": "nodefnull\n" );
  tIBPtr ref = get(ib);
  if ( !ref ) ret += "NULL\n";
  else ret += ref->fullName() + '\n';
  return ret;
}

string ReferenceBase::type() const {
  return string("R<") + refClassName() + ">";
}

string ReferenceBase::doxygenType() const {
  return "Reference to objects of class " + refClassName();
}

void ReferenceBase::
rebind(InterfacedBase & i,  const TranslationMap & trans,
       const IVector & defs) const {
  if ( noRebind() ) return;
  IBPtr oldref = get(i);
  IBPtr newref;
  if ( oldref ) {
    newref = trans.translate(oldref);
    if ( !dependencySafe() && oldref && newref &&
	 newref->fullName() != oldref->fullName() )
      i.touch();
  } else if ( defaultIfNull() ) {
    try {
      for ( IVector::const_iterator p = defs.begin(); p != defs.end(); ++p ) {
	if ( *p && check(i, *p) ) {
	  newref = *p;
	  i.touch();
	  break;
	}
      }
    } catch ( ... ) {}
  }

  HoldFlag<> depflag(isDependencySafe);
  HoldFlag<> roflag(isReadOnly, false);
  set(i, newref, false);
}

RefExSetRefClass::RefExSetRefClass(const RefInterfaceBase & i,
				   const InterfacedBase & o, cIBPtr r) {
  theMessage << "Could not set the reference \"" << i.name()
	     << "\" for the object \"" << o.name() << "\" to the object \""
	     << (r? r->name().c_str(): "<NULL>")
	     << "\" because it is not of the required class ("
	     << i.refClassName() << ").";
  severity(setuperror);
}

RefExSetUnknown::RefExSetUnknown(const InterfaceBase & i,
				 const InterfacedBase & o, cIBPtr r) {
  theMessage << "Could not set the reference \"" << i.name()
	     << "\" for the object \"" << o.name() << "\" to the object \""
	     << (r? r->name().c_str(): "<NULL>")
	     << "\" because the set function threw an  unknown exception.";
  severity(setuperror);
}

RefExGetUnknown::RefExGetUnknown(const InterfaceBase & i,
				 const InterfacedBase & o) {
  theMessage << "Could not get the reference \"" << i.name()
	     << "\" for the object \"" << o.name()
	     << "\" because the get function threw an  unknown exception.";
  severity(setuperror);
}

RefExSetNoobj::RefExSetNoobj(const InterfaceBase & i, const InterfacedBase & o,
			     string n) {
  theMessage << "Could not set the reference \"" << i.name()
	     << "\" for the object \"" << o.name()
	     << "\" because the specified object \""
	     << n << "\" does not exist.";
  severity(setuperror);
}

RefExSetMessage::
RefExSetMessage(string ref, const InterfacedBase & o,
		const InterfacedBase & o2, string m) {
  theMessage << "Could not set the reference \"" << ref
	     << "\" for the object \"" << o.name()
	     << "\" to \"" << o2.name() << "\"." << m;
  severity(setuperror);
}