Vreixo Formoso
6964f02308
Replace message functions with new infraestructure that supports abort
...
on error.
15 years ago
Vreixo Formoso
1070fe4cc6
Several improves in error codes.
...
- Code severity and priority in error codes.
- Added ERROR severity, suitable for function failures.
- Review libisofs errors and its severity.
15 years ago
Vreixo Formoso
52d1e911ac
Add TODOs to TODO file. Remove // comments that cause compiler warning.
15 years ago
Vreixo Formoso
3361e941a6
Replace div_up() and round_up() functions with macros.
15 years ago
Vreixo Formoso
df5aa263ec
Replace per Image messenger with a global one, and use image id instead.
15 years ago
Vreixo Formoso
5ed68d20e9
Add support for ISO-9660:1999.
15 years ago
Vreixo Formoso
9a66c6cd33
Enhance support for relaxe ISO constraints.
15 years ago
Vreixo Formoso
9ebc4a1eef
Add some more control to the ring buffer.
15 years ago
Vreixo Formoso
910a63f28a
Fix little bug related with dir length calculation.
15 years ago
Vreixo Formoso
a1bcc73198
Support for relaxed filenames on ISO-9660 images.
15 years ago
Vreixo Formoso
0d06e24cd5
Add support for El-Torito.
15 years ago
Vreixo Formoso
4f029437e2
Handling of El-Torito boot catalog at low level.
15 years ago
Vreixo Formoso
51df8c6284
Fix bug introduced when adding Joliet that causes libisofs to hang.
...
It causes an attempt to read an extra block from ring buffer to overwrite
buffer, which causes libisofs to hang. The problem is that Volume Descriptor
Set terminator should not be read from buffer, but generated instead.
15 years ago
Vreixo Formoso
41472e66b7
Pad volume attributes with " " to ensure ECMA-119 compliance.
15 years ago
Vreixo Formoso
747bed11b8
Bug fix: Joliet writer should be only created when Joliet is enabled.
15 years ago
Vreixo Formoso
5d81305042
Expose Joliet.
15 years ago
Vreixo Formoso
e9bcb22cee
Write Joliet directory structures and path tables.
15 years ago
Vreixo Formoso
bd0f787f61
Store joliet-related info in Ecma119Image target insted of Writer.
...
In fact, this is not a good decission, writer is a better place for
writer dependent data, but for now I prefer to store anything in the
target. Later we can improve Writer encapsulation.
15 years ago
Vreixo Formoso
17e9955f93
Begin Joliet support. Creation of Joliet writer and Joliet tree.
15 years ago
Vreixo Formoso
f3c27e681f
Improve growing by padding the image, if needed.
...
The padding ensures first 64 KiB can be overwritten without data lost if
we grow the image.
15 years ago
Vreixo Formoso
7af02cddd9
Support for image growing.
15 years ago
Vreixo Formoso
e471333b0b
Rename function to create burn_source.
15 years ago
Vreixo Formoso
ee78419935
Add support for appendable multisession images.
15 years ago
Vreixo Formoso
ad2974940a
Correctly manage image size and written progress.
15 years ago
Vreixo Formoso
e18f5d8898
Change message functions signature.
15 years ago
Vreixo Formoso
c786fc70b6
Fix bug in progress info, count last written bytes in percent.
15 years ago
Vreixo Formoso
d9c9aea0c5
Fix integer overflow in progress count.
15 years ago
Vreixo Formoso
7e66fe43ce
Reduce memory usage in low level tree, by storing dir info separately.
15 years ago
Vreixo Formoso
4b8db2f274
Report writting progress.
15 years ago
Vreixo Formoso
4c9d83f051
Define code style formatter for eclipse and apply it to source.
15 years ago
Vreixo Formoso
9a90afcf69
Support for setting an output charset for RR NM entries.
...
It will default to input charset (i.e. the locale charset for now).
Names will be stored internally in that locale charset. Note that input
charset musn't be changed by user. Instead, we can provide an input
charset property to IsoFilesystem implementations.
15 years ago
Vreixo Formoso
1e4851792b
First step to input/output charset handling.
15 years ago
Vreixo Formoso
a8636eaa60
Support for setting default modes for files and dirs.
15 years ago
Vreixo Formoso
941e2022e8
Expose RockRidge option.
15 years ago
Vreixo Formoso
ddd703e7c4
Fix several bugs related to RR SL/NM fields (PT 2 :).
15 years ago
Vreixo Formoso
49344b3ca9
Fix bug in path table size computation.
15 years ago
Vreixo Formoso
d954957d83
If needed, add version number to symlinks and special files too.
15 years ago
Vreixo Formoso
bf0c1dd219
Add nlink and ino fields. No true usage for now.
15 years ago
Vreixo Formoso
f8f2dcb6b0
RockRidge support, now RR/SUSP entries are correctly written.
...
This also fix a little bug, ensuring SP is written first to the "."
entry of the directory record.
15 years ago
Vreixo Formoso
c3af3553df
Define functions to generate and write the RR/SUSP fields.
15 years ago
Vreixo Formoso
778e39ba3c
Take care about the RR entries when computing the size, and cache it.
...
When computing the size of the directory structures, take care about the size
taken by the RR/SUSP fields. Also, cache that size, otherwise we need to do
this computation several times and it is ugly, because the CE entries need to
know where the Continuation Area will be stored.
15 years ago
Vreixo Formoso
041858360a
Handle reallocation of directories.
15 years ago
Vreixo Formoso
ca1385cce1
Begin RR support. Symlinks and Special files added to low level tree.
15 years ago
Vreixo Formoso
b8aa48038b
Minor changes.
15 years ago
Vreixo Formoso
002a832ac3
Minor changes.
15 years ago
Vreixo Formoso
6154fb1f0a
Replace the pipe with the ring buffer.
15 years ago
Vreixo Formoso
94e687d9d3
Add a ring buffer implementation.
...
This is intented to replace the pipe between the writer and reader
threads. That way we can have a much better control of cancelation
situations. Still to be optimized.
15 years ago
Vreixo Formoso
9ec475a900
Change iso name conversion functions back to old style.
15 years ago
Vreixo Formoso
35ef22cdd7
Implement ECMA-119 burn_source and writer thread handling.
...
At this time, nglibisofs is able to output an image!! Note that communication
between writer and read thread is done via a pipe. That will be replaced by a
ring buffer in the near future.
15 years ago
Vreixo Formoso
2ab23693db
Replace path table size computation by a recursive version.
...
The recursive version wastes less memory, as it doesn't need the path table
array.
15 years ago