home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 August / PCWorld_1999-08_cd.bin / dosutils / fips15c / source / calculat.cpp next >
C/C++ Source or Header  |  1997-12-20  |  4KB  |  149 lines

  1. /*
  2.     FIPS - the First nondestructive Interactive Partition Splitting program
  3.  
  4.     Module calculat.cpp
  5.  
  6.     RCS - Header:
  7.     $Header: c:/daten/fips/source/main/RCS/calculat.cpp 1.4 1995/01/19 00:00:49 schaefer Exp schaefer $
  8.  
  9.     Copyright (C) 1993 Arno Schaefer
  10.  
  11.     This program is free software; you can redistribute it and/or modify
  12.     it under the terms of the GNU General Public License as published by
  13.     the Free Software Foundation; either version 2 of the License, or
  14.     (at your option) any later version.
  15.  
  16.     This program is distributed in the hope that it will be useful,
  17.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.     GNU General Public License for more details.
  20.  
  21.     You should have received a copy of the GNU General Public License
  22.     along with this program; if not, write to the Free Software
  23.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  
  25.  
  26.     Report problems and direct all questions to:
  27.  
  28.     schaefer@rbg.informatik.th-darmstadt.de
  29. */
  30.  
  31. #include "hdstruct.h"
  32. #include "fipsspec.h"
  33.  
  34. /* ----------------------------------------------------------------------- */
  35. /* Some calculations                                                       */
  36. /* ----------------------------------------------------------------------- */
  37.  
  38. void fips_partition_table::calculate_new_root
  39. (
  40.     dword new_start_cylinder,
  41.     partition *partition,
  42.     const drive_geometry &geometry
  43. )
  44. {
  45.     for (int i = 0; i < 3; i++) if (!partition_info[i].system)
  46.     // move DOS partitions to the beginning of the partition table
  47.     {
  48.         for (int j = i + 1; j < 4; j++) if
  49.         (
  50.             (partition_info[j].system == 1)   ||
  51.             (partition_info[j].system == 4)   ||
  52.             (partition_info[j].system == 6)   ||
  53.             (partition_info[j].system == 0xB) ||
  54.             (partition_info[j].system == 0xC)
  55.         )
  56.         {
  57.             struct partition_info tmppart = partition_info[i];
  58.             partition_info[i] = partition_info[j];
  59.             partition_info[j] = tmppart;
  60.  
  61.             if (partition->number == j) partition->number = i;
  62.             break;
  63.         }
  64.     }
  65.  
  66.     int partition_no = partition->number;
  67.     partition->partition_info = &partition_info[partition_no];
  68.  
  69.     for (i=0;i<4;i++) if (!partition_info[i].system) break;
  70.     // search for first empty slot
  71.  
  72.     struct partition_info *newpart = &partition_info[i];
  73.     struct partition_info *oldpart = &partition_info[partition_no];
  74.  
  75.     newpart->bootable = 0;
  76.  
  77.     newpart->start_sector_abs =
  78.         new_start_cylinder *
  79.         geometry.heads *
  80.         geometry.sectors;
  81.  
  82.     newpart->no_of_sectors_abs =
  83.         oldpart->start_sector_abs +
  84.         oldpart->no_of_sectors_abs -
  85.         newpart->start_sector_abs;
  86.  
  87.     if (oldpart->system == 0xB || oldpart->system == 0xC)
  88.     {
  89.         newpart->system = oldpart->system;
  90.     }
  91.     else if
  92.     (
  93.         (newpart->no_of_sectors_abs > 0xffff) ||
  94.         (newpart->start_sector_abs > 0xffff)
  95.     )
  96.     {
  97.         newpart->system = 6;
  98.     }
  99.     else if
  100.     (
  101.         newpart->no_of_sectors_abs >= 20740
  102.     )
  103.     {
  104.         newpart->system = 4;
  105.     }
  106.     else
  107.     {
  108.         newpart->system = 1;
  109.     }
  110.  
  111.     oldpart->no_of_sectors_abs =
  112.         newpart->start_sector_abs -
  113.         oldpart->start_sector_abs;
  114.  
  115.     if (oldpart->system == 0xB || oldpart->system == 0xC)
  116.     {
  117.         /* FAT32, leave it alone */
  118.     }
  119.     else if
  120.     (
  121.         (oldpart->no_of_sectors_abs > 0xffff) ||
  122.         (oldpart->start_sector_abs > 0xffff)
  123.     )
  124.     {
  125.         oldpart->system = 6;
  126.     }
  127.     else
  128.     {
  129.         oldpart->system = 4;
  130.     }
  131.  
  132.     correct_physical (geometry);
  133. }
  134.  
  135.  
  136. void fips_bpb::calculate_new_boot (const partition_info &partition_info)
  137. {
  138.     if ((partition_info.no_of_sectors_abs > 0xffff) || (partition_info.start_sector_abs > 0xffff))
  139.     {
  140.         no_of_sectors = 0;
  141.         no_of_sectors_long = partition_info.no_of_sectors_abs;
  142.     }
  143.     else
  144.     {
  145.         no_of_sectors_long = 0;
  146.         no_of_sectors = partition_info.no_of_sectors_abs;
  147.     }
  148. }
  149.