Main Page | Class Hierarchy | Class List | Directories | File List | Class Members | Related Pages

hk_database.h

00001 // ****************************************************************************
00002 // copyright (c) 2000-2005 Horst Knorr <hk_classes@knoda.org>
00003 // This file is part of the hk_classes library.
00004 // This file may be distributed and/or modified under the terms of the
00005 // GNU Library Public License version 2 as published by the Free Software
00006 // Foundation and appearing in the file COPYING included in the
00007 // packaging of this file.
00008 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
00009 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
00010 // ****************************************************************************
00011 #ifndef HK_DATABASE
00012 #define HK_DATABASE
00013 #include <hk_class.h>
00014 #include <list>
00015 #include <vector>
00016 #include <algorithm>
00017 #include "hk_presentation.h"
00018 #include "hk_url.h"
00019 using namespace std;
00020 
00021 class hk_connection;
00022 class hk_datasource;
00023 class hk_data;
00024 class hk_dbvisible;
00025 class hk_actionquery;
00026 class hk_form;
00027 class hk_report;
00028 class hk_dsmodevisible;
00029 class hk_databaseprivate;
00030 class hk_dsquery;
00031 class hk_dstable;
00032 
00033 typedef hk_form* newform_type(hk_database*,hk_class*);
00034 typedef hk_report* newreport_type(hk_database*,hk_class*);
00035 typedef hk_dstable* newtable_type(hk_class*);
00036 typedef hk_dsquery* newquery_type(hk_class*);
00037 
00048 class hk_database:public hk_class
00049 {
00050     friend class hk_datasource;
00051     friend class hk_actionquery;
00052     friend class hk_connection;
00053     friend class hk_dbvisible;
00054     friend class hk_presentation;
00055     public:
00056         virtual     ~hk_database();
00057 
00061 virtual bool    set_name(const hk_string& n);
00062         hk_string   name(void);
00063 
00074         vector<hk_string>* tablelist(bool with_systemtable=false);
00075 
00076         vector<hk_string>* viewlist();
00077         vector<hk_string>* tableviewlist(bool with_systemtable=false);
00078 
00079 
00083         vector<hk_string>* querylist(void);
00087         vector<hk_string>* formlist(void);
00091         vector<hk_string>* reportlist(void);
00096         hk_datasource* new_table(const hk_string& name="",hk_presentation* p=NULL);
00102         hk_datasource* new_resultquery(hk_presentation* p=NULL);
00108         hk_actionquery*   new_actionquery(void);
00109 
00110 
00111         hk_datasource* new_view(const hk_string& name="",hk_presentation* p=NULL);
00112 
00121         hk_datasource*  load_datasource(const hk_string& name,datasourcetype dt=dt_table,hk_presentation* p=NULL);
00122 
00127         bool    delete_table(const hk_string& table,enum_interaction x=interactive);
00128         bool    delete_view(const hk_string& view, enum_interaction x=interactive);
00132         bool    table_exists(const hk_string& tablename);
00133         bool    view_exists(const hk_string& viewname);
00134         bool    query_exists(const hk_string& queryname);
00135         bool    form_exists(const hk_string& formname);
00136         bool    report_exists(const hk_string& reportname);
00137 
00141         hk_connection*  connection(void)const{return p_connection;}
00150         ofstream* savestream(const hk_string&name,filetype type,bool ask_before_overwrite=true );
00151         ofstream* savestream(const hk_string&name,filetype type,bool ask_before_overwrite,bool with_header,bool ask_for_new_name=false );
00152     STRINGSTREAM* savestringstream(filetype type);
00153 
00154     STRINGSTREAM* savestringstream(filetype type,bool with_header);
00155 
00156 
00157 
00164         bool  delete_file(const hk_string& name,filetype type,enum_interaction x=interactive);
00172         hk_presentation* existing_presentation(const hk_string& name, hk_presentation::enum_presentationtype t);
00173         hk_form* existing_form(const hk_string name);
00174         hk_report* existing_report(const hk_string name);
00175 
00182         void save(const hk_string& statement,const hk_string& name,filetype type,bool ask_before_overwrite=true,bool ask_for_new_name=false );
00189         hk_string load(const hk_string& name,filetype type);
00190 
00195         hk_string database_path(void);
00196         hk_string fileendings(filetype e);
00197         hk_string fileendings(objecttype e);
00210         bool copy_table(hk_datasource* fromdatasource,bool schema_and_data,bool replacetable, bool ask,progress_dialogtype* progressdialog=NULL);
00211         bool copy_view(hk_datasource* fromdatasource,progress_dialogtype* progressdialog=NULL,const hk_string& newname="");
00212 
00213 hk_form* new_formvisible(void);
00214 hk_form* new_dialogformvisible(void);
00215 hk_report* new_reportvisible(void);
00216 hk_dstable* new_tablevisible(void);
00217 hk_dsquery* new_queryvisible(void);
00218 static void     set_new_formvisiblefunction(newform_type*);
00219 static void     set_new_dialogformvisiblefunction(newform_type*);
00220 static void     set_new_reportvisiblefunction(newreport_type*);
00221 static void     set_new_tablevisiblefunction(newtable_type*);
00222 static void     set_new_queryvisiblefunction(newquery_type*);
00223 void set_usewidgetparent(hk_class*);
00230 bool rename_table(const hk_string& originalname, const hk_string& newname,enum_interaction x=interactive);
00238 bool rename_file(const hk_string& originalname, const hk_string& newname,filetype type,enum_interaction x=interactive);
00243 void disable(void);
00244 
00245 bool store_connectionfile(const hk_url& url, bool store_password=false);
00246 
00247 
00248 enum enum_storagemode {central,local};
00249 void set_storagemode(filetype, enum_storagemode load,enum_storagemode store);
00250 enum_storagemode storagemode(filetype);
00251 enum_storagemode loadmode(filetype);
00252 bool create_centralstoragetable(void);
00253 bool has_centralstoragetable(void);
00254 hk_string load_local(const hk_string& name,filetype type);
00255 hk_string load_central(const hk_string& name,filetype type);
00256 void save_local(const hk_string& statement,const hk_string& name,filetype type,bool ask_before_overwrite,bool ask_for_new_name);
00257 void save_central(const hk_string& statement,const hk_string& name,filetype type,bool ask_before_overwrite,bool ask_for_new_name);
00258 bool  delete_localfile(const hk_string& name,filetype type,enum_interaction x=interactive);
00259 bool  delete_centralfile(const hk_string& name,filetype type,enum_interaction x=interactive);
00260 vector<hk_string>* filelist(filetype type);
00261 vector<hk_string>* local_filelist(filetype type);
00262 vector<hk_string>* central_filelist(filetype type);
00263 
00264 void save_configuration(void);
00265 list <hk_presentation*>* presentationlist() const;
00266 
00267 
00268     protected:
00269         hk_database(hk_connection* c);
00270         bool    select_db( const hk_string& newname);
00271         void inform_datasources_before_closing(void);
00275         virtual  void driver_specific_tablelist(void){}
00276         virtual  void driver_specific_viewlist(void){}
00277         virtual hk_datasource* driver_specific_new_table(hk_presentation* p);
00278         virtual hk_datasource* driver_specific_new_view(hk_presentation* p);
00279         virtual hk_datasource* driver_specific_new_resultquery(hk_presentation* p);
00280         virtual hk_actionquery*   driver_specific_new_actionquery(void){return NULL;}
00281         virtual bool    driver_specific_rename_table(const hk_string& oldname,const hk_string& newname){return false;}
00282         virtual bool driver_specific_select_db(void){return false;}
00283         virtual void driver_specific_set_name(void){}
00284         hk_connection* p_connection;
00285         void    ds_remove(hk_data* ds);
00286         virtual void connection_connected(void);
00287         virtual void connection_disconnected(void);
00288 
00289         vector<hk_string> p_tablelist;
00290         vector<hk_string> p_viewlist;
00291         vector<hk_string> p_tableviewlist;
00292         void    dbvisible_add(hk_dbvisible* v);
00293         void    dbvisible_remove(hk_dbvisible* v);
00294         void    clear_visiblelist(void);
00295         virtual void before_source_vanishes(void);
00296         void    presentation_add(hk_presentation* p);
00297         void    presentation_remove(hk_presentation* p);
00298         void load_configuration(void);
00299         virtual void savedata(ostream& s);
00300         virtual void loaddata(const hk_string& definition);
00301         hk_url p_url;
00302     private:
00303         void clear_presentationlist();
00304         void mark_datasources_as_not_handled(void);
00305         void mark_visible_objects_as_not_handled(void);
00306         void inform_datasources_filelist_changes(listtype type);
00307         hk_databaseprivate* p_private;
00308         static newform_type *p_newformfunction;
00309         static newform_type *p_newdialogformfunction;
00310         static newreport_type *p_newreportfunction;
00311         static newtable_type *p_newtablefunction;
00312         static newquery_type *p_newqueryfunction;
00313         void save_storage(ostream&,filetype);
00314         void load_storage(const hk_string&,filetype);
00315 
00316 
00317 } ;
00318 #endif

Generated on Tue Sep 13 00:58:19 2005 for Databaseconnectionclasses by  doxygen 1.4.4