Query.h
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:6k
源码类别:

书籍源码

开发平台:

Visual C++

  1. /*
  2.  * This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
  3.  * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
  4.  * copyright and warranty notices given in that book:
  5.  * 
  6.  * "Copyright (c) 2005 by Objectwrite, Inc., Jose Lajoie, and Barbara E. Moo."
  7.  * 
  8.  * 
  9.  * "The authors and publisher have taken care in the preparation of this book,
  10.  * but make no expressed or implied warranty of any kind and assume no
  11.  * responsibility for errors or omissions. No liability is assumed for
  12.  * incidental or consequential damages in connection with or arising out of the
  13.  * use of the information or programs contained herein."
  14.  * 
  15.  * Permission is granted for this code to be used for educational purposes in
  16.  * association with the book, given proper citation if and when posted or
  17.  * reproduced.Any commercial use of this code requires the explicit written
  18.  * permission of the publisher, Addison-Wesley Professional, a division of
  19.  * Pearson Education, Inc. Send your request for permission, stating clearly
  20.  * what code you would like to use, and in what specific way, to the following
  21.  * address: 
  22.  * 
  23.  *  Pearson Education, Inc.
  24.  *  Rights and Contracts Department
  25.  *  75 Arlington Street, Suite 300
  26.  *  Boston, MA 02216
  27.  *  Fax: (617) 848-7047
  28. */ 
  29. #ifndef QUERY_H
  30. #define QUERY_H
  31. #include "TextQuery.h"
  32. #include <string>
  33. #include <set>
  34. #include <iostream>
  35. #include <fstream>
  36. // private, abstract class acts as a base class for concrete query types
  37. class Query_base {
  38.     friend class Query;  
  39. protected:
  40.     typedef TextQuery::line_no line_no;
  41.     virtual ~Query_base() { }
  42. private:
  43.     // eval returns the |set| of lines that this Query matches
  44.     virtual std::set<line_no> 
  45.         eval(const TextQuery&) const = 0; 
  46.     // display prints the query
  47.     virtual std::ostream& 
  48.         display(std::ostream& = std::cout) const = 0;
  49. };
  50. // handle class to manage the Query_base inheritance hierarchy
  51. class Query {
  52.     // these operators need access to the Query_base* constructor
  53.     friend Query operator~(const Query &);
  54.     friend Query operator|(const Query&, const Query&);
  55.     friend Query operator&(const Query&, const Query&);
  56. public:
  57.     Query(const std::string&);  // builds a new WordQuery
  58.     // copy control to manage pointers and use counting
  59.     Query(const Query &c): q(c.q), use(c.use) { ++*use; }
  60.     ~Query() { decr_use(); }
  61.     Query& operator=(const Query&);
  62.     // interface functions: will call corresponding Query_base operations
  63.     std::set<TextQuery::line_no> 
  64.       eval(const TextQuery &t) const { return q->eval(t); }
  65.     std::ostream &display(std::ostream &os) const
  66.                             { return q->display(os); }
  67. private:
  68.     Query(Query_base *query): q(query), 
  69.                               use(new std::size_t(1)) { }
  70.     Query_base *q;
  71.     std::size_t *use;
  72.     void decr_use() 
  73.     { if (--*use == 0) { delete q; delete use; } }
  74. };
  75. inline Query& Query::operator=(const Query &rhs)
  76. {
  77.     ++*rhs.use; 
  78.     decr_use(); 
  79.     q = rhs.q; 
  80.     use = rhs.use; 
  81.     return *this; 
  82. }
  83. inline std::ostream& 
  84. operator<<(std::ostream &os, const Query &q)
  85. {
  86.     return q.display(os);
  87. }
  88. class WordQuery: public Query_base {
  89.     friend class Query; // Query uses the WordQuery constructor
  90.     WordQuery(const std::string &s): query_word(s) { }
  91.     // concrete class: WordQuery defines all inherited pure virtual functions
  92.     std::set<line_no> eval(const TextQuery &t) const
  93.                       { return t.run_query(query_word); }
  94.     std::ostream& display (std::ostream &os) const 
  95.                           { return os << query_word; }
  96.     std::string query_word;   // word for which to search 
  97. };
  98. inline
  99. Query::Query(const std::string &s): q(new WordQuery(s)),
  100.                                use(new std::size_t(1)) { }
  101. class NotQuery: public Query_base {
  102.     friend Query operator~(const Query &);
  103.     NotQuery(Query q): query(q) { }
  104.     // concrete class: NotQuery defines all inherited pure virtual functions
  105.     std::set<line_no> eval(const TextQuery&) const;
  106.     std::ostream& display(std::ostream &os) const
  107.           { return os << "~(" << query << ")"; }
  108.     const Query query;
  109. };
  110. class BinaryQuery: public Query_base {
  111. protected:
  112.     BinaryQuery(Query left, Query right, std::string op): 
  113.           lhs(left), rhs(right), oper(op) { }
  114.     // abstract class: BinaryQuery doesn't define eval 
  115.     std::ostream& display(std::ostream &os) const
  116.     { return os << "(" << lhs  << " " << oper << " " 
  117.                        << rhs << ")"; }
  118.     const Query lhs, rhs;   // right- and left-hand operands
  119.     const std::string oper; // name of the operator
  120. };
  121.     
  122. class AndQuery: public BinaryQuery {
  123.     friend Query operator&(const Query&, const Query&);
  124.     AndQuery(Query left, Query right): 
  125.                         BinaryQuery(left, right, "&") { }
  126.     // concrete class: AndQuery inherits display and defines remaining pure virtual
  127.     std::set<line_no> eval(const TextQuery&) const;
  128. };
  129. class OrQuery: public BinaryQuery {
  130.     friend Query operator|(const Query&, const Query&);
  131.     OrQuery(Query left, Query right): 
  132.                 BinaryQuery(left, right, "|") { }
  133.     // concrete class: OrQuery inherits display and defines remaining pure virtual
  134.     std::set<line_no> eval(const TextQuery&) const;
  135. };
  136. inline Query operator&(const Query &lhs, const Query &rhs)
  137. {
  138.     return new AndQuery(lhs, rhs);
  139. }
  140. inline Query operator|(const Query &lhs, const Query &rhs)
  141. {
  142.     return new OrQuery(lhs, rhs);
  143. }
  144. inline Query operator~(const Query &oper)
  145. {
  146.     return new NotQuery(oper);
  147. }
  148. std::ifstream& open_file(std::ifstream&, const std::string&);
  149. TextQuery build_textfile(const std::string&);
  150. bool get_word(std::string&);
  151. bool get_words(std::string&, std::string&);
  152. void print_results(const std::set<TextQuery::line_no>&, const TextQuery&);
  153. #endif