//----------------------------------------------------------- // Copyright Christian Arnault LAL-Orsay CNRS // arnault@lal.in2p3.fr // See the complete license in cmt_license.txt "http://www.cecill.info". //----------------------------------------------------------- #ifndef __cmt_awk_h__ #define __cmt_awk_h__ #include "cmt_std.h" #include "cmt_string.h" #include "cmt_regexp.h" //------------------------------------------------ // // Emulation of the awk program. // // The run method reads the specified file, and applies the // virtual method onto each selected line. It returns // a condition (see below) // // o empty lines are ignored // o when the optional pattern is specified, only lines matching it // are considered. // // The virtual method is applied before any filter // The virtual method is applied onto each line // The virtual method is applied after all filters // // The condition (one of "ok", "stopped" or "failed") will be // generated if : // o everything run well (ok) // o the method is called (stopped) // o an error occurred or the method is called (failed) // // State variables are maintained for derived awk filters // // m_line_number the current line number (empty lines // are counted) // // m_continuation_allowed when true, take into account the // trailing backslashes, so as to // first accumulate continued lines // into one // // Derived classes: // ---------------- // // FAwk : scans a file // // State variables: // // m_dir_name the path of the currently read file // m_file_name the name of the currently read file // // PAwk : execute a command and scans its output // //------------------------------------------------ class Awk { public: typedef enum {ok, stopped, failed} condition; Awk (); virtual ~Awk (); condition run (const cmt_string& text, const cmt_string& pattern = ""); condition run (const cmt_string& text, const cmt_regexp& expression); void stop (); void abort (); void allow_continuation (); condition get_last_condition () const; virtual void begin (); virtual void filter (const cmt_string& line); virtual void end (); void inc_line_number (); protected: int m_line_number; condition m_condition; bool m_continuation_allowed; }; class FAwk : public Awk { public: condition run (const cmt_string& file_name, const cmt_string& pattern = ""); condition run (const cmt_string& text, const cmt_regexp& expression); protected: cmt_string m_dir_name; cmt_string m_file_name; }; class PAwk : public Awk { public: condition run (const cmt_string& command, const cmt_string& pattern = ""); condition run (const cmt_string& text, const cmt_regexp& expression); }; /** * This scans a path and looks for CMT packages. * Whenever it finds one, it applies the specified actor to it. */ class PathScanner { public: class actor { public: virtual void run (const cmt_string& package, const cmt_string& version, const cmt_string& path) { } }; PathScanner (); bool scan_path (const cmt_string& path, actor& a); bool scan_package (const cmt_string& path, const cmt_string& package); private: void scan_path (const cmt_string& path, int level, actor& a); bool _running; int _level; }; #endif