-
Notifications
You must be signed in to change notification settings - Fork 7
/
cherry-snippet.ah2
263 lines (250 loc) · 9.33 KB
/
cherry-snippet.ah2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
;@@@@@@@%@@@@@@%##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@@@@@@@@@@=%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@@
;@@@@++****+.@@@*.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+****=:@@@@@@@@@@@@@@@@@@@+%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%:@@@@@@@
;@@@-+@@@@@%+@@@%.****+%@@@@@******%@@@@%*=##****@@@#*=##**+*@@#=+%@@@#==%@@:+@@@@@*@@@#=******@@@@@%**+#@@@@@#++#*****%@@#++#*****@@@@@#*****#@@@@*+.****#@@
;@@#:@@@@@@@@@@@%.*@@@%:%@@%-+%@@%#-+@@@@@-:*%@@%@@@@@-:*%@@%@@@#:%@@@%:#@@@%+****#@@@@@-:%@@@-=@@@@@@@:+@@@@@@# *%@@@#-#@@* *%@@@*-#@@-=%@@@#-=@@@@%.@@@@@@@
;@@%:@@@@@@@@@@@%:@@@@@:%@@*.##***#*+@@@@@=*@@@@@@@@@@-*@@@@@@@@@%:#@#:%@@@@@@@@@@#:%@@@=*@@@@*=@@@@@@@-*@@@@@@#.@@@@@@=-@@*:@@@@@@-=@# ##***##+@@@@%.@@@@@@@
;@@@*=#%@@%#=%@@#.%@@@%.#@@@=+%@@@@%%@@@%%-=%%%@@@@@%%:+%%%@@@@@@@%-+-%@@@@#.#@@@@#:%@@%-=@@@@=-@@@@%%%:=%%%@@@# =#%%%+-%@@* +#%%#+=@@@+=%@@@@%#@@@@%.%@@@%%@
;@@@@@******%@@%***@@@***%@@@#******%@@@#******%@@@@*******%@@@@@@@#.@@@@@@@*******@@@@#**#@@%**#@@@*******#@@@#:@#**##@@@@*-@#**#%@@@@@%******#@@@@@%*****#@
;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@##*:*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+:##@@@@@@@#=:##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
;===============================================================================
; cherry-snippet 代码片段管理工具
; Tested on AHK v2.0.2 Unicode 64-bit, Windows /10
; github https://github.com/sxzxs/cherry-snippet-v2
;===============================================================================
; Script compiler directives
;@Ahk2Exe-SetCompanyName cherry-snippet ; 企业信息
;@Ahk2Exe-SetCopyright Copyright (c) cherry-snippet ; 版权信息
;@Ahk2Exe-SetLegalTrademarks 文本管理工具 ; 更改合法商标信息.
;@Ahk2Exe-SetDescription 文本管理工具 ; 文件说明
;@Ahk2Exe-SetFileVersion 0.2.0 ; 文件版本
;@Ahk2Exe-SetInternalName 文本管理工具 ; 文件内部名
;@Ahk2Exe-SetLanguage 0x0804 ; 区域语言
;@Ahk2Exe-SetName 文本管理工具 ; 名称
;@Ahk2Exe-SetProductName 文本管理工具 ; 产品名称
;@Ahk2Exe-SetOrigFilename cherry-snippet.exe ; 原始文件名称
;@Ahk2Exe-SetProductVersion 0.2.0 ; 产品版本号
;@Ahk2Exe-SetVersion 0.2.0 ; 版本号
;@Ahk2Exe-SetMainIcon %A_ScriptDir%\icons\main.ico
#include <log>
#include <py>
#include <huma>
#include <Class_SQLiteDB>
#include <TextRender>
#include <Child_process>
#Include <ComVar>
#include <WebView2>
#include <Direct2D>
#include <wincapture>
#include <Gdip_All>
#include <zmq>
#include ./utility/Tree_node_data.ah2
#include ./utility/Listview.ah2
#include ./utility/Config.ah2
#include ./utility/Main_gui.ah2
#include ./utility/Global_data.ah2
#include ./utility/Utility.ah2
#include ./utility/Webview2_preview.ah2
#include ./utility/ActiveX.ah2
#include ./utility/Zmq_send2cherry.ah2
#include ./utility/Zmq_send2plug.ah2
#include ./utility/Input_hook.ah2
#include ./utility/Tooltip_render.ah2
#SingleInstance force
#WinActivateForce
;#ErrorStdOut
;#Warn All, Off
#MaxThreads 255
#MaxThreadsBuffer True
DetectHiddenWindows true
SetWinDelay -1
SetControlDelay -1
KeyHistory 0
ListLines false
SetTitleMatchMode 'fast'
A_MaxHotkeysPerInterval := 99000000
A_HotkeyInterval := 99000000
main()
main()
{
RunAsAdmin() ;管理员模式运行
instance_once() ;清理重复进程
;检查是否有重复进程运行
if(Single_instance.create('cherry-snippet'))
{
MsgBox('提示,程序已启动!`n请勿重复运行')
ExitApp
}
global g_zmq_ctx := zmq_ctx_new()
global obj_cfg := Config(A_ScriptDir "/config/settings.json")
global cfg := obj_cfg.config
global g_tr := TextRender()
global g_tt_tr := Tooltip_render()
global g_webview := Webview2_preview()
global g_activex := ActiveX_preview()
global g_ih := Input_hook()
global g_huma := huma(A_ScriptDir '\lib\huma_single_dr.json')
global sender := Zmq_send2cherry() ;通过zmq 和 cherry通讯
global sender2plug := Zmq_send2plug() ;通过zmq 和 plug通讯
;设置log模式
logger.is_log_open := cfg['is_log_open']
logger.is_out_file := cfg['is_out_file']
logger.is_use_editor := cfg['is_use_editor']
;初始化、创建目录
if(!FileExist(cfg['html_path']))
{
try
{
DirCreate(cfg['html_path'])
}
catch as e
{
MsgBox('创建html导出目录失败: ' cfg['html_path'] '`n 将尝试在' A_MyDocuments '导出')
cfg['html_path'] := A_MyDocuments
obj_cfg.saveconfig()
}
}
;解析数据库
Tree_node_data.load_db_data()
Main_gui.create()
;注册热键
Hotkey("~esc", (key) => (Main_gui.Hide(key)))
Hotkey(cfg['key_open_search_box'], (key) => (copy_css2res(), Main_gui.edit.value := '',Main_gui.list_view.Delete(), Main_gui.open_search_box(key)))
Hotkey(cfg['hook_open'], (key) => (copy_css2res(), g_ih.start()))
Hotkey(cfg['key_hook_with_exe_name'], (key) => (copy_css2res(), g_ih.start("exe_mode")))
Hotkey(cfg['key_open_editor'], (key) => (sender.send_command()))
Hotkey('F8', (key) => (sender.send_command(999999999)))
HotIf(ObjBindMethod(g_ih, 'is_current_hook_mode'))
Hotkey("tab", ObjBindMethod(g_ih, "on_tab", '+'))
Hotkey("+tab", ObjBindMethod(g_ih, "on_tab", '-'))
HotIf()
HotIfWinActive("ahk_id " Main_gui.ui.Hwnd)
Hotkey("~$^c", (*) => (Main_gui.hide(), cfg['is_use_html_preview'] && InStr(Global_data.current_select_text, '<?xml version="1.0" encoding="UTF-8"?>') ? g_webview.copy2clipboard() : A_Clipboard := Global_data.current_select_text, g_tt_tr.render('Saved to clipboard')))
Hotkey(cfg['key_send'], send_command)
Hotkey("up", (*) => Main_gui.focus_before_row())
Hotkey("down", (*) => Main_gui.focus_next_row())
Hotkey("tab", (*) => Main_gui.focus_next_row())
Hotkey("+tab", (*) => Main_gui.focus_before_row())
Hotkey(cfg['key_quick_switch_node'], (*) => (Main_gui.hide(), sender.send_command(Global_data.current_select_node_id)))
HotIf()
;注册消息
OnMessage(0x201, WM_LBUTTONDOWN)
OnExit((*) => ( Single_instance.close(), sender2plug.pub('@exit')))
;定时监控cherryTree data文件变化
SetTimer(monitor_file_change, 1000)
;开监控db修改html导出线程
thread_plug_cal := Worker('#include ' A_scriptdir '/plug_cal.ah2', String(sender2plug.ctx))
thread_plug_cd := Worker('#include ' A_scriptdir '/plug_cd.ah2', string(sender2plug.ctx))
thread_find_image := Worker('#include ' A_scriptdir '/data2html.ah2')
loop
{
}until(thread_find_image.Ready, thread_plug_cal.Ready)
command := A_AhkPath ' /script ' A_ScriptDir "\tool\ai\ai.ah2 "
run(command)
}
copy_css2res()
{
logger.info(cfg['html_path'] '\data.ctb_HTML\res\')
if(FileExist(A_ScriptDir '\styles4.css') && !FileExist(cfg['html_path'] '\data.ctb_HTML\res\styles4.css'))
{
try
{
DirCreate(cfg['html_path'] '\data.ctb_HTML\res\')
FileCopy A_ScriptDir '\styles4.css', cfg['html_path'] '\data.ctb_HTML\res\', 1
}
}
}
monitor_file_change()
{
change_time := FileGetTime(cfg['db_path'], 'M')
SplitPath(cfg['db_path'],, &db_dir)
if(change_time > cfg['last_parse_time'])
{
List := WinGetList('ahk_exe cherrytree.exe',, 'Program Manager')
for k,v in List
{
title := ''
try
{
title := WinGetTitle('ahk_id ' v)
}
if(InStr(title, " - " db_dir " - CherryTree"))
{
if(instr(title, "*"))
logger.info('Now is changing...')
else
{
logger.info('start parse db...')
Tree_node_data.load_db_data()
Main_gui.load_tree_icon()
logger.info('parse db end')
}
}
}
}
}
send_command(*)
{
Main_gui.hide()
if(instr(Global_data.current_input_text,'/') == 1)
{
if(InStr(Global_data.current_input_text, '/cd ') == 1)
{
cd_str := A_Clipboard
cd_str := StrLower(cd_str)
cd_str := RegExReplace(cd_str, 'i)\s+', '_')
cd_str := RegExReplace(cd_str, "[^A-Za-z0-9_]", "")
A_Clipboard := cd_str
}
SendInput('{RShift Down}{Insert}{RShift Up}')
return
}
old_str := A_Clipboard
A_Clipboard := "" ; 清空剪贴板
if(cfg['is_use_html_preview'] && InStr(Global_data.current_select_text, '<?xml version="1.0" encoding="UTF-8"?>'))
g_webview.copy2clipboard()
else
A_Clipboard := Global_data.current_select_text
if(!ClipWait(2))
{
A_Clipboard := old_str
return
}
SendInput('{RShift Down}{Insert}{RShift Up}')
}
execute_command(*)
{
Main_gui.hide()
try
{
if(instr(Global_data.current_input_text,'/') == 1)
{
SendInput('{RShift Down}{Insert}{RShift Up}')
return
}
if(Global_data.current_select_text == '')
return
if(SubStr(Global_data.current_select_text, 1, 3) == ";v2")
ExecScript(Global_data.current_select_text,,A_ScriptDir '\interpreter\ahk-v2\AutoHotkey.exe')
else if(SubStr(Global_data.current_select_text, 1, 5) == "::bat")
ReadProcessStdOut(Global_data.current_select_text)
else
ExecScript(Global_data.current_select_text,,A_ScriptDir '\interpreter\ahk-v1\AutoHotkey.exe')
}
}
WM_LBUTTONDOWN(wParam, lParam, msg, hwnd)
{
global obj_cfg, cfg
if(WinActive("ahk_id " g_activex.ui.hwnd))
return
PostMessage(0xA1, 2)
KeyWait('LButton', 'U')
Main_gui.ui.GetPos(&x, &y, &w, &h)
if(x != "" && y != "" && w != "")
{
cfg['win_x'] := X
cfg['win_y'] := Y
obj_cfg.saveconfig()
}
}