browser_utils.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: browser_utils.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:04:42  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: browser_utils.cpp,v 1000.1 2004/06/01 21:04:42 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Josh Cherry
  35.  *
  36.  * File Description:
  37.  *    Utilities for interacting with a web browser
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/utils/browser_utils.hpp>
  41. #include <gui/utils/app_popup.hpp>
  42. #include <gui/utils/file_deletion.hpp>
  43. #include <corelib/ncbireg.hpp>
  44. #include <corelib/ncbiapp.hpp>
  45. #include <corelib/ncbifile.hpp>
  46. #include <util/random_gen.hpp>
  47. BEGIN_NCBI_SCOPE
  48. /// Convenience function for html
  49. void CBrowserUtils::SendToBrowser(const string& html)
  50. {
  51.     SendToBrowser(html, "text/html");
  52. }
  53. /// Send data to a web browser with appropriate mime type.
  54. /// For now do this via a temp file.
  55. void CBrowserUtils::SendToBrowser(const string& body, const string& mime_type)
  56. {
  57.     // figure out a usable file name
  58.     string dir;
  59.     CNcbiApplication* app = CNcbiApplication::Instance();
  60.     _ASSERT(app);
  61.     CNcbiRegistry& app_registry = app->GetConfig();
  62.     dir = app_registry.Get("app", "popup_tmp_dir");
  63.     // this is a lame temporary solution
  64.     string fname;
  65.     string extension;
  66.     if (mime_type == "application/pdf") {
  67.         extension = ".pdf";
  68.     } else if (mime_type == "text/comma-separated-values") {
  69.         extension = ".csv";
  70.     } else if (mime_type == "text/plain") {
  71.         extension = ".txt";
  72.     } else {
  73.         extension = ".html";
  74.     }
  75.     // make the file name end in appropriate extension
  76.     CRandom r(time(0));
  77.     const int max_tries = 100;
  78.     int i;
  79.     for (i = 0;  i < max_tries;  i++) {
  80.         if (dir.empty()) {
  81.             fname = CFile::GetTmpName();
  82.         } else {
  83.             fname = CFile::GetTmpNameEx(dir);
  84.         }
  85.         fname += NStr::IntToString(r.GetRand()) + extension;
  86.         CFile file(fname);
  87.         if (!file.Exists()) {
  88.             break;
  89.         }
  90.     }
  91.     if (i == max_tries) {
  92.         LOG_POST(Error << "Couldn't create temporary file");
  93.         return;
  94.     }
  95.     CNcbiOfstream tmpfile(fname.c_str());
  96.     tmpfile << body;
  97.     tmpfile.close();
  98.     CDeleteAtExit::Add(fname);
  99. #ifdef NCBI_OS_MSWIN
  100.     // change '' to '/' for url
  101.     string tmp_str;
  102.     NStr::Replace(fname, "\", "/", tmp_str);
  103.     fname = tmp_str;
  104. #endif
  105.     CAppPopup::PopupURL(string("file:") + fname);
  106. }
  107. void CBrowserUtils::AddBaseTag(string& html, const string& url)
  108. {
  109.     string::size_type idx = NStr::FindNoCase(html, "</head>");
  110.     if (idx != string::npos) {
  111.         html.insert(idx, string("<base href="") + url + "">n");
  112.     }
  113. }
  114. END_NCBI_SCOPE
  115. /*
  116.  * ===========================================================================
  117.  * $Log: browser_utils.cpp,v $
  118.  * Revision 1000.1  2004/06/01 21:04:42  gouriano
  119.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  120.  *
  121.  * Revision 1.2  2004/05/21 22:27:50  gorelenk
  122.  * Added PCH ncbi_pch.hpp
  123.  *
  124.  * Revision 1.1  2003/11/20 20:58:20  jcherry
  125.  * Initial version
  126.  *
  127.  * ===========================================================================
  128.  */