FIPSSPEC.H
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:3k
源码类别:

操作系统开发

开发平台:

C/C++

  1. /*
  2. FIPS - the First nondestructive Interactive Partition Splitting program
  3. Module fipsspec.h
  4. RCS - Header:
  5. $Header: c:/daten/fips/source/main/RCS/fipsspec.h 1.4 1995/01/19 00:01:26 schaefer Exp schaefer $
  6. Copyright (C) 1993 Arno Schaefer
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. Report problems and direct all questions to:
  19. schaefer@rbg.informatik.th-darmstadt.de
  20. */
  21. #ifndef FIPSSPEC_H
  22. #define FIPSSPEC_H
  23. #include "logdr_st.h"
  24. #include "hdstruct.h"
  25. #include "primpart.h"
  26. #include "fat.h"
  27. #include "disk_io.h"
  28. class fips_bpb:public bios_parameter_block
  29. {
  30. public:
  31. void print (void);
  32. void calculate_new_boot (const partition_info &partition_info);
  33. };
  34. class fips_partition_table:public partition_table
  35. {
  36. public:
  37. void print (void);
  38. void calculate_new_root (dword new_start_cylinder,partition *partition,const drive_geometry &geometry);
  39. void correct_physical (const drive_geometry &geometry);
  40. int select (void);
  41. };
  42. class fips_harddrive:public harddrive
  43. {
  44. fips_partition_table pr_partition_table;
  45. protected:
  46. void get_geometry (void);
  47. public:
  48. void reset (void);
  49. class partition_table &partition_table() { return pr_partition_table; }
  50. void print_partition_table (void) { pr_partition_table.print(); }
  51. void calculate_new_root (dword new_start_cylinder, partition *partition)
  52. {
  53. pr_partition_table.calculate_new_root (new_start_cylinder,partition,geometry);
  54. }
  55. void check (boolean final_check);
  56. fips_harddrive (int number)
  57. :harddrive (number)
  58. {
  59. get_geometry ();
  60. // to write register info to debugfile
  61. }
  62. fips_harddrive (fips_harddrive &hd):harddrive (hd)
  63. {
  64. harddrive::operator= (hd);
  65. // in constructor of base class virtual functions are not yet
  66. // accessible => assign again so that partition_table() is
  67. // copied correctly
  68. }
  69. void operator= (fips_harddrive &hd)
  70. {
  71. harddrive::operator= (hd);
  72. }
  73. };
  74. class fips_logdrive_info:public logical_drive_info
  75. {
  76. public:
  77. void put_debug_info (void);
  78. };
  79. class fips_partition:public partition
  80. {
  81. fips_bpb pr_bpb;
  82. fips_logdrive_info pr_info;
  83. public:
  84. bios_parameter_block &bpb() { return pr_bpb; }
  85. logical_drive_info &info() { return pr_info; }
  86. void print_bpb (void) { pr_bpb.print(); }
  87. void write_info_debugfile (void) { pr_info.put_debug_info(); }
  88. void calculate_new_boot (void)
  89. {
  90. pr_bpb.calculate_new_boot (*partition_info);
  91. }
  92. void check (void);
  93. fips_partition (class fips_harddrive *drive,int number):partition(drive,number) {}
  94. dword min_cylinder (fat16 fat, drive_geometry geometry);
  95. boolean split (fips_harddrive hd);
  96. };
  97. #endif