OpenCores
URL https://opencores.org/ocsvn/w11/w11/trunk

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.6/] [tools/] [src/] [librtcltools/] [RtclClassBase.cpp] - Rev 24

Compare with Previous | Blame | View Log

// $Id: RtclClassBase.cpp 488 2013-02-16 18:49:47Z mueller $
//
// Copyright 2011-2013 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
// This program is free software; you may redistribute 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 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.  See the GNU General Public License
// for complete details.
// 
// Revision History: 
// Date         Rev Version  Comment
// 2013-02-10   485   1.0.3  add static const defs
// 2013-01-13   474   1.0.2  TclClassCmd(): check for existing Rtclproxy names
// 2011-03-05   366   1.0.1  use AppendResultNewLines() in exception catcher
// 2011-02-20   363   1.0    Initial version
// 2011-02-11   360   0.1    First draft
// ---------------------------------------------------------------------------
 
/*!
  \file
  \version $Id: RtclClassBase.cpp 488 2013-02-16 18:49:47Z mueller $
  \brief   Implemenation of RtclClassBase.
*/
 
#include <string.h>
 
#include <stdexcept>
 
#include "RtclClassBase.hpp"
#include "RtclContext.hpp"
#include "RtclOPtr.hpp"
#include "Rtcl.hpp"
 
using namespace std;
 
/*!
  \class Retro::RtclClassBase
  \brief FIXME_docs
*/
 
// all method definitions in namespace Retro
namespace Retro {
 
//------------------------------------------+-----------------------------------
// constants definitions
 
const int RtclClassBase::kOK;
const int RtclClassBase::kERR;
 
//------------------------------------------+-----------------------------------
//! Default constructor
 
RtclClassBase::RtclClassBase(const std::string& type)
  : fType(type),
    fInterp(0)
{}
 
//------------------------------------------+-----------------------------------
//! Destructor
 
RtclClassBase::~RtclClassBase()
{
  if (fInterp) RtclContext::Find(fInterp).UnRegisterClass(this);
}
 
//------------------------------------------+-----------------------------------
//! FIXME_docs
 
void RtclClassBase::CreateClassCmd(Tcl_Interp* interp, const char* name)
{
  fInterp = interp;
  fCmdToken = 
    Tcl_CreateObjCommand(interp, name, ThunkTclClassCmd, (ClientData) this, 
                         (Tcl_CmdDeleteProc *) ThunkTclCmdDeleteProc);
  RtclContext::Find(interp).RegisterClass(this);
  Tcl_CreateExitHandler((Tcl_ExitProc*) ThunkTclExitProc, (ClientData) this);
  return;
}
 
//------------------------------------------+-----------------------------------
//! FIXME_docs
 
int RtclClassBase::TclClassCmd(Tcl_Interp* interp, int objc, 
                                      Tcl_Obj* const objv[])
{
  // no args -> lists existing proxies
  if (objc == 1) {
    return ClassCmdList(interp);
  }
 
  // 2nd arg -delete -> delete proxy
  const char* name = Tcl_GetString(objv[1]);
  if (objc == 3 && strcmp(Tcl_GetString(objv[2]), "-delete")==0) {
    return ClassCmdDelete(interp, name);
  }
 
  // check if proxy of given name already existing
  RtclProxyBase* pprox = RtclContext::Find(interp).FindProxy("",name);
  if (pprox) {
    Tcl_AppendResult(interp, "-E: command name '", name, 
                     "' exists already as RtclProxy of type '", 
                     pprox->Type().c_str(), "'", NULL);
    return kERR;
 
  }
 
  // finally create new proxy
  return ClassCmdCreate(interp, objc, objv);
}
 
//------------------------------------------+-----------------------------------
//! FIXME_docs
 
int RtclClassBase::ClassCmdList(Tcl_Interp* interp)
{
  std::vector<RtclProxyBase*> list;
  RtclContext::Find(interp).ListProxy(list, Type());
  RtclOPtr rlist(Tcl_NewListObj(0, NULL));
 
  for (size_t i=0; i<list.size(); i++) {
    const char* cmdname = Tcl_GetCommandName(interp, list[i]->Token());
    RtclOPtr rval(Tcl_NewStringObj(cmdname, -1));
    if (Tcl_ListObjAppendElement(interp, rlist, rval) != kOK) return kERR;
  }
 
  Tcl_SetObjResult(interp, rlist);
 
  return kOK;
}
 
//------------------------------------------+-----------------------------------
//! FIXME_docs
 
int RtclClassBase::ClassCmdDelete(Tcl_Interp* interp, const char* name)
{
  Tcl_CmdInfo cinfo;
  if (Tcl_GetCommandInfo(interp, name, &cinfo) == 0) {
    Tcl_AppendResult(interp, "-E: unknown command name '", name, "'", NULL);
    return kERR;
  }
 
  RtclContext& cntx = RtclContext::Find(interp);
  if (!cntx.CheckProxy((RtclProxyBase*) cinfo.objClientData)) {
    Tcl_AppendResult(interp, "-E: command '", name, "' is not a RtclProxy", 
                     NULL);
    return kERR;
  }
  if (!cntx.CheckProxy((RtclProxyBase*) cinfo.objClientData, Type())) {
    Tcl_AppendResult(interp, "-E: command '", name, 
                     "' is not a RtclProxy of type '", 
                     Type().c_str(), "'", NULL);
    return kERR;
  }
 
  int irc = Tcl_DeleteCommand(interp, name);
  if (irc != kOK) Tcl_AppendResult(interp, "-E: failed to delete '", name, 
                                   "'", NULL);
  return irc;
}
 
//------------------------------------------+-----------------------------------
//! FIXME_docs
 
int RtclClassBase::ThunkTclClassCmd(ClientData cdata, Tcl_Interp* interp, 
                                    int objc, Tcl_Obj* const objv[])
{
  if (!cdata) {
    Tcl_AppendResult(interp, "-E: BUG! ThunkTclClassCmd called with cdata == 0",
                     NULL);
    return kERR;
  }
 
  try {
    return ((RtclClassBase*) cdata)->TclClassCmd(interp, objc, objv);
  } catch (exception& e) {
    Rtcl::AppendResultNewLines(interp);
    Tcl_AppendResult(interp, "-E: exception caught in ThunkTclClassCmd: '", 
                     e.what(), "'", NULL);
  }
  return kERR;
}
 
//------------------------------------------+-----------------------------------
//! FIXME_docs
 
void RtclClassBase::ThunkTclCmdDeleteProc(ClientData cdata)
{
  Tcl_DeleteExitHandler((Tcl_ExitProc*) ThunkTclExitProc, cdata);
  delete ((RtclClassBase*) cdata);
  return;
}
 
//------------------------------------------+-----------------------------------
//! FIXME_docs
 
void RtclClassBase::ThunkTclExitProc(ClientData cdata)
{
  delete ((RtclClassBase*) cdata);
  return;
}
 
} // end namespace Retro
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.