Offload int[] to byte[].
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2017 / 02 / 28.mkd
blobfd75b3d56f75291f6c674ecc676fec1cc4a70e34
1 # 2017/02/28
3 ## 07:55
5 I suppose for simplicity that records will for the most part will be within
6 directories for the vendor and the midlet name. I suppose a vendor directory
7 first followed by the name. All in lowercase naturally. However, some file
8 systems do not support spaces in filenames such as DOS and have character
9 limitations. So the file store will need to have a kind of manifest to
10 specify the actual vendor and the name. Then I suppose the directory is just
11 the hash code of the vendor/name. I suppose since there is a synchronization
12 lock on open, I do not need to worry about multiple clusters being opened at
13 the same time. I do however will need to handle cases where the filesystem is
14 read-only and I cannot create new clusters. I should also potentially lazily
15 create the clusters, but that could complicate things a bit. However, what I
16 can do is store each record in its own individual file which means I do not
17 have to handle my own database format. This would delay the need to have a
18 block based hanlder for records, but a later implementation of that could be
19 shared for example with discreet blocks of memory. It is also possible for me
20 to model a filesystem on top of the record system in the event that none
21 exists. It would basically be a record filesystem.
23 ## 08:06
25 A record filesystem could be handy for some systems which lack a true
26 filesystem, although it might not be capable of storing much data and it would
27 only be accessible from SquirrelJME for the most part. This means that it
28 would be best to write a utility that can be used to manage files, along with
29 zipping and unzipping them. That would be a very useful utility to have.
31 ## 13:47
33 I believe I need an actual TODO class, one which prints the stack trace then
34 exits the SquirrelJME fatally. Otherwise when I am implementing support for
35 some things such as third party applications or games, the exceptions that I
36 need to figure what to implement are gone.
38 ## 13:53
40 This will be the only means to know what the actually implement.
42 ## 19:14
44 Ok for some reason, I read the data but the wanted CRC is incorrect.
46 ## 19:17
48 So the length is 13 but the read count is actually 9.
50 ## 19:19
52 Actually, I was reading the input data, I need to increase the length of 4
53 because the type is included also.
55 ## 21:14
57 An enumeration would be the best course for the color type perhaps, but that
58 would be somewhat painful to have.
60 ## 23:23
62 Reading the image data will be fun perhaps. I suppose the easiest thing to do
63 would be to have a large number of input streams which just read pixel data
64 for the most part. That would be the simplest. Then that way I do not need
65 giant switch statements and such.