Correct spelling.
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2014 / 06 / 25.mkd
blob0d260f041165c290aa57f7df28b3c074561bbcd6
1 # 2014/06/25
3 ***DISCLAIMER***: _These notes are from the defunct k8 project which_
4 _precedes SquirrelJME. The notes for SquirrelJME start on 2016/02/26!_
5 _The k8 project was effectively a Java SE 8 operating system and as such_
6 _all of the notes are in the context of that scope. That project is no_
7 _longer my goal as SquirrelJME is the spiritual successor to it._
9 I decided to start writing a programming blog of sorts to put down random
10 ideas for future reference and possibly some historical research. My current
11 plan is to rework the sort of existing (since I deleted some of it) class
12 loading code into a nice fancy new class loading code which is smaller and
13 more modular, with tons of less boilerplate. I realized that I was mostly
14 writing up ugly boilerplate code so this should reduce that. Although I spent
15 the past two months pretty much writing all of this up, it should hopefully
16 take less time than that now.
18 Not only do I want to reduce code, but I want to make it much more leaner and
19 future proof. Since I am the only one working on this, I would rather not
20 waste much time and let my code do the stuff for me. Also the loading of
21 classes should be a bit more verbose in terms of errors rather than what I
22 currently have. So rather than say "Invalid magic number" when loading a
23 class, it should say "Expected 0xCAFEBABE but got 0xBLEEBLEE instead." that
24 way when loading some random class files from somewhere you can actually
25 determine who is at fault, and if I am it can be fixed with a nice exception
26 like that rather than guessing.
28 Some of the currently existing echelong code just need refactoring along with
29 the class dumper which could be much better, and I decided to also make it so
30 the class dumper could output in other formats like JSON or XML. Also, if the
31 new output format on the console gets ugly, another output can be made and
32 switched to instead of a whole new rewrite. Being modular counts.
34 The sun has set, so I should get to sleeping now.