flat_file_generator.cpp

来自「ncbi源码」· C++ 代码 · 共 304 行

CPP
304
字号
/* * =========================================================================== * PRODUCTION $Log: flat_file_generator.cpp,v $ * PRODUCTION Revision 1000.1  2004/06/01 19:44:16  gouriano * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10 * PRODUCTION * =========================================================================== *//*  $Id: flat_file_generator.cpp,v 1000.1 2004/06/01 19:44:16 gouriano Exp $* ===========================================================================**                            PUBLIC DOMAIN NOTICE*               National Center for Biotechnology Information**  This software/database is a "United States Government Work" under the*  terms of the United States Copyright Act.  It was written as part of*  the author's official duties as a United States Government employee and*  thus cannot be copyrighted.  This software/database is freely available*  to the public for use. The National Library of Medicine and the U.S.*  Government have not placed any restriction on its use or reproduction.**  Although all reasonable efforts have been taken to ensure the accuracy*  and reliability of the software and data, the NLM and the U.S.*  Government do not and cannot warrant the performance or results that*  may be obtained by using this software or data. The NLM and the U.S.*  Government disclaim all warranties, express or implied, including*  warranties of performance, merchantability or fitness for any particular*  purpose.**  Please cite the author in any work or product based on this material.** ===========================================================================** Author:  Mati Shomrat** File Description:*   User interface for generating flat file reports from ASN.1*   */#include <ncbi_pch.hpp>#include <corelib/ncbistd.hpp>#include <corelib/ncbiobj.hpp>#include <objects/seqset/Seq_entry.hpp>#include <objects/submit/Seq_submit.hpp>#include <objects/seqloc/Seq_loc.hpp>#include <objects/seqloc/Seq_id.hpp>#include <objmgr/scope.hpp>#include <objmgr/bioseq_handle.hpp>#include <objmgr/seq_entry_handle.hpp>#include <objtools/format/flat_file_generator.hpp>#include <objtools/format/text_ostream.hpp>#include <objtools/format/item_formatter.hpp>#include <objtools/format/ostream_text_ostream.hpp>#include <objtools/format/format_item_ostream.hpp>#include <objtools/format/gather_items.hpp>#include <objtools/format/context.hpp>#include <objtools/format/flat_expt.hpp>BEGIN_NCBI_SCOPEBEGIN_SCOPE(objects)////////////////////////////////////////////////////////////////////////////////// PUBLIC// constructorCFlatFileGenerator::CFlatFileGenerator(const CFlatFileConfig& cfg) :    m_Ctx(new CFlatFileContext(cfg)){     if ( !m_Ctx ) {         NCBI_THROW(CFlatException, eInternal, "Unable to initialize context");     }}CFlatFileGenerator::CFlatFileGenerator(CFlatFileConfig::TFormat format, CFlatFileConfig::TMode   mode, CFlatFileConfig::TStyle  style, CFlatFileConfig::TFlags  flags, CFlatFileConfig::TView   view) :    m_Ctx(new CFlatFileContext(CFlatFileConfig(format, mode, style, flags, view))){    if ( !m_Ctx ) {       NCBI_THROW(CFlatException, eInternal, "Unable to initialize context");    }}// destructorCFlatFileGenerator::~CFlatFileGenerator(void){}// Set annotation selector for feature gatheringSAnnotSelector& CFlatFileGenerator::SetAnnotSelector(void){    return m_Ctx->SetAnnotSelector();}// Generate a flat-file report for a Seq-entryvoid CFlatFileGenerator::Generate(const CSeq_entry_Handle& entry, CFlatItemOStream& item_os){    _ASSERT(entry  &&  entry.Which() != CSeq_entry::e_not_set);    m_Ctx->SetEntry(entry);    CFlatFileConfig::TFormat format = m_Ctx->GetConfig().GetFormat();    CRef<CFlatItemFormatter> formatter(CFlatItemFormatter::New(format));    if ( !formatter ) {        NCBI_THROW(CFlatException, eInternal, "Unable to initialize formatter");    }    formatter->SetContext(*m_Ctx);    item_os.SetFormatter(formatter);    CRef<CFlatGatherer> gatherer(CFlatGatherer::New(format));    if ( !gatherer ) {        NCBI_THROW(CFlatException, eInternal, "Unable to initialize gatherer");    }    gatherer->Gather(*m_Ctx, item_os);}void CFlatFileGenerator::Generate(const CSeq_submit& submit, CScope& scope, CFlatItemOStream& item_os){    _ASSERT(submit.CanGetData());    _ASSERT(submit.CanGetSub());    _ASSERT(submit.GetData().IsEntrys());    _ASSERT(!submit.GetData().GetEntrys().empty());    // NB: though the spec specifies a submission may contain multiple entries    // this is not the case. A submission should only have a single Top-level    // Seq-entry    CConstRef<CSeq_entry> e(submit.GetData().GetEntrys().front());    if ( e ) {        CSeq_entry_Handle entry = scope.GetSeq_entryHandle(*e);        m_Ctx->SetSubmit(submit.GetSub());        Generate(entry, item_os);    }}void CFlatFileGenerator::Generate(const CSeq_loc& loc, CScope& scope, CFlatItemOStream& item_os){    if ( !loc.IsWhole()  &&  !loc.IsInt() ) {        NCBI_THROW(CFlatException, eInvalidParam,             "locations must be an interval on a bioseq (or whole)");    }    CBioseq_Handle bsh = scope.GetBioseqHandle(loc);    if ( !bsh ) {        NCBI_THROW(CFlatException, eInvalidParam, "location not in scope");    }    CSeq_entry_Handle entry = bsh.GetParentEntry();    if ( !entry ) {        NCBI_THROW(CFlatException, eInvalidParam, "Id not in scope");    }    CRef<CSeq_loc> location(new CSeq_loc);    location->Assign(loc);    m_Ctx->SetLocation(location);    Generate(entry, item_os);}void CFlatFileGenerator::Generate(const CSeq_id& id, const TRange& range, ENa_strand strand, CScope& scope, CFlatItemOStream& item_os){    CRef<CSeq_id> id2(new CSeq_id);    id2->Assign(id);    CRef<CSeq_loc> loc;    if ( range.IsWhole() ) {        loc.Reset(new CSeq_loc);        loc->SetWhole(*id2);    } else {        loc.Reset(new CSeq_loc(*id2, range.GetFrom(), range.GetTo(), strand));    }    if ( loc ) {        Generate(*loc, scope, item_os);    }}void CFlatFileGenerator::Generate(const CSeq_submit& submit, CScope& scope, CNcbiOstream& os){    CRef<CFlatItemOStream>         item_os(new CFormatItemOStream(new COStreamTextOStream(os)));    Generate(submit, scope, *item_os);}void CFlatFileGenerator::Generate(const CSeq_entry_Handle& entry, CNcbiOstream& os){    CRef<CFlatItemOStream>         item_os(new CFormatItemOStream(new COStreamTextOStream(os)));    Generate(entry, *item_os);}void CFlatFileGenerator::Generate(const CSeq_loc& loc, CScope& scope, CNcbiOstream& os){    CRef<CFlatItemOStream>         item_os(new CFormatItemOStream(new COStreamTextOStream(os)));    Generate(loc, scope, *item_os);}void CFlatFileGenerator::Generate(const CSeq_id& id, const TRange& range,  ENa_strand strand, CScope& scope, CNcbiOstream& os){    CRef<CFlatItemOStream>         item_os(new CFormatItemOStream(new COStreamTextOStream(os)));    Generate(id, range, strand, scope, *item_os);}void CFlatFileGenerator::Reset(void){    m_Ctx->Reset();}END_SCOPE(objects)END_NCBI_SCOPE/** ===========================================================================** $Log: flat_file_generator.cpp,v $* Revision 1000.1  2004/06/01 19:44:16  gouriano* PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10** Revision 1.10  2004/05/21 21:42:54  gorelenk* Added PCH ncbi_pch.hpp** Revision 1.9  2004/05/19 14:47:56  shomrat* + Reset()** Revision 1.8  2004/04/22 16:02:53  shomrat* Changed in API** Revision 1.7  2004/03/31 17:18:24  shomrat* name changes** Revision 1.6  2004/03/25 20:38:17  shomrat* Use handles** Revision 1.5  2004/02/11 22:52:06  shomrat* allow user to specify selector for feature gathering** Revision 1.4  2004/02/11 16:58:28  shomrat* bug fix** Revision 1.3  2004/01/14 16:13:11  shomrat* Added GFF foramt; changed internal representation** Revision 1.2  2003/12/18 17:43:33  shomrat* context.hpp moved** Revision 1.1  2003/12/17 20:21:05  shomrat* Initial Revision (adapted from flat lib)*** ===========================================================================*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?