Mercurial > hg > Members > shoshi > jungle > jungle-core
annotate memo.txt @ 143:afbe19c98f53
change Index form TreeMap<String,TreeMap<String<List<Pair<TreeNode,NodePath>>>> → TreeMap<String,TreeMap<String<List<NodePath>>>
bag
author | one |
---|---|
date | Sat, 15 Nov 2014 17:48:07 +0900 |
parents | 7aa195d5bdab |
children | 28d3a177f540 |
rev | line source |
---|---|
67 | 1 Fri Jul 18 19:59:20 JST 2014 |
2 | |
3 servletから最初にBoardNameをKeyにTreeを持ってくる | |
4 ここでConcarentHashMapを使っているが、Jungleそのものを使うことが可能である | |
5 名前とTreeRootの組からなるNodeを持つTreeを作る | |
6 この木は名前でバランスさせる | |
7 変更したらそのRootを伝播させる | |
8 Rootはatomicな変数で持つ | |
9 | |
10 問題は、この名前と木の対応を誰が持つか | |
11 1Nodeで1つにするかThread毎に別に持つ、全体に1つでも問題ない? | |
12 | |
13 | |
1 | 14 2012/06/11 |
15 ・誰が Editor を提供する API を保持するべきか? | |
16 ・Editor の役割 | |
17 ・commit したら必要な Node を NodeProvider に push する。 | |
18 ・ということは, 内部に NodeProvider への参照を保持してないといけない? NodeProvider へのリンクを保持しているのは Jungle である。 | |
19 ・Jungle が NodeProvider を持っているのは正しいのか? TreeGroup でもいいのではないか? | |
20 ・commit したら TreeGroup の情報は破壊される。つまり? commit は TreeGroup に対して行われる。 | |
21 ・TreeGroup のメソッドで Tree を渡して Editor を作成するが良いか? | |
22 ・tree を編集する | |
23 ・Editor は TreeGroup が保持するとする。ならば、NodeProvider はどうするか? | |
24 ・NodeFactory (?) をつくる? NodeProvider と何が違うのか? | |
25 ・NodeProvider は、Tree/TreeNode/Link を作成する。 | |
26 ・NodeProvider で、createTreeGroup , createTree , createTreeNode , createLink を依頼する | |
27 ・初期では、パスの検索は深さ優先探索で行う | |
3 | 28 ・TreeGroupについて、TreeGroupは最初に初期Treeを1つ作らなければならない? |
29 | |
30 2012/06/12 | |
31 ・NodeTable と NodeTable の状態を同期させる。 | |
32 ・Table , Record , PropertySequence をつくる、Record がひとつの Node に対応する | |
33 ・これを用いて Node , TreeGroup , Tree , TreeNode , Link を作成する | |
34 ・ Node : Record の Property で Attribute を表現 | |
35 ・ TreeGroup : Node で表すべき? | |
36 ・ Tree : TreeNode を継承している よって Node で表す、 Children や Links は PropertySequence による. | |
4
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
37 ・ Link : Node で表す。 |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
38 |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
39 2012/06/15 |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
40 ・Functional Java を使って PropertySequence を実装するといいかも? |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
41 ・Record , PropertySequence の hashCode , equals の実装について、ちゃんとテストを作ること!(重要) |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
42 ・なるべく、equals と hashCode はオーバーライドしないようにする、独自の比較メソッドを提供する。 |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
43 ・Table , Record , PropertySequence に Atomic なオペレーションを追加する |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
44 ・Table は Record の作成に CAS を追加する |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
45 ・Record は Map と PropertySequence に CAS を追加する。 |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
46 ・PropertySequence は・・・いらないか・・ |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
47 ・Jungle の API から getTreeGroups を削除した |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
48 ・Table , Record , PropertySequence では足りない、もっと美味いやりかたがあるはず |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
49 |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
50 2012/06/19 |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
51 ・Graph API を定義することにした |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
52 ・ Graph , Vertex , Vertexes |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
53 ・Neo4j で言うと |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
54 ・ GraphDB , Node , Iterator<Relationship> |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
55 ・とりあえずこれで実装してみる。 |
5
07b26b4b21e0
modified AbstractVertexesTest
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
4
diff
changeset
|
56 ・今日は、SimpleVertexes をほぼ完成させた、あとすこしとテストコードを追加すること。 |
07b26b4b21e0
modified AbstractVertexesTest
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
4
diff
changeset
|
57 |
07b26b4b21e0
modified AbstractVertexesTest
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
4
diff
changeset
|
58 2012/06/22 |
07b26b4b21e0
modified AbstractVertexesTest
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
4
diff
changeset
|
59 ・Vertexes のテストコードをほぼ仕上げた. |
07b26b4b21e0
modified AbstractVertexesTest
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
4
diff
changeset
|
60 ・次は,テストコードが正しいか,SimpleVertexes を動作させてみる. |
6
1a5eaf5ce085
modified AbstractVertexesTest and SimpleVertexes to pass the unit test.
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
5
diff
changeset
|
61 ・その次に,Jungle の実装を書く. |
1a5eaf5ce085
modified AbstractVertexesTest and SimpleVertexes to pass the unit test.
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
5
diff
changeset
|
62 |
1a5eaf5ce085
modified AbstractVertexesTest and SimpleVertexes to pass the unit test.
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
5
diff
changeset
|
63 2012/06/25 |
1a5eaf5ce085
modified AbstractVertexesTest and SimpleVertexes to pass the unit test.
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
5
diff
changeset
|
64 ・Vertexes のテストコードが動いた. |
1a5eaf5ce085
modified AbstractVertexesTest and SimpleVertexes to pass the unit test.
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
5
diff
changeset
|
65 ・SimpleJungle などを GraphAPI を用いて記述する. |
7
c3c65308a11b
removed some package and added Graph API
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
6
diff
changeset
|
66 ・SimpleTreeGroup , SimpleTree , SimpleNode をどうするか |
c3c65308a11b
removed some package and added Graph API
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
6
diff
changeset
|
67 |
c3c65308a11b
removed some package and added Graph API
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
6
diff
changeset
|
68 2012/06/27 |
8 | 69 ・Graph を用いた SimpleJungle の設計をもっと考える |
70 | |
71 2012/06/28 | |
72 ・SimpleJungle 実装を完成させた。テストコードはまだ書いていない | |
73 ・SimpleEditor の部分がまだだった。明日完成させよう |