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

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.7/] [tools/] [src/] [librlink/] [RlinkPortFactory.cpp] - Diff between revs 19 and 21

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 19 Rev 21
// $Id: RlinkPortFactory.cpp 492 2013-02-24 22:14:47Z mueller $
// $Id: RlinkPortFactory.cpp 516 2013-05-05 21:24:52Z mueller $
//
//
// Copyright 2011-2013 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
// 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
// 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
// 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.
// 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
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for complete details.
// for complete details.
// 
// 
// Revision History: 
// Revision History: 
// Date         Rev Version  Comment
// Date         Rev Version  Comment
// 2013-02-23   492   1.2    use RparseUrl
// 2013-02-23   492   1.2    use RparseUrl
// 2012-12-26   465   1.1    add cuff: support
// 2012-12-26   465   1.1    add cuff: support
// 2011-03-27   374   1.0    Initial version
// 2011-03-27   374   1.0    Initial version
// 2011-01-15   356   0.1    First draft
// 2011-01-15   356   0.1    First draft
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
 
 
/*!
/*!
  \file
  \file
  \version $Id: RlinkPortFactory.cpp 492 2013-02-24 22:14:47Z mueller $
  \version $Id: RlinkPortFactory.cpp 516 2013-05-05 21:24:52Z mueller $
  \brief   Implemenation of RlinkPortFactory.
  \brief   Implemenation of RlinkPortFactory.
*/
*/
 
 
#include "librtools/RparseUrl.hpp"
#include "librtools/RparseUrl.hpp"
 
 
#include "RlinkPortFifo.hpp"
#include "RlinkPortFifo.hpp"
#include "RlinkPortTerm.hpp"
#include "RlinkPortTerm.hpp"
#include "RlinkPortCuff.hpp"
#include "RlinkPortCuff.hpp"
 
 
#include "RlinkPortFactory.hpp"
#include "RlinkPortFactory.hpp"
 
 
using namespace std;
using namespace std;
 
 
/*!
/*!
  \class Retro::RlinkPortFactory
  \class Retro::RlinkPortFactory
  \brief FIXME_docs
  \brief FIXME_docs
*/
*/
 
 
// all method definitions in namespace Retro
// all method definitions in namespace Retro
namespace Retro {
namespace Retro {
 
 
//------------------------------------------+-----------------------------------
//------------------------------------------+-----------------------------------
//! FIXME_docs
//! FIXME_docs
 
 
RlinkPort* Retro::RlinkPortFactory::New(const std::string& url, RerrMsg& emsg)
RlinkPort* Retro::RlinkPortFactory::New(const std::string& url, RerrMsg& emsg)
{
{
  string scheme = RparseUrl::FindScheme(url);
  string scheme = RparseUrl::FindScheme(url);
 
 
  if (scheme.length() == 0) {
  if (scheme.length() == 0) {
    emsg.Init("RlinkPortFactory::New()",
    emsg.Init("RlinkPortFactory::New()",
              string("no scheme specified in url '" + url + string("'")));
              string("no scheme specified in url '" + url + "'"));
    return 0;
    return 0;
  }
  }
 
 
  if        (scheme == "fifo") {
  if        (scheme == "fifo") {
    return new RlinkPortFifo();
    return new RlinkPortFifo();
  } else if (scheme == "term") {
  } else if (scheme == "term") {
    return new RlinkPortTerm();
    return new RlinkPortTerm();
  } else if (scheme == "cuff") {
  } else if (scheme == "cuff") {
    return new RlinkPortCuff();
    return new RlinkPortCuff();
  }
  }
 
 
  emsg.Init("RlinkPortFactory::New()", string("unknown scheme: ") + scheme);
  emsg.Init("RlinkPortFactory::New()", string("unknown scheme: ") + scheme);
  return 0;
  return 0;
}
}
 
 
//------------------------------------------+-----------------------------------
//------------------------------------------+-----------------------------------
//! FIXME_docs
//! FIXME_docs
 
 
RlinkPort* RlinkPortFactory::Open(const std::string& url, RerrMsg& emsg)
RlinkPort* RlinkPortFactory::Open(const std::string& url, RerrMsg& emsg)
{
{
  RlinkPort* pport = New(url, emsg);
  RlinkPort* pport = New(url, emsg);
  if (pport == 0) return 0;
  if (pport == 0) return 0;
 
 
  if (pport->Open(url, emsg)) return pport;
  if (pport->Open(url, emsg)) return pport;
  delete pport;
  delete pport;
  return 0;
  return 0;
}
}
 
 
} // end namespace Retro
} // end namespace Retro
 
 

powered by: WebSVN 2.1.0

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