3329a14389162a70772e74d13e3cdb9e101efd37
[www.jankratochvil.net.git] / project / captive / doc / TODO.html.pl
1 #! /usr/bin/perl
2
3 # $Id$
4 # Captive project doc TODO page Perl template.
5 # Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
6
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; exactly version 2 of June 1991 is required
10
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
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 package project::captive::doc::TODO;
22 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
23 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
24 our $CVS_ID=q$Id$;
25 use strict;
26 use warnings;
27
28 BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
29 use My::Web;
30 require CGI;
31 BEGIN { Wuse 'project::captive::doc::Macros'; }
32
33
34 project::captive::doc::Macros->init(
35                 "__PACKAGE__"=>__PACKAGE__,
36                 "title"=>'Captive NTFS Developer Documentation: TODO',
37                 "rel_prev"=>'CallType.html.pl',
38                 "rel_next"=>'Related.html.pl',
39                 );
40
41
42 print <<"HERE";
43
44
45 <a name="todo_fsck"><h1>TODO: Fsck of NTFS</h1></a>
46
47         <p>Currently this project does not support checking of data structures
48         of NTFS volume as being provided by <span class="command">chkdsk.exe</span>
49         in W32 environment and <span class="command">fsck</span> in UNIX OS.</p>
50
51         <p>W32 has its disk checking functionality split to
52         <span class="fname">untfs.dll</span> W32 userland library.
53         according to
54         @{[ a_href 'http://www.sysinternals.com/ntw2k/source/fmifs.shtml',
55                         'Chkdskx and Formatx' ]}
56         by @{[ a_href 'http://www.sysinternals.com/aboutus.shtml',
57                         'Mark Russinovich' ]}.
58
59         <p>I&nbsp;assume its execution falls completely
60         @{[ a_href 'Architecture.html.pl#existing_emulation','out of scope' ]}
61         of this project as it is W32 userland.</p>
62
63         <p>This possibility was not yet investigated in any way.</p>
64
65
66 <a name="todo_surprise"><h1>TODO: NTFS Support for
67                 <span class="productname">@{[ a_href '/project/surprise/','Partition Surprise' ]}</span></h1></a>
68
69         <p>There already exists
70         <span class="productname">@{[ a_href 'http://mlf.linux.rulez.org/mlf/ezaz/ntfsresize.html','ntfsresize' ]}</span>
71         using reverse-engineered data structures information. According to the
72         usage count it appears
73         <span class="productname">@{[ a_href 'http://mlf.linux.rulez.org/mlf/ezaz/ntfsresize.html','ntfsresize' ]}</span>
74         is safe.</p>
75
76         <p>Despite it
77         <span class="productname">@{[ a_href 'http://mlf.linux.rulez.org/mlf/ezaz/ntfsresize.html','ntfsresize' ]}</span>
78         still has some usage limitations such as no possibility to shrink the partition to less
79         than its half size. There exists technically interesting possibility to use Captive NTFS access for
80         <span class="productname">@{[ a_href '/project/surprise/','Partition Surprise' ]}</span>
81         as it is the only partition manager capable of disk operations
82         by using just the original W32 filesystem driver by full rebuild of the
83         filesystem metadata.
84         Almost no file data blocks would be needed to move even when using these generic W32 filesyste drivers
85         as W32 supports <span class="constant">FSCTL_MOVE_FILE</span> request
86         according to
87         @{[ a_href 'http://www.sysinternals.com/ntw2k/info/defrag.shtml',
88                         'Inside Windows NT Disk Defragmenting' ]}
89         by @{[ a_href 'http://www.sysinternals.com/aboutus.shtml',
90                         'Mark Russinovich' ]}.</p>
91
92
93 HERE
94
95
96 project::captive::doc::Macros->footer();