// --------------------------------------------------------------------------- // - Reserved.cpp - // - afnix:eng - reserved name class implementation - // --------------------------------------------------------------------------- // - This program is free software; you can redistribute it and/or modify - // - it provided that this copyright notice is kept intact. - // - - // - This program 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. In no event shall - // - the copyright holder be liable for any direct, indirect, incidental or - // - special damages arising in any way out of the use of this software. - // --------------------------------------------------------------------------- // - copyright (c) 1999-2007 amaury darsch - // --------------------------------------------------------------------------- #include "Engsid.hxx" #include "Nameset.hpp" #include "Integer.hpp" #include "Runnable.hpp" #include "Reserved.hpp" namespace afnix { // ------------------------------------------------------------------------- // - private section - // ------------------------------------------------------------------------- // this procedure returns a new reserved object for deserialization static Serial* mksob (void) { return new Reserved; } // register this lexical serial id static const t_byte SERIAL_ID = Serial::setsid (SERIAL_RESV_ID, mksob); // ------------------------------------------------------------------------- // - class section - // ------------------------------------------------------------------------- // create a default reserved name Reserved::Reserved (void) { d_quark = 0; d_lnum = 0; p_object = nilp; } // create a reserved with a name and a line number Reserved::Reserved (const String& name, const long lnum) { d_name = name; d_quark = name.toquark (); p_object = nilp; d_lnum = lnum; } // copy construct this reserved keyword Reserved::Reserved (const Reserved& that) { that.rdlock (); d_name = that.d_name; d_quark = that.d_quark; p_object = nilp; d_lnum = that.d_lnum; that.unlock (); } // destroy this reserved keyword Reserved::~Reserved (void) { Object::dref (p_object); } // return the class name String Reserved::repr (void) const { return "Reserved"; } // make this reserved name a shared object void Reserved::mksho (void) { if (p_shared != nilp) return; Object::mksho (); if (p_object != nilp) p_object->mksho (); } // return a literal representation String Reserved::toliteral (void) const { rdlock (); String result = d_name; unlock (); return result; } // return a string representation String Reserved::tostring (void) const { rdlock (); String result = d_name; unlock (); return result; } // return a clone of this reserved keyword Object* Reserved::clone (void) const { return new Reserved (*this); } // return the reserved serial code t_byte Reserved::serialid (void) const { return SERIAL_RESV_ID; } // serialize this reserved name void Reserved::wrstream (Output& os) const { rdlock (); Integer lnum (d_lnum); d_name.wrstream (os); lnum.wrstream (os); unlock (); } // deserialize this reserved name void Reserved::rdstream (Input& is) { wrlock (); String sval; Integer ival; sval.rdstream (is); ival.rdstream (is); d_name = sval; d_lnum = ival.tointeger (); d_quark = sval.toquark (); unlock (); } // return the reserved name quark long Reserved::toquark (void) const { rdlock (); long result = d_quark; unlock (); return result; } // return the reserved cached object Object* Reserved::getobj (void) const { rdlock (); Object* result = p_object; unlock (); return result; } // return the reserved name line number long Reserved::getlnum (void) const { rdlock (); long result = d_lnum; unlock (); return result; } // ------------------------------------------------------------------------- // - object section - // ------------------------------------------------------------------------- // evaluate this object in the current nameset Object* Reserved::eval (Runnable* robj, Nameset* nset) { rdlock (); try { // look for the cached object if (p_object == nilp) { p_object = Object::iref (nset->eval (robj, nset, d_quark)); } Object* result = p_object; robj->post (result); unlock (); return result; } catch (...) { unlock (); throw; } } }