00001 #ifndef __cmt_awk_h__
00002 #define __cmt_awk_h__
00003
00004 #include "cmt_std.h"
00005 #include "cmt_string.h"
00006 #include "cmt_regexp.h"
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053 class Awk
00054 {
00055 public:
00056 typedef enum {ok, stopped, failed} condition;
00057 Awk ();
00058 virtual ~Awk ();
00059 condition run (const cmt_string& text, const cmt_string& pattern = "");
00060 condition run (const cmt_string& text, const cmt_regexp& expression);
00061 void stop ();
00062 void abort ();
00063 void allow_continuation ();
00064 condition get_last_condition () const;
00065
00066 virtual void begin ();
00067 virtual void filter (const cmt_string& line);
00068 virtual void end ();
00069
00070 void inc_line_number ();
00071
00072 protected:
00073 int m_line_number;
00074 condition m_condition;
00075 bool m_continuation_allowed;
00076 };
00077
00078 class FAwk : public Awk
00079 {
00080 public:
00081 condition run (const cmt_string& file_name, const cmt_string& pattern = "");
00082 condition run (const cmt_string& text, const cmt_regexp& expression);
00083 protected:
00084 cmt_string m_dir_name;
00085 cmt_string m_file_name;
00086 };
00087
00088 class PAwk : public Awk
00089 {
00090 public:
00091 condition run (const cmt_string& command, const cmt_string& pattern = "");
00092 condition run (const cmt_string& text, const cmt_regexp& expression);
00093 };
00094
00099 class PathScanner
00100 {
00101 public:
00102 class actor
00103 {
00104 public:
00105 virtual void run (const cmt_string& package,
00106 const cmt_string& version,
00107 const cmt_string& path)
00108 {
00109 }
00110 };
00111
00112 PathScanner ();
00113 bool scan_path (const cmt_string& path, actor& a);
00114 bool scan_package (const cmt_string& path, const cmt_string& package);
00115
00116 private:
00117 void scan_path (const cmt_string& path, int level, actor& a);
00118
00119 bool _running;
00120 int _level;
00121 };
00122
00123
00124 #endif