unageanu-jiji 1.1.4 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +24 -1
- data/README +0 -0
- data/base/shared_lib/moving_average.rb +34 -33
- data/base/shared_lib/system/cross.rb +76 -0
- data/base/shared_lib/system/position_manager.rb +160 -0
- data/base/shared_lib/system/signal.rb +347 -0
- data/html/css/datatable.css +4 -4
- data/html/css/default.css +57 -5
- data/html/css/treeview.css +205 -0
- data/html/img/bin_closed.png +0 -0
- data/html/img/bin_empty.png +0 -0
- data/html/img/button_add_small.gif +0 -0
- data/html/img/button_add_small_gray.gif +0 -0
- data/html/img/button_add_small_over.gif +0 -0
- data/html/img/button_mkcol.gif +0 -0
- data/html/img/button_mkcol_gray.gif +0 -0
- data/html/img/button_mkcol_over.gif +0 -0
- data/html/img/button_remove_small.gif +0 -0
- data/html/img/button_remove_small_gray.gif +0 -0
- data/html/img/button_remove_small_over.gif +0 -0
- data/html/img/button_rename.gif +0 -0
- data/html/img/button_rename_gray.gif +0 -0
- data/html/img/button_rename_over.gif +0 -0
- data/html/img/control_play.png +0 -0
- data/html/img/control_play_blue.png +0 -0
- data/html/img/folder.png +0 -0
- data/html/img/folder_brick.png +0 -0
- data/html/img/folder_user.png +0 -0
- data/html/{js/codepress/images → img}/line-numbers.png +0 -0
- data/html/img/page_white_ruby.png +0 -0
- data/html/img/sidebar_agent_edit.png +0 -0
- data/html/img/sidebar_agent_edit_over.png +0 -0
- data/html/img/sidebar_agent_edit_s.png +0 -0
- data/html/img/yui/treeview-sprite.gif +0 -0
- data/html/index.html +34 -18
- data/html/js/agent-editor/agent-editor-page.js +324 -0
- data/html/js/agent-editor/agent-editor.js +363 -0
- data/html/js/agent-editor/agent-list-tree.js +251 -0
- data/html/js/agent-selector.js +23 -28
- data/html/js/app.js +63 -91
- data/html/js/bt-create-page.js +25 -19
- data/html/js/container-min.js +1 -1
- data/html/js/container.js +944 -0
- data/html/js/edit_area/autocompletion.js +11 -13
- data/html/js/edit_area/edit_area.css +79 -40
- data/html/js/edit_area/edit_area.js +255 -226
- data/html/js/edit_area/edit_area_compressor.php +4 -4
- data/html/js/edit_area/edit_area_full.gz +0 -0
- data/html/js/edit_area/edit_area_full.js +31 -31
- data/html/js/edit_area/edit_area_full_with_plugins.gz +0 -0
- data/html/js/edit_area/edit_area_full_with_plugins.js +31 -31
- data/html/js/edit_area/edit_area_functions.js +448 -341
- data/html/js/edit_area/edit_area_loader.js +409 -397
- data/html/js/edit_area/elements_functions.js +120 -123
- data/html/js/edit_area/highlight.js +305 -197
- data/html/js/edit_area/images/goto.png +0 -0
- data/html/js/edit_area/images/help.png +0 -0
- data/html/js/edit_area/images/redo.png +0 -0
- data/html/js/edit_area/images/save.png +0 -0
- data/html/js/edit_area/images/search.png +0 -0
- data/html/js/edit_area/images/undo.png +0 -0
- data/html/js/edit_area/images/word_wrap.gif +0 -0
- data/html/js/edit_area/keyboard.js +5 -5
- data/html/js/edit_area/langs/bg.js +73 -0
- data/html/js/edit_area/langs/cs.js +2 -0
- data/html/js/edit_area/langs/de.js +2 -0
- data/html/js/edit_area/langs/dk.js +2 -0
- data/html/js/edit_area/langs/en.js +2 -0
- data/html/js/edit_area/langs/eo.js +2 -0
- data/html/js/edit_area/langs/es.js +2 -0
- data/html/js/edit_area/langs/fi.js +67 -0
- data/html/js/edit_area/langs/fr.js +2 -0
- data/html/js/edit_area/langs/hr.js +2 -0
- data/html/js/edit_area/langs/it.js +2 -0
- data/html/js/edit_area/langs/ja.js +2 -0
- data/html/js/edit_area/langs/mk.js +2 -0
- data/html/js/edit_area/langs/nl.js +2 -0
- data/html/js/edit_area/langs/pl.js +2 -0
- data/html/js/edit_area/langs/pt.js +2 -0
- data/html/js/edit_area/langs/ru.js +2 -0
- data/html/js/edit_area/langs/sk.js +2 -0
- data/html/js/edit_area/langs/zh.js +67 -0
- data/html/js/edit_area/manage_area.js +362 -205
- data/html/js/edit_area/plugins/charmap/langs/bg.js +12 -0
- data/html/js/edit_area/plugins/charmap/langs/zh.js +6 -0
- data/html/js/edit_area/plugins/test/langs/bg.js +10 -0
- data/html/js/edit_area/plugins/test/langs/zh.js +4 -0
- data/html/js/edit_area/reg_syntax/java.js +56 -0
- data/html/js/edit_area/reg_syntax/ruby.js +9 -9
- data/html/js/edit_area/reg_syntax.js +15 -13
- data/html/js/edit_area/regexp.js +36 -32
- data/html/js/edit_area/resize_area.js +43 -47
- data/html/js/edit_area/search_replace.js +29 -29
- data/html/js/edit_area/template.html +6 -4
- data/html/js/json-broker-client.js +23 -17
- data/html/js/result-page.js +107 -57
- data/html/js/rt-setting-page.js +38 -15
- data/html/js/sidebar.js +41 -27
- data/html/js/templates.js +167 -32
- data/html/js/utils.js +143 -7
- data/html/js/yui/treeview.js +3671 -0
- data/html/swf/chart.swf +0 -0
- data/html/test/agent_editor_spec.js +815 -0
- data/html/test/index.html +40 -0
- data/html/test/jsspec/JSSpec.css +224 -0
- data/html/test/jsspec/JSSpec.js +1549 -0
- data/html/test/jsspec/diff_match_patch.js +1 -0
- data/html/test/utils_spec.js +111 -0
- data/lib/jiji/agent/agent.rb +69 -12
- data/lib/jiji/agent/agent_manager.rb +18 -12
- data/lib/jiji/agent/agent_registry.rb +35 -121
- data/lib/jiji/collector.rb +16 -6
- data/lib/jiji/command.rb +46 -5
- data/lib/jiji/dao/file_system_dao.rb +158 -0
- data/lib/jiji/dao/timed_data_dao.rb +2 -0
- data/lib/jiji/dao/trade_result_dao.rb +1 -1
- data/lib/jiji/error.rb +24 -8
- data/lib/jiji/migration/migrator1_2_0.rb +67 -0
- data/lib/jiji/models.rb +82 -24
- data/lib/jiji/operator.rb +55 -51
- data/lib/jiji/output.rb +85 -29
- data/lib/jiji/output_manager.rb +84 -0
- data/lib/jiji/plugin/embedded/single_click_client.rb +2 -2
- data/lib/jiji/plugin/securities_plugin.rb +0 -1
- data/lib/jiji/process.rb +229 -208
- data/lib/jiji/process_manager.rb +190 -96
- data/lib/jiji/registry.rb +87 -19
- data/lib/jiji/server.rb +1 -0
- data/lib/jiji/service/agent_service.rb +147 -48
- data/lib/jiji/service/output_service.rb +37 -17
- data/lib/jiji/service/process_service.rb +3 -5
- data/lib/jiji/service/trade_result_service.rb +4 -5
- data/lib/jiji/util/file_lock.rb +4 -4
- data/lib/jiji/util/include_proxy.rb +17 -0
- data/lib/jiji/util/json_broker.rb +6 -4
- data/lib/jiji/util/util.rb +1 -1
- data/swf/chart/fx/chart/Chart.as +7 -0
- data/swf/chart/fx/chart/ui/graph/GraphManager.as +15 -2
- data/test/ProcessTest/agents/foo.rb +10 -0
- data/test/ProcessTest/conf/configuration.yaml +3 -0
- data/test/agent/agent_tests.rb +10 -0
- data/test/agent/test_AgentManager.rb +28 -12
- data/test/agent/test_AgentRegistry.rb +194 -99
- data/test/agent/test_PeriodicallyAgent.rb +1 -2
- data/test/agent/test_Permitter.rb +1 -2
- data/test/all_tests.rb +7 -19
- data/test/dao/dao_tests.rb +9 -0
- data/test/dao/test_FileSystemDao.rb +431 -0
- data/test/dao/test_RateDao.rb +5 -7
- data/test/dao/test_TradeResultDao.rb +1 -2
- data/test/migration/migration_tests.rb +10 -0
- data/test/migration/migrator1_2_0test_data/basic/out/M2NlOTA2ODEtZDdlNi00NWU1LWIwNDQtMjBmODY2ZGNkNzBj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/basic/out/MDVhYzcxMjYtMGFlMS00Mzk0LWEyNmUtYjVjZjgwNDA0ZmE2/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/basic/out/MzA1YTk0NDgtNzhjNi00NDk3LTk2NTktYzE1ZjBhNzdiYjNj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/basic/out/YjRkOTI1MzEtZTM4MS00YjQwLTg1ZTQtMWFmZDRlNDUwMzBm/56e75YuV5bmz5Z2H57ea/meta.yaml +9 -0
- data/test/migration/migrator1_2_0test_data/basic/props.yaml +85 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/out/M2NlOTA2ODEtZDdlNi00NWU1LWIwNDQtMjBmODY2ZGNkNzBj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/out/MDVhYzcxMjYtMGFlMS00Mzk0LWEyNmUtYjVjZjgwNDA0ZmE2/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/out/MzA1YTk0NDgtNzhjNi00NDk3LTk2NTktYzE1ZjBhNzdiYjNj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/out/YjRkOTI1MzEtZTM4MS00YjQwLTg1ZTQtMWFmZDRlNDUwMzBm/56e75YuV5bmz5Z2H57ea/meta.yaml +9 -0
- data/test/migration/migrator1_2_0test_data/illegal_props/props.yaml +1 -0
- data/test/migration/migrator1_2_0test_data/no_outs/props.yaml +85 -0
- data/test/migration/migrator1_2_0test_data/no_props/out/M2NlOTA2ODEtZDdlNi00NWU1LWIwNDQtMjBmODY2ZGNkNzBj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/no_props/out/MDVhYzcxMjYtMGFlMS00Mzk0LWEyNmUtYjVjZjgwNDA0ZmE2/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/no_props/out/MzA1YTk0NDgtNzhjNi00NDk3LTk2NTktYzE1ZjBhNzdiYjNj/56e75YuV5bmz5Z2H57ea/meta.yaml +8 -0
- data/test/migration/migrator1_2_0test_data/no_props/out/YjRkOTI1MzEtZTM4MS00YjQwLTg1ZTQtMWFmZDRlNDUwMzBm/56e75YuV5bmz5Z2H57ea/meta.yaml +9 -0
- data/test/migration/test_Migrator.rb +1 -1
- data/test/migration/test_Migrator1_0_3.rb +1 -1
- data/test/migration/test_Migrator1_1_0.rb +1 -1
- data/test/migration/test_Migrator1_2_0.rb +94 -0
- data/test/plugin/embedded/test_SingleClickClient.rb +1 -2
- data/test/plugin/plugin_tests.rb +8 -0
- data/test/plugin/test_Loader.rb +1 -1
- data/test/shared/rate.csv +144 -0
- data/test/shared/shared_tests.rb +9 -0
- data/test/shared/test_Cross.rb +144 -0
- data/test/shared/test_PositionManager.rb +285 -0
- data/test/shared/test_Signal.rb +65 -0
- data/test/test_Output.rb +28 -21
- data/test/test_OutputManager.rb +162 -0
- data/test/test_Output_registry.rb +6 -17
- data/test/test_Process.rb +434 -222
- data/test/test_ProcessManager.rb +458 -101
- data/test/test_utils.rb +71 -8
- data/test/util/test_BlockToSession.rb +1 -2
- data/test/util/test_CSV.rb +1 -2
- data/test/util/test_SynchronizeInterceptor.rb +1 -2
- data/test/util/util_tests.rb +9 -0
- metadata +127 -47
- data/html/js/agent-editor-page.js +0 -440
- data/html/js/codepress/codepress.css +0 -21
- data/html/js/codepress/codepress.html +0 -35
- data/html/js/codepress/codepress.js +0 -138
- data/html/js/codepress/engines/gecko.js +0 -293
- data/html/js/codepress/engines/khtml.js +0 -0
- data/html/js/codepress/engines/msie.js +0 -304
- data/html/js/codepress/engines/older.js +0 -0
- data/html/js/codepress/engines/opera.js +0 -260
- data/html/js/codepress/images/line-numbers.gif +0 -0
- data/html/js/codepress/index.html +0 -443
- data/html/js/codepress/languages/asp.css +0 -71
- data/html/js/codepress/languages/asp.js +0 -117
- data/html/js/codepress/languages/autoit.css +0 -13
- data/html/js/codepress/languages/autoit.js +0 -32
- data/html/js/codepress/languages/csharp.css +0 -9
- data/html/js/codepress/languages/csharp.js +0 -25
- data/html/js/codepress/languages/css.css +0 -10
- data/html/js/codepress/languages/css.js +0 -23
- data/html/js/codepress/languages/generic.css +0 -9
- data/html/js/codepress/languages/generic.js +0 -25
- data/html/js/codepress/languages/html.css +0 -13
- data/html/js/codepress/languages/html.js +0 -59
- data/html/js/codepress/languages/java.css +0 -7
- data/html/js/codepress/languages/java.js +0 -24
- data/html/js/codepress/languages/javascript.css +0 -8
- data/html/js/codepress/languages/javascript.js +0 -30
- data/html/js/codepress/languages/perl.css +0 -11
- data/html/js/codepress/languages/perl.js +0 -27
- data/html/js/codepress/languages/php.css +0 -12
- data/html/js/codepress/languages/php.js +0 -61
- data/html/js/codepress/languages/ruby.css +0 -10
- data/html/js/codepress/languages/ruby.js +0 -26
- data/html/js/codepress/languages/sql.css +0 -10
- data/html/js/codepress/languages/sql.js +0 -30
- data/html/js/codepress/languages/text.css +0 -5
- data/html/js/codepress/languages/text.js +0 -9
- data/html/js/codepress/languages/vbscript.css +0 -71
- data/html/js/codepress/languages/vbscript.js +0 -117
- data/html/js/codepress/languages/xsl.css +0 -15
- data/html/js/codepress/languages/xsl.js +0 -103
- data/html/js/codepress/license.txt +0 -458
- data/html/js/edit_area/images/Thumbs.db +0 -0
- data/test/plugin/test_gem/a/lib/jiji_plugin_test.rb +0 -6
@@ -0,0 +1,324 @@
|
|
1
|
+
// ネームスペース
|
2
|
+
namespace( "fx.ui" )
|
3
|
+
namespace( "fx.ui.pages" )
|
4
|
+
|
5
|
+
// エージェント追加/編集UI
|
6
|
+
fx.ui.pages.AgentEditorPage = function() {
|
7
|
+
this.elementId = null;
|
8
|
+
this.editorElementId = null;
|
9
|
+
this.agentEditor = container.Inject;
|
10
|
+
this.agentFileListTree = container.Inject;
|
11
|
+
this.dialog = container.Inject;
|
12
|
+
this.topicPath = container.Inject;
|
13
|
+
|
14
|
+
// ボタン
|
15
|
+
var self = this;
|
16
|
+
this.addButton = new util.Button("agent-edit_add", "add_small", function() {
|
17
|
+
self.add("file");
|
18
|
+
}, fx.template.Templates.common.button.fileAdd);
|
19
|
+
this.addButton.setEnable( false );
|
20
|
+
|
21
|
+
this.removeButton = new util.Button("agent-edit_remove", "remove_small", function() {
|
22
|
+
self.remove();
|
23
|
+
}, fx.template.Templates.common.button.del);
|
24
|
+
this.removeButton.setEnable( false );
|
25
|
+
|
26
|
+
this.mkcolButton = new util.Button("agent-edit_mkcol", "mkcol", function() {
|
27
|
+
self.add("directory");
|
28
|
+
}, fx.template.Templates.common.button.mkcol);
|
29
|
+
this.mkcolButton.setEnable( false );
|
30
|
+
|
31
|
+
this.renameButton = new util.Button("agent-edit_rename", "rename", function() {
|
32
|
+
self.add("rename");
|
33
|
+
}, fx.template.Templates.common.button.rename);
|
34
|
+
this.renameButton.setEnable( false );
|
35
|
+
}
|
36
|
+
fx.ui.pages.AgentEditorPage.prototype = {
|
37
|
+
|
38
|
+
/**
|
39
|
+
* このページから画面を移動する際に呼び出される。
|
40
|
+
* 戻り値としてfalseを返すと遷移をキャンセルする。
|
41
|
+
*/
|
42
|
+
from : function(toId) {
|
43
|
+
// ページを非表示
|
44
|
+
document.getElementById(this.elementId).style.display = "none";
|
45
|
+
this.topicPath.set("");
|
46
|
+
return true;
|
47
|
+
},
|
48
|
+
/**
|
49
|
+
* このページに画面を移動すると呼び出される。
|
50
|
+
*/
|
51
|
+
to : function( fromId, param ) {
|
52
|
+
// ページを表示
|
53
|
+
document.getElementById(this.elementId).style.display = "block";
|
54
|
+
this.topicPath.set( fx.template.Templates.agentEditor.topicPath );
|
55
|
+
document.getElementById("agent_edit_desc").innerHTML =
|
56
|
+
fx.template.Templates.agentEditor.desc
|
57
|
+
this.initialize();
|
58
|
+
},
|
59
|
+
|
60
|
+
initialize: function( ) {
|
61
|
+
var self = this;
|
62
|
+
if ( this.initializeed ) return;
|
63
|
+
|
64
|
+
this.agentFileListTree.init();
|
65
|
+
|
66
|
+
// ファイルのダブルクリックで編集開始
|
67
|
+
this.agentFileListTree.tree.subscribe( "dblClickEvent", function(ev, node) {
|
68
|
+
self.startEdit( ev.node.data.data );
|
69
|
+
} );
|
70
|
+
|
71
|
+
// 編集領域を初期化
|
72
|
+
editAreaLoader.init({
|
73
|
+
id : this.editorElementId,
|
74
|
+
syntax: "ruby",
|
75
|
+
start_highlight: true,
|
76
|
+
language: "ja",
|
77
|
+
allow_toggle: false,
|
78
|
+
allow_resize: "y",
|
79
|
+
font_size: 10,
|
80
|
+
toolbar: "save, |, search, go_to_line, fullscreen, |, undo, redo, |, select_font,|, help ",
|
81
|
+
is_multi_files: true,
|
82
|
+
save_callback: "fx.ui.pages.AgentEditorPage.EditAreaCallBacks.saved",
|
83
|
+
EA_file_close_callback: "fx.ui.pages.AgentEditorPage.EditAreaCallBacks.closed"
|
84
|
+
});
|
85
|
+
|
86
|
+
// コールバック関数
|
87
|
+
fx.ui.pages.AgentEditorPage.EditAreaCallBacks = {
|
88
|
+
// データが保存されると呼び出されるコールバック関数
|
89
|
+
saved : function( editor_id, content ) {
|
90
|
+
var file = editAreaLoader.getCurrentFile(editor_id);
|
91
|
+
var editorPage = fx.ui.pages.AgentEditorPage.EditAreaCallBacks.findEditorPage();
|
92
|
+
editorPage.save( {path:file.id,name:file.name,type:"file"}, file.text);
|
93
|
+
// 保存に成功したら、編集状態を解除(タイトルの「*」を消す)
|
94
|
+
editAreaLoader.setFileEditedMode(editor_id, file.id, false);
|
95
|
+
},
|
96
|
+
// タブがクローズされると呼び出されるコールバック関数。
|
97
|
+
closed : function(file) {
|
98
|
+
// 未保存であれば保存を確認
|
99
|
+
if (!file['edited']) return true;
|
100
|
+
fx.container.get("dialog").show( "input", {
|
101
|
+
message : fx.template.Templates.agentEditor.dosave,
|
102
|
+
buttons : [
|
103
|
+
{ type:"yes",
|
104
|
+
alt: fx.template.Templates.common.button.yes,
|
105
|
+
key: "Enter",
|
106
|
+
action: function(dialog){
|
107
|
+
var editorPage = fx.ui.pages.AgentEditorPage.EditAreaCallBacks.findEditorPage();
|
108
|
+
editorPage.save( {path:file.id,name:file.name,type:"file"}, file.text);
|
109
|
+
return true;
|
110
|
+
}},
|
111
|
+
{ type:"no",
|
112
|
+
alt: fx.template.Templates.common.button.no,
|
113
|
+
key: "Esc",
|
114
|
+
action: function(dialog){ return true;}
|
115
|
+
}
|
116
|
+
]
|
117
|
+
});
|
118
|
+
return true;
|
119
|
+
},
|
120
|
+
findEditorPage : function() {
|
121
|
+
var pages = fx.container.gets("pages");
|
122
|
+
for ( var i=0; i<pages.length;i++ ) {
|
123
|
+
if ( pages[i].id != "agent_edit" ) continue;
|
124
|
+
return pages[i];
|
125
|
+
}
|
126
|
+
}
|
127
|
+
}
|
128
|
+
this.initializeed = true;
|
129
|
+
},
|
130
|
+
|
131
|
+
// エージェントの選択が更新された
|
132
|
+
onAgentSelectionChanged : function(ev) {
|
133
|
+
// ボタンのグレーアウト更新
|
134
|
+
this.addButton.setEnable( this.agentEditor.enable("add") );
|
135
|
+
this.removeButton.setEnable( this.agentEditor.enable("removeSelections") );
|
136
|
+
this.mkcolButton.setEnable( this.agentEditor.enable("mkcol") );
|
137
|
+
this.renameButton.setEnable( this.agentEditor.enable("renameSelection") );
|
138
|
+
|
139
|
+
// 表示を更新
|
140
|
+
var self = this;
|
141
|
+
ev.toggled.each( function(item) {
|
142
|
+
var node = self.agentFileListTree.tree.getNodeByProperty( "path", item.path );
|
143
|
+
// データがリロードされている場合、IDが変わるので、引数のitemで保持されているIDはそのまま利用できない。
|
144
|
+
if (!node) return;
|
145
|
+
var elm = document.getElementById( "agent_tree_node_" + node.data.data.id );
|
146
|
+
if ( Element.hasClassName(elm, "selected") ) {
|
147
|
+
Element.removeClassName(elm, "selected");
|
148
|
+
} else {
|
149
|
+
Element.addClassName(elm, "selected");
|
150
|
+
}
|
151
|
+
});
|
152
|
+
},
|
153
|
+
|
154
|
+
// エージェントが更新された
|
155
|
+
onAgentChanged : function(ev) {
|
156
|
+
for ( var i=0,n=ev.paths.length;i<n;i++ ) {
|
157
|
+
this.agentFileListTree.updateNode( ev.paths[i] );
|
158
|
+
}
|
159
|
+
},
|
160
|
+
|
161
|
+
// エディタを利用不可にする。
|
162
|
+
disableEditor : function() {
|
163
|
+
editAreaLoader.hide(this.editorElementId)
|
164
|
+
},
|
165
|
+
// エディタを利用可にする。
|
166
|
+
enableEditor : function() {
|
167
|
+
editAreaLoader.show(this.editorElementId)
|
168
|
+
},
|
169
|
+
// 追加/リネーム
|
170
|
+
add: function( mode ){
|
171
|
+
// ダイアログを開く
|
172
|
+
var self = this;
|
173
|
+
var option = { text:""};
|
174
|
+
switch ( mode ) {
|
175
|
+
case "directory" :
|
176
|
+
option.type = fx.template.Templates.common.item.directory;
|
177
|
+
option.prefix = fx.template.Templates.agentEditor.add.prefix.add;
|
178
|
+
break;
|
179
|
+
case "file" :
|
180
|
+
option.type = fx.template.Templates.common.item.file;
|
181
|
+
option.prefix = fx.template.Templates.agentEditor.add.prefix.add;
|
182
|
+
break;
|
183
|
+
default :
|
184
|
+
var selected = this.agentEditor.getSelections()[0];
|
185
|
+
option.text = selected.name;
|
186
|
+
option.type = selected.type == "directory"
|
187
|
+
? fx.template.Templates.common.item.directory
|
188
|
+
: fx.template.Templates.common.item.file;
|
189
|
+
option.prefix = fx.template.Templates.agentEditor.add.prefix.rename;
|
190
|
+
break;
|
191
|
+
}
|
192
|
+
this.dialog.show( "input", {
|
193
|
+
message : fx.template.Templates.agentEditor.add.body.evaluate(option),
|
194
|
+
init: function() {
|
195
|
+
document.file_name_input_form.file_name_input.focus();
|
196
|
+
self.disableEditor();
|
197
|
+
},
|
198
|
+
buttons : [
|
199
|
+
{ type:"ok",
|
200
|
+
alt: fx.template.Templates.common.button.ok,
|
201
|
+
key: "Enter",
|
202
|
+
action: function(dialog){
|
203
|
+
var text = document.getElementById("file_name_input").value;
|
204
|
+
try {
|
205
|
+
JSONBrokerClientFactory.async = false;
|
206
|
+
var result = true;
|
207
|
+
var f = "renameSelection";
|
208
|
+
switch ( mode ) {
|
209
|
+
case "directory" : f = "mkcol"; break;
|
210
|
+
case "file" : f = "add"; break;
|
211
|
+
default : f = "renameSelection"; break;
|
212
|
+
}
|
213
|
+
self.agentEditor[f]( text, function(){}, function(ex){
|
214
|
+
// エラー通知
|
215
|
+
dialog.content.innerHTML =
|
216
|
+
fx.template.Templates.agentEditor.add.error.evaluate({ "error" : ex.msg.escapeHTML() })
|
217
|
+
+ fx.template.Templates.agentEditor.add.body.evaluate({ "text" : text.escapeHTML() })
|
218
|
+
result = false;
|
219
|
+
});
|
220
|
+
return result;
|
221
|
+
} finally {
|
222
|
+
JSONBrokerClientFactory.async = true;
|
223
|
+
self.enableEditor();
|
224
|
+
}
|
225
|
+
return true;
|
226
|
+
}},
|
227
|
+
{ type:"cancel",
|
228
|
+
alt: fx.template.Templates.common.button.cancel,
|
229
|
+
key: "Esc",
|
230
|
+
action: function(dialog){
|
231
|
+
self.enableEditor();
|
232
|
+
return true;
|
233
|
+
}}
|
234
|
+
]
|
235
|
+
} );
|
236
|
+
},
|
237
|
+
// 削除
|
238
|
+
remove: function(){
|
239
|
+
// 確認
|
240
|
+
var self = this;
|
241
|
+
this.dialog.show( "input", {
|
242
|
+
message : fx.template.Templates.agentEditor.remove.body,
|
243
|
+
init: function() { self.disableEditor(); },
|
244
|
+
buttons : [
|
245
|
+
{ type:"ok",
|
246
|
+
alt: fx.template.Templates.common.button.ok,
|
247
|
+
key: "Enter",
|
248
|
+
action: function(dialog){
|
249
|
+
try {
|
250
|
+
// 行のデータを削除
|
251
|
+
self.agentEditor.removeSelections( function(result){
|
252
|
+
var str = "";
|
253
|
+
for ( var i in result.failed ) {
|
254
|
+
str += result.failed[i].path + " : \n " + result.failed[i].msg;
|
255
|
+
}
|
256
|
+
if ( str.length > 0 ) {
|
257
|
+
var body = fx.template.Templates.agentEditor.remove.error.evaluate( {error:str} );
|
258
|
+
self.showError( body );
|
259
|
+
}
|
260
|
+
}, function(ex) {
|
261
|
+
var body = fx.template.Templates.agentEditor.remove.error.evaluate( {error:ex.msg} );
|
262
|
+
self.showError( body );
|
263
|
+
} );
|
264
|
+
} finally {
|
265
|
+
self.enableEditor();
|
266
|
+
}
|
267
|
+
return true;
|
268
|
+
}
|
269
|
+
},
|
270
|
+
{ type:"cancel",
|
271
|
+
alt: fx.template.Templates.common.button.cancel,
|
272
|
+
key: "Esc",
|
273
|
+
action: function(dialog){
|
274
|
+
self.enableEditor();
|
275
|
+
return true;
|
276
|
+
}
|
277
|
+
}
|
278
|
+
]
|
279
|
+
});
|
280
|
+
},
|
281
|
+
// エラーを表示する。
|
282
|
+
showError : function( msg ) {
|
283
|
+
// 確認
|
284
|
+
var self = this;
|
285
|
+
this.dialog.show( "warn", {
|
286
|
+
message : msg,
|
287
|
+
init: function() { self.enableEditor(); },
|
288
|
+
buttons : [
|
289
|
+
{ type:"ok",
|
290
|
+
alt: fx.template.Templates.common.button.ok,
|
291
|
+
key: "Enter",
|
292
|
+
action: function(dialog){
|
293
|
+
self.enableEditor();
|
294
|
+
return true;
|
295
|
+
}
|
296
|
+
}
|
297
|
+
]
|
298
|
+
});
|
299
|
+
},
|
300
|
+
|
301
|
+
// データを保存する。
|
302
|
+
save: function( editingFile, newData ){
|
303
|
+
var self = this;
|
304
|
+
this.agentEditor.put( editingFile.path, newData, function(result){
|
305
|
+
document.getElementById("agent_edit_msg").innerHTML =
|
306
|
+
fx.template.Templates.agentEditor.saved.success.evaluate({ "now" : util.formatDate( new Date() ) });
|
307
|
+
}, function(result, detail) {
|
308
|
+
document.getElementById("agent_edit_msg").innerHTML =
|
309
|
+
fx.template.Templates.agentEditor.saved.error.evaluate({ "now" : util.formatDate( new Date() ), "result":result.escapeHTML()} );
|
310
|
+
} );
|
311
|
+
},
|
312
|
+
|
313
|
+
// 編集を開始する。
|
314
|
+
startEdit : function( file ) {
|
315
|
+
var self = this;
|
316
|
+
this.agentEditor.get( file.path, function(body) {
|
317
|
+
editAreaLoader.openFile(self.editorElementId, {
|
318
|
+
id : file.path,
|
319
|
+
title : file.name,
|
320
|
+
text : body
|
321
|
+
});
|
322
|
+
}, function(){}); // TODO
|
323
|
+
}
|
324
|
+
}
|
@@ -0,0 +1,363 @@
|
|
1
|
+
// ネームスペース
|
2
|
+
namespace( "fx" );
|
3
|
+
|
4
|
+
// エージェントエディタコントローラ
|
5
|
+
fx.AgentEditor = function() {
|
6
|
+
this.agentServiceStub = container.Inject;
|
7
|
+
this.selections = new Hash({});
|
8
|
+
this.listeners = new util.Listener();
|
9
|
+
|
10
|
+
this.agentChangeListeners = container.Injects(
|
11
|
+
container.types.has( "onAgentChanged" ) );
|
12
|
+
this.selectionChangeListeners = container.Injects(
|
13
|
+
container.types.has( "onAgentSelectionChanged" ) );
|
14
|
+
}
|
15
|
+
fx.AgentEditor.prototype = {
|
16
|
+
|
17
|
+
EVENTS : {
|
18
|
+
// 特定のパス配下の一覧が更新された
|
19
|
+
CHANGED : "changed",
|
20
|
+
// 選択が変更された
|
21
|
+
SELECTION_CHANGED : "selection_changed"
|
22
|
+
},
|
23
|
+
|
24
|
+
/**
|
25
|
+
* インスタンスを初期化する
|
26
|
+
*/
|
27
|
+
init : function() {
|
28
|
+
for (var i=0;i<this.agentChangeListeners.length;i++) {
|
29
|
+
this.listeners.addListener( this.EVENTS.CHANGED, this.agentChangeListeners[i] );
|
30
|
+
}
|
31
|
+
for (var i=0;i<this.selectionChangeListeners.length;i++) {
|
32
|
+
this.listeners.addListener( this.EVENTS.SELECTION_CHANGED, this.selectionChangeListeners[i]);
|
33
|
+
}
|
34
|
+
},
|
35
|
+
|
36
|
+
/**
|
37
|
+
* 指定されたパスのファイル一覧を取得する。
|
38
|
+
* @param path {String} パス
|
39
|
+
* @param success {Function} 成功時のコールバック
|
40
|
+
* @param fail {Function} 失敗時のコールバック
|
41
|
+
*/
|
42
|
+
list : function( path, success, fail ) {
|
43
|
+
this.agentServiceStub.list_files( path, success, fail);
|
44
|
+
},
|
45
|
+
/**
|
46
|
+
* 指定されたパスのファイル内容を取得する。
|
47
|
+
* @param path {String} パス
|
48
|
+
* @param success {Function} 成功時のコールバック
|
49
|
+
* @param fail {Function} 失敗時のコールバック
|
50
|
+
*/
|
51
|
+
get : function( path, success, fail ) {
|
52
|
+
this.agentServiceStub.get_file( path, success, fail );
|
53
|
+
},
|
54
|
+
/**
|
55
|
+
* 指定されたパスの内容を更新する。
|
56
|
+
* @param path {String} パス
|
57
|
+
* @param body {String} 本文
|
58
|
+
* @param success {Function} 成功時のコールバック
|
59
|
+
* @param fail {Function} 失敗時のコールバック
|
60
|
+
*/
|
61
|
+
put : function( path, body, success, fail ) {
|
62
|
+
this.agentServiceStub.put_file( path, body, success, fail );
|
63
|
+
},
|
64
|
+
/**
|
65
|
+
* 選択されたフォルダ配下にファイルを追加する。
|
66
|
+
* @param path {String} パス
|
67
|
+
* @param success {Function} 成功時のコールバック
|
68
|
+
* @param fail {Function} 失敗時のコールバック
|
69
|
+
*/
|
70
|
+
add : function( name, success, fail ) {
|
71
|
+
if ( !this.enable("add") ) {
|
72
|
+
if ( fail) fail( {msg:fx.template.Templates.common.errorMsg.systemError} );
|
73
|
+
return;
|
74
|
+
}
|
75
|
+
var parent = this.selections.keys()[0];
|
76
|
+
var path = null;
|
77
|
+
try {
|
78
|
+
path = parent + "/" + this.checkName( name, parent, true );
|
79
|
+
} catch ( ex ) {
|
80
|
+
if ( fail) fail( ex );
|
81
|
+
return;
|
82
|
+
}
|
83
|
+
var self = this;
|
84
|
+
this.agentServiceStub.add_file( path, "", function(result){
|
85
|
+
if (success) success(result);
|
86
|
+
self.listeners.fire( self.EVENTS.CHANGED, {paths:[util.PathUtils.dirname(path)]}, "onAgentChanged" );
|
87
|
+
}, function( error, detail ) {
|
88
|
+
if ( fail) fail( {msg:util.BasicExceptionHandler( error, detail,
|
89
|
+
{name:fx.template.Templates.common.item.file} )} );
|
90
|
+
} );
|
91
|
+
},
|
92
|
+
/**
|
93
|
+
* 選択されたフォルダ配下にフォルダを追加する。
|
94
|
+
* @param path {String} パス
|
95
|
+
* @param success {Function} 成功時のコールバック
|
96
|
+
* @param fail {Function} 失敗時のコールバック
|
97
|
+
*/
|
98
|
+
mkcol : function( name, success, fail ) {
|
99
|
+
if ( !this.enable("mkcol") ) {
|
100
|
+
if ( fail) fail( {msg:fx.template.Templates.common.errorMsg.systemError} );
|
101
|
+
return;
|
102
|
+
}
|
103
|
+
var parent = this.selections.keys()[0];
|
104
|
+
var path = null;
|
105
|
+
try {
|
106
|
+
path = parent + "/" + this.checkName( name, parent, false );
|
107
|
+
} catch ( ex ) {
|
108
|
+
if ( fail) fail( ex );
|
109
|
+
return;
|
110
|
+
}
|
111
|
+
var self = this;
|
112
|
+
this.agentServiceStub.mkcol( path, function(result){
|
113
|
+
if (success) success(result);
|
114
|
+
self.listeners.fire( self.EVENTS.CHANGED, {paths:[util.PathUtils.dirname(path)]}, "onAgentChanged" );
|
115
|
+
}, function( error, detail ) {
|
116
|
+
if ( fail) fail( {msg:util.BasicExceptionHandler( error, detail,
|
117
|
+
{name:fx.template.Templates.common.item.directory} )} );
|
118
|
+
});
|
119
|
+
},
|
120
|
+
/**
|
121
|
+
* 選択されたファイル/フォルダを削除する。
|
122
|
+
* @param success {Function} 成功時のコールバック
|
123
|
+
* @param fail {Function} 失敗時のコールバック
|
124
|
+
*/
|
125
|
+
removeSelections : function( success, fail ) {
|
126
|
+
if ( !this.enable("removeSelections") ) {
|
127
|
+
if ( fail) fail( {msg:fx.template.Templates.common.errorMsg.systemError} );
|
128
|
+
return;
|
129
|
+
}
|
130
|
+
var self = this;
|
131
|
+
var targets = util.PathUtils.normarize(this.selections.keys());
|
132
|
+
this.agentServiceStub.remove( targets, function(result){
|
133
|
+
// 失敗した項目のメッセージを変換
|
134
|
+
for ( var i in result.failed ) {
|
135
|
+
result.failed[i].msg = util.BasicExceptionHandler( result.failed[i].msg, result.failed[i], {
|
136
|
+
name: self.selections.get([i]) && self.selections.get([i]).type == "directory"
|
137
|
+
? fx.template.Templates.common.item.directory
|
138
|
+
: fx.template.Templates.common.item.file} );
|
139
|
+
}
|
140
|
+
if (success) success(result);
|
141
|
+
|
142
|
+
// 削除された文書orその配下要素は全て選択解除
|
143
|
+
var newSelection = new Hash({});
|
144
|
+
var toggled = [];
|
145
|
+
self.selections.each(function(pair){
|
146
|
+
var exclude = false;
|
147
|
+
for ( var i in result["success"] ) {
|
148
|
+
if ( pair[0] == i || util.PathUtils.isChild( pair[0], i ) ) {
|
149
|
+
exclude = true;
|
150
|
+
break;
|
151
|
+
}
|
152
|
+
}
|
153
|
+
if (!exclude) {
|
154
|
+
newSelection.set( pair[0], pair[1] );
|
155
|
+
} else {
|
156
|
+
toggled.push( pair[1] );
|
157
|
+
}
|
158
|
+
});
|
159
|
+
self.selections = newSelection;
|
160
|
+
|
161
|
+
// 削除された親のディレクトリ一覧を取得
|
162
|
+
var parents = $H({});
|
163
|
+
for ( var i in result["success"] ) {
|
164
|
+
var p = util.PathUtils.dirname( i );
|
165
|
+
if (p) parents.set( p, p );
|
166
|
+
}
|
167
|
+
self.listeners.fire( self.EVENTS.CHANGED, {paths:parents.keys()}, "onAgentChanged" );
|
168
|
+
self.listeners.fire( self.EVENTS.SELECTION_CHANGED,
|
169
|
+
{selection:self.selections, toggled:toggled}, "onAgentSelectionChanged" );
|
170
|
+
|
171
|
+
}, function( error, detail ) {
|
172
|
+
if ( fail) fail( {msg:util.BasicExceptionHandler( error, detail,
|
173
|
+
{name:fx.template.Templates.common.item.file} )} );
|
174
|
+
});
|
175
|
+
},
|
176
|
+
/**
|
177
|
+
* 選択されたファイル/フォルダをリネームする。(1つのファイル/フォルダのみリネーム可)
|
178
|
+
* @param name {String} 新しい名前
|
179
|
+
* @param success {Function} 成功時のコールバック
|
180
|
+
* @param fail {Function} 失敗時のコールバック
|
181
|
+
*/
|
182
|
+
renameSelection : function( name, success, fail ) {
|
183
|
+
if ( !this.enable("renameSelection") ) {
|
184
|
+
if ( fail) fail( {msg:fx.template.Templates.common.errorMsg.systemError} );
|
185
|
+
return;
|
186
|
+
}
|
187
|
+
var path = this.selections.keys()[0];
|
188
|
+
try {
|
189
|
+
name = this.checkName( name, util.PathUtils.dirname(path),
|
190
|
+
this.selections.get( path ).type != "directory" );
|
191
|
+
} catch ( ex ) {
|
192
|
+
if ( fail) fail( ex );
|
193
|
+
return;
|
194
|
+
}
|
195
|
+
var self = this;
|
196
|
+
var item = this.selections.get( path );
|
197
|
+
this.agentServiceStub.rename( path, name, function( result) {
|
198
|
+
if (success) success(result);
|
199
|
+
|
200
|
+
// 成功した場合、選択されたアイテムの名前も変更
|
201
|
+
// 選択は1つなので子が選択されていることはないはず。
|
202
|
+
var item = self.selections.get(path);
|
203
|
+
item.path = util.PathUtils.dirname(path) + "/" + name;
|
204
|
+
item.name = name;
|
205
|
+
self.selections.unset( path );
|
206
|
+
self.selections.set( item.path, item );
|
207
|
+
self.listeners.fire( self.EVENTS.CHANGED, {paths:[util.PathUtils.dirname( path )]}, "onAgentChanged" );
|
208
|
+
self.listeners.fire( self.EVENTS.SELECTION_CHANGED,
|
209
|
+
{selection:self.selections, toggled:[item]}, "onAgentSelectionChanged" );
|
210
|
+
}, function( error, detail ) {
|
211
|
+
if ( fail) fail( {msg:util.BasicExceptionHandler( error, detail,
|
212
|
+
{name: item.type == "directory"
|
213
|
+
? fx.template.Templates.common.item.directory
|
214
|
+
: fx.template.Templates.common.item.file} )} );
|
215
|
+
});
|
216
|
+
},
|
217
|
+
/**
|
218
|
+
* 選択されたファイル/フォルダを移動する。
|
219
|
+
* @param success {Function} 成功時のコールバック
|
220
|
+
* @param fail {Function} 失敗時のコールバック
|
221
|
+
*/
|
222
|
+
moveSelections : function( to, success, fail ) {
|
223
|
+
if ( !this.enable("moveSelections") ) {
|
224
|
+
if ( fail) fail( {msg:fx.template.Templates.common.errorMsg.systemError} );
|
225
|
+
return;
|
226
|
+
}
|
227
|
+
if ( to.type != "directory") {
|
228
|
+
if ( fail) fail( {msg:fx.template.Templates.common.errorMsg.systemError} );
|
229
|
+
return;
|
230
|
+
}
|
231
|
+
var targets = this.selections.keys();
|
232
|
+
this.agentServiceStub.move( targets, to.path, function(result){
|
233
|
+
if (success) success(result);
|
234
|
+
var changed = [to];
|
235
|
+
// 移動前の親のディレクトリ一覧を取得
|
236
|
+
var parents = $H({});
|
237
|
+
for ( var i in result["success"] ) {
|
238
|
+
var p = util.PathUtils.dirname( i );
|
239
|
+
if (p) parents.set( p, p );
|
240
|
+
// 移動された文書orその配下要素の選択を更新
|
241
|
+
var newSelection = $H({});
|
242
|
+
self.selections.each(function(pair){
|
243
|
+
if (pair[0] == i || util.PathUtils.isChild( pair[0], i )) {
|
244
|
+
var tmp = to + "/" + util.PathUtils.basename(i);
|
245
|
+
pair[1].path = pair[0].path.sub( i, tmp );
|
246
|
+
newSelection.set( pair[1].path, pair[1] );
|
247
|
+
} else {
|
248
|
+
newSelection.set( pair[1].path, pair[1] );
|
249
|
+
}
|
250
|
+
});
|
251
|
+
self.selections = newSelection;
|
252
|
+
}
|
253
|
+
self.listeners.fire( self.EVENTS.CHANGED, {paths:parents.keys()}, "onAgentChanged" );
|
254
|
+
self.listeners.fire( self.EVENTS.SELECTION_CHANGED,
|
255
|
+
{selection:self.selections}, "onAgentSelectionChanged" );
|
256
|
+
}, function( error, detail ) {
|
257
|
+
if ( fail) fail( {msg:util.BasicExceptionHandler( error, detail,
|
258
|
+
{name:fx.template.Templates.common.item.file} )} );
|
259
|
+
});
|
260
|
+
},
|
261
|
+
/**
|
262
|
+
* パスのファイル/フォルダを選択する
|
263
|
+
* @param item {String} アイテム
|
264
|
+
*/
|
265
|
+
select : function( item ) {
|
266
|
+
this.selections.set(item.path, item);
|
267
|
+
this.listeners.fire( this.EVENTS.SELECTION_CHANGED,
|
268
|
+
{selection:this.selections,toggled:[item]}, "onAgentSelectionChanged" );
|
269
|
+
},
|
270
|
+
/**
|
271
|
+
* パスのファイル/フォルダを選択解除する
|
272
|
+
* @param item {String} アイテム
|
273
|
+
*/
|
274
|
+
unselect : function( item ) {
|
275
|
+
this.selections.unset(item.path);
|
276
|
+
this.listeners.fire( this.EVENTS.SELECTION_CHANGED,
|
277
|
+
{selection:this.selections,toggled:[item]}, "onAgentSelectionChanged" );
|
278
|
+
},
|
279
|
+
/**
|
280
|
+
* パスのファイルが選択されているか評価する。
|
281
|
+
* @param path {String} パス
|
282
|
+
*/
|
283
|
+
isSelected : function( path ) {
|
284
|
+
return this.selections.get(path) ? true : false;
|
285
|
+
},
|
286
|
+
/**
|
287
|
+
* 選択された項目の数を返す。
|
288
|
+
* @return 選択された項目数
|
289
|
+
*/
|
290
|
+
size : function() {
|
291
|
+
return this.selections.size();
|
292
|
+
},
|
293
|
+
/**
|
294
|
+
* 選択を解除する。
|
295
|
+
*/
|
296
|
+
clear : function() {
|
297
|
+
var toggled = this.selections.values();
|
298
|
+
this.selections = new Hash({});
|
299
|
+
this.listeners.fire( this.EVENTS.SELECTION_CHANGED,
|
300
|
+
{selection:this.selections,toggled:toggled}, "onAgentSelectionChanged" );
|
301
|
+
},
|
302
|
+
/**
|
303
|
+
* 選択されているあアイテムの一覧を返す。
|
304
|
+
* @return 選択されているあアイテムの一覧
|
305
|
+
*/
|
306
|
+
getSelections : function() {
|
307
|
+
return this.selections.values();
|
308
|
+
},
|
309
|
+
/**
|
310
|
+
* コマンドが利用可能か評価する
|
311
|
+
* @param functionName {String} 関数名
|
312
|
+
*/
|
313
|
+
enable : function( functionName ) {
|
314
|
+
// moveSelections, removeSelectionsは選択がなければ実行不可
|
315
|
+
switch( functionName ) {
|
316
|
+
case "moveSelections":
|
317
|
+
case "removeSelections":
|
318
|
+
if (this.selections.size() <= 0) return false;
|
319
|
+
if ( this.isSelected( fx.constants.AGENTS_DIR ) ) return false;
|
320
|
+
if ( this.isSelected( fx.constants.SHARED_LIB_DIR ) ) return false;
|
321
|
+
break;
|
322
|
+
// renameSelectionは何かが一つ選択されていなければ実行不可
|
323
|
+
case "renameSelection":
|
324
|
+
if (this.selections.size() != 1) return false;
|
325
|
+
if ( this.isSelected( fx.constants.AGENTS_DIR ) ) return false;
|
326
|
+
if ( this.isSelected( fx.constants.SHARED_LIB_DIR ) ) return false;
|
327
|
+
break;
|
328
|
+
// add,mkcolはフォルダが1つ選択されていなければ実行不可
|
329
|
+
case "add":
|
330
|
+
case "mkcol":
|
331
|
+
if (this.selections.size() != 1) return false;
|
332
|
+
if ( this.selections.values()[0].type != "directory") return false;
|
333
|
+
break;
|
334
|
+
}
|
335
|
+
return true;
|
336
|
+
},
|
337
|
+
/**
|
338
|
+
* ファイル名/フォルダ名が利用可能であるか評価する
|
339
|
+
* @param name {String} 名前
|
340
|
+
* @param parent {String} 親のパス名
|
341
|
+
* @param isFile {Boolean} ファイルかどうか?
|
342
|
+
* @return パス
|
343
|
+
*/
|
344
|
+
checkName : function( name, parent, isFile ){
|
345
|
+
var option = { name: isFile
|
346
|
+
? fx.template.Templates.common.item.file
|
347
|
+
: fx.template.Templates.common.item.directory };
|
348
|
+
|
349
|
+
// 文字列をチェック
|
350
|
+
if ( !name ) {
|
351
|
+
throw {msg:fx.template.Templates.common.errorMsg.emptyName};
|
352
|
+
}
|
353
|
+
if ( !name.match( /^[A-Za-z0-9_\+\-\#\'\!\~\(\)\[\]\.\{\}]+$/ ) ) {
|
354
|
+
throw {msg:fx.template.Templates.common.errorMsg.illegalName.evaluate( option )};
|
355
|
+
}
|
356
|
+
|
357
|
+
// ファイルの場合、拡張子を強制的に付与する
|
358
|
+
if ( isFile && !name.match( /\.rb$/ ) ) {
|
359
|
+
name += ".rb";
|
360
|
+
}
|
361
|
+
return name;
|
362
|
+
}
|
363
|
+
}
|