janito 3.6.1__py3-none-any.whl → 3.8.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- janito/README.md +4 -7
- janito/cli/chat_mode/bindings.py +0 -50
- janito/cli/chat_mode/session.py +1 -12
- janito/cli/chat_mode/shell/commands/multi.py +0 -5
- janito/cli/chat_mode/shell/commands/security/allowed_sites.py +33 -47
- janito/cli/cli_commands/list_plugins.py +43 -52
- janito/cli/cli_commands/list_tools.py +1 -6
- janito/cli/core/getters.py +0 -3
- janito/cli/core/model_guesser.py +24 -40
- janito/cli/main_cli.py +13 -10
- janito/cli/prompt_core.py +9 -47
- janito/cli/rich_terminal_reporter.py +4 -4
- janito/docs/GETTING_STARTED.md +9 -8
- janito/drivers/openai/driver.py +0 -1
- janito/drivers/zai/driver.py +0 -1
- janito/i18n/it.py +46 -46
- janito/llm/agent.py +16 -32
- janito/llm/auth_utils.py +5 -14
- janito/llm/driver.py +0 -8
- janito/plugins/__init__.py +12 -31
- janito/plugins/auto_loader.py +11 -12
- janito/plugins/auto_loader_fixed.py +11 -12
- janito/{plugin_system → plugins}/base.py +2 -5
- janito/plugins/builtin.py +1 -15
- janito/plugins/core_adapter.py +11 -89
- janito/plugins/core_loader.py +120 -0
- janito/plugins/core_loader_fixed.py +125 -0
- janito/plugins/discovery.py +5 -5
- janito/plugins/discovery_core.py +9 -14
- janito/plugins/manager.py +1 -1
- janito/providers/__init__.py +0 -1
- janito/providers/alibaba/model_info.py +10 -0
- janito/providers/alibaba/provider.py +1 -3
- janito/providers/moonshot/model_info.py +7 -7
- janito/providers/moonshot/provider.py +1 -1
- janito/tools/__init__.py +7 -41
- janito/tools/adapters/__init__.py +1 -6
- janito/tools/adapters/local/__init__.py +70 -7
- janito/{plugins/tools/core → tools/adapters/local}/ask_user.py +3 -3
- janito/tools/adapters/local/copy_file.py +87 -0
- janito/tools/adapters/local/create_file.py +138 -0
- janito/{plugins/tools/core → tools/adapters/local}/fetch_url.py +23 -20
- janito/tools/adapters/local/move_file.py +131 -0
- janito/{plugins/tools/core → tools/adapters/local}/python_code_run.py +7 -23
- janito/{plugins/tools/core → tools/adapters/local}/python_command_run.py +5 -21
- janito/{plugins/tools/core → tools/adapters/local}/python_file_run.py +5 -21
- janito/tools/adapters/local/remove_file.py +58 -0
- janito/{plugins/tools/core → tools/adapters/local}/replace_text_in_file.py +4 -4
- janito/{plugins/tools/core → tools/adapters/local}/run_bash_command.py +3 -3
- janito/{plugins/tools/core → tools/adapters/local}/run_powershell_command.py +3 -3
- janito/{plugins/tools/core → tools/adapters/local}/show_image.py +6 -15
- janito/{plugins/core/imagedisplay/tools → tools/adapters/local}/show_image_grid.py +5 -13
- janito/tools/adapters/local/view_file.py +172 -0
- janito/tools/function_adapter.py +65 -0
- janito/tools/loop_protection_decorator.py +117 -114
- janito-3.8.0.dist-info/METADATA +84 -0
- janito-3.8.0.dist-info/RECORD +264 -0
- janito/cli/cli_commands/check_tools.py +0 -212
- janito/data/blocked.txt +0 -96
- janito/llm/cancellation_manager.py +0 -63
- janito/llm/enter_cancellation.py +0 -107
- janito/plugin_system/__init__.py +0 -10
- janito/plugin_system/core_loader.py +0 -217
- janito/plugin_system/core_loader_fixed.py +0 -225
- janito/plugins/core/__init__.py +0 -7
- janito/plugins/core/codeanalyzer/__init__.py +0 -43
- janito/plugins/core/filemanager/__init__.py +0 -124
- janito/plugins/core/filemanager/tools/copy_file.py +0 -87
- janito/plugins/core/filemanager/tools/create_file.py +0 -87
- janito/plugins/core/filemanager/tools/move_file.py +0 -131
- janito/plugins/core/filemanager/tools/remove_file.py +0 -58
- janito/plugins/core/filemanager/tools/replace_text_in_file.py +0 -270
- janito/plugins/core/filemanager/tools/view_file.py +0 -172
- janito/plugins/core/imagedisplay/__init__.py +0 -14
- janito/plugins/core/imagedisplay/plugin.py +0 -51
- janito/plugins/core/imagedisplay/tools/__init__.py +0 -1
- janito/plugins/core/imagedisplay/tools/show_image.py +0 -83
- janito/plugins/core/system/__init__.py +0 -23
- janito/plugins/core/system/tools/run_bash_command.py +0 -204
- janito/plugins/core/system/tools/run_powershell_command.py +0 -234
- janito/plugins/dev/__init__.py +0 -7
- janito/plugins/dev/pythondev/__init__.py +0 -37
- janito/plugins/dev/visualization/__init__.py +0 -23
- janito/plugins/example_plugin.py +0 -108
- janito/plugins/tools/__init__.py +0 -39
- janito/plugins/tools/core/__init__.py +0 -65
- janito/plugins/tools/core/copy_file.py +0 -87
- janito/plugins/tools/core/create_directory.py +0 -70
- janito/plugins/tools/core/create_file.py +0 -138
- janito/plugins/tools/core/decorators.py +0 -19
- janito/plugins/tools/core/delete_text_in_file.py +0 -134
- janito/plugins/tools/core/find_files.py +0 -143
- janito/plugins/tools/core/get_file_outline/__init__.py +0 -7
- janito/plugins/tools/core/get_file_outline/core.py +0 -122
- janito/plugins/tools/core/get_file_outline/java_outline.py +0 -47
- janito/plugins/tools/core/get_file_outline/markdown_outline.py +0 -14
- janito/plugins/tools/core/get_file_outline/python_outline.py +0 -303
- janito/plugins/tools/core/get_file_outline/search_outline.py +0 -36
- janito/plugins/tools/core/move_file.py +0 -131
- janito/plugins/tools/core/open_html_in_browser.py +0 -51
- janito/plugins/tools/core/open_url.py +0 -37
- janito/plugins/tools/core/read_chart.py +0 -259
- janito/plugins/tools/core/read_files.py +0 -58
- janito/plugins/tools/core/remove_directory.py +0 -55
- janito/plugins/tools/core/remove_file.py +0 -58
- janito/plugins/tools/core/search_text/__init__.py +0 -7
- janito/plugins/tools/core/search_text/core.py +0 -205
- janito/plugins/tools/core/search_text/match_lines.py +0 -67
- janito/plugins/tools/core/search_text/pattern_utils.py +0 -73
- janito/plugins/tools/core/search_text/traverse_directory.py +0 -145
- janito/plugins/tools/core/show_image_grid.py +0 -85
- janito/plugins/tools/core/validate_file_syntax/__init__.py +0 -7
- janito/plugins/tools/core/validate_file_syntax/core.py +0 -114
- janito/plugins/tools/core/validate_file_syntax/css_validator.py +0 -35
- janito/plugins/tools/core/validate_file_syntax/html_validator.py +0 -100
- janito/plugins/tools/core/validate_file_syntax/jinja2_validator.py +0 -50
- janito/plugins/tools/core/validate_file_syntax/js_validator.py +0 -27
- janito/plugins/tools/core/validate_file_syntax/json_validator.py +0 -6
- janito/plugins/tools/core/validate_file_syntax/markdown_validator.py +0 -109
- janito/plugins/tools/core/validate_file_syntax/ps1_validator.py +0 -32
- janito/plugins/tools/core/validate_file_syntax/python_validator.py +0 -5
- janito/plugins/tools/core/validate_file_syntax/xml_validator.py +0 -11
- janito/plugins/tools/core/validate_file_syntax/yaml_validator.py +0 -6
- janito/plugins/tools/core/view_file.py +0 -172
- janito/plugins/ui/__init__.py +0 -7
- janito/plugins/ui/userinterface/__init__.py +0 -16
- janito/plugins/ui/userinterface/tools/ask_user.py +0 -110
- janito/plugins/web/__init__.py +0 -7
- janito/plugins/web/webtools/__init__.py +0 -23
- janito/providers/together/__init__.py +0 -1
- janito/providers/together/model_info.py +0 -69
- janito/providers/together/provider.py +0 -108
- janito/tools/blocked_sites.py +0 -74
- janito/tools/cli_initializer.py +0 -88
- janito/tools/initialize.py +0 -70
- janito-3.6.1.dist-info/METADATA +0 -228
- janito-3.6.1.dist-info/RECORD +0 -339
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/create_directory.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/delete_text_in_file.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/find_files.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/__init__.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/core.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/java_outline.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/markdown_outline.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/python_outline.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/search_outline.py +0 -0
- /janito/{plugins/web/webtools/tools → tools/adapters/local}/open_html_in_browser.py +0 -0
- /janito/{plugins/web/webtools/tools → tools/adapters/local}/open_url.py +0 -0
- /janito/{plugins/dev/visualization/tools → tools/adapters/local}/read_chart.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/read_files.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/remove_directory.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/__init__.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/core.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/match_lines.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/pattern_utils.py +0 -0
- /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/traverse_directory.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/__init__.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/core.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/css_validator.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/html_validator.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/jinja2_validator.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/js_validator.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/json_validator.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/markdown_validator.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/ps1_validator.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/python_validator.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/xml_validator.py +0 -0
- /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/yaml_validator.py +0 -0
- {janito-3.6.1.dist-info → janito-3.8.0.dist-info}/WHEEL +0 -0
- {janito-3.6.1.dist-info → janito-3.8.0.dist-info}/entry_points.txt +0 -0
- {janito-3.6.1.dist-info → janito-3.8.0.dist-info}/licenses/LICENSE +0 -0
- {janito-3.6.1.dist-info → janito-3.8.0.dist-info}/top_level.txt +0 -0
@@ -1,205 +0,0 @@
|
|
1
|
-
from janito.tools.tool_base import ToolBase, ToolPermissions
|
2
|
-
from janito.report_events import ReportAction
|
3
|
-
from janito.tools.adapters.local.adapter import register_local_tool
|
4
|
-
from janito.tools.tool_utils import pluralize, display_path
|
5
|
-
from janito.i18n import tr
|
6
|
-
import os
|
7
|
-
from janito.tools.path_utils import expand_path
|
8
|
-
from .pattern_utils import prepare_pattern, format_result, summarize_total
|
9
|
-
from .match_lines import read_file_lines
|
10
|
-
from .traverse_directory import traverse_directory
|
11
|
-
from janito.tools.loop_protection_decorator import protect_against_loops
|
12
|
-
|
13
|
-
|
14
|
-
from ..decorators import register_core_tool
|
15
|
-
|
16
|
-
|
17
|
-
@register_core_tool
|
18
|
-
class SearchText(ToolBase):
|
19
|
-
"""
|
20
|
-
Search for a text query in all files within one or more directories or file paths and return matching lines or counts. Respects .gitignore.
|
21
|
-
Args:
|
22
|
-
paths (str): String of one or more paths (space-separated) to search in. Each path can be a directory or a file.
|
23
|
-
query (str): Text or regular expression to search for in files. Must not be empty. When use_regex=True, this is treated as a regex pattern; otherwise as plain text.
|
24
|
-
use_regex (bool): If True, treat query as a regular expression. If False, treat as plain text (default).
|
25
|
-
case_sensitive (bool): If False, perform a case-insensitive search. Default is True (case sensitive).
|
26
|
-
max_depth (int, optional): Maximum directory depth to search. If 0 (default), search is recursive with no depth limit. If >0, limits recursion to that depth. Setting max_depth=1 disables recursion (only top-level directory). Ignored for file paths.
|
27
|
-
max_results (int, optional): Maximum number of results to return. Defaults to 100. 0 means no limit.
|
28
|
-
count_only (bool): If True, return only the count of matches per file and total, not the matching lines. Default is False.
|
29
|
-
Returns:
|
30
|
-
str: If count_only is False, matching lines from files as a newline-separated string, each formatted as 'filepath:lineno: line'.
|
31
|
-
If count_only is True, returns per-file and total match counts.
|
32
|
-
If max_results is reached, appends a note to the output.
|
33
|
-
"""
|
34
|
-
|
35
|
-
permissions = ToolPermissions(read=True)
|
36
|
-
tool_name = "search_text"
|
37
|
-
|
38
|
-
def _handle_file(
|
39
|
-
self,
|
40
|
-
search_path,
|
41
|
-
query,
|
42
|
-
regex,
|
43
|
-
use_regex,
|
44
|
-
case_sensitive,
|
45
|
-
max_results,
|
46
|
-
total_results,
|
47
|
-
count_only,
|
48
|
-
):
|
49
|
-
if count_only:
|
50
|
-
match_count, dir_limit_reached, _ = read_file_lines(
|
51
|
-
search_path,
|
52
|
-
query,
|
53
|
-
regex,
|
54
|
-
use_regex,
|
55
|
-
case_sensitive,
|
56
|
-
True,
|
57
|
-
max_results,
|
58
|
-
total_results,
|
59
|
-
)
|
60
|
-
per_file_counts = [(search_path, match_count)] if match_count > 0 else []
|
61
|
-
return [], dir_limit_reached, per_file_counts
|
62
|
-
else:
|
63
|
-
dir_output, dir_limit_reached, match_count_list = read_file_lines(
|
64
|
-
search_path,
|
65
|
-
query,
|
66
|
-
regex,
|
67
|
-
use_regex,
|
68
|
-
case_sensitive,
|
69
|
-
False,
|
70
|
-
max_results,
|
71
|
-
total_results,
|
72
|
-
)
|
73
|
-
per_file_counts = (
|
74
|
-
[(search_path, len(match_count_list))]
|
75
|
-
if match_count_list and len(match_count_list) > 0
|
76
|
-
else []
|
77
|
-
)
|
78
|
-
return dir_output, dir_limit_reached, per_file_counts
|
79
|
-
|
80
|
-
def _handle_path(
|
81
|
-
self,
|
82
|
-
search_path,
|
83
|
-
query,
|
84
|
-
regex,
|
85
|
-
use_regex,
|
86
|
-
case_sensitive,
|
87
|
-
max_depth,
|
88
|
-
max_results,
|
89
|
-
total_results,
|
90
|
-
count_only,
|
91
|
-
):
|
92
|
-
info_str = tr(
|
93
|
-
"🔍 Search {search_type} '{query}' in '{disp_path}'",
|
94
|
-
search_type=("regex" if use_regex else "text"),
|
95
|
-
query=query,
|
96
|
-
disp_path=display_path(search_path),
|
97
|
-
)
|
98
|
-
if max_depth > 0:
|
99
|
-
info_str += tr(" [max_depth={max_depth}]", max_depth=max_depth)
|
100
|
-
if count_only:
|
101
|
-
info_str += " [count]"
|
102
|
-
self.report_action(info_str, ReportAction.READ)
|
103
|
-
if os.path.isfile(search_path):
|
104
|
-
dir_output, dir_limit_reached, per_file_counts = self._handle_file(
|
105
|
-
search_path,
|
106
|
-
query,
|
107
|
-
regex,
|
108
|
-
use_regex,
|
109
|
-
case_sensitive,
|
110
|
-
max_results,
|
111
|
-
total_results,
|
112
|
-
count_only,
|
113
|
-
)
|
114
|
-
else:
|
115
|
-
if count_only:
|
116
|
-
per_file_counts, dir_limit_reached, _ = traverse_directory(
|
117
|
-
search_path,
|
118
|
-
query,
|
119
|
-
regex,
|
120
|
-
use_regex,
|
121
|
-
case_sensitive,
|
122
|
-
max_depth,
|
123
|
-
max_results,
|
124
|
-
total_results,
|
125
|
-
True,
|
126
|
-
)
|
127
|
-
dir_output = []
|
128
|
-
else:
|
129
|
-
dir_output, dir_limit_reached, per_file_counts = traverse_directory(
|
130
|
-
search_path,
|
131
|
-
query,
|
132
|
-
regex,
|
133
|
-
use_regex,
|
134
|
-
case_sensitive,
|
135
|
-
max_depth,
|
136
|
-
max_results,
|
137
|
-
total_results,
|
138
|
-
False,
|
139
|
-
)
|
140
|
-
count = sum(count for _, count in per_file_counts)
|
141
|
-
file_word = pluralize("match", count)
|
142
|
-
num_files = len(per_file_counts)
|
143
|
-
file_label = pluralize("file", num_files)
|
144
|
-
file_word_max = file_word + (" (max)" if dir_limit_reached else "")
|
145
|
-
self.report_success(
|
146
|
-
tr(
|
147
|
-
" ✅ {count} {file_word}/{num_files} {file_label}",
|
148
|
-
count=count,
|
149
|
-
file_word=file_word_max,
|
150
|
-
num_files=num_files,
|
151
|
-
file_label=file_label,
|
152
|
-
),
|
153
|
-
ReportAction.READ,
|
154
|
-
)
|
155
|
-
return info_str, dir_output, dir_limit_reached, per_file_counts
|
156
|
-
|
157
|
-
@protect_against_loops(max_calls=5, time_window=10.0, key_field="paths")
|
158
|
-
def run(
|
159
|
-
self,
|
160
|
-
paths: str,
|
161
|
-
query: str,
|
162
|
-
use_regex: bool = False,
|
163
|
-
case_sensitive: bool = False,
|
164
|
-
max_depth: int = 0,
|
165
|
-
max_results: int = 100,
|
166
|
-
count_only: bool = False,
|
167
|
-
) -> str:
|
168
|
-
regex, use_regex, error_msg = prepare_pattern(
|
169
|
-
query, use_regex, case_sensitive, self.report_error, self.report_warning
|
170
|
-
)
|
171
|
-
if error_msg:
|
172
|
-
return error_msg
|
173
|
-
paths_list = [expand_path(p) for p in paths.split()]
|
174
|
-
results = []
|
175
|
-
all_per_file_counts = []
|
176
|
-
for search_path in paths_list:
|
177
|
-
info_str, dir_output, dir_limit_reached, per_file_counts = (
|
178
|
-
self._handle_path(
|
179
|
-
search_path,
|
180
|
-
query,
|
181
|
-
regex,
|
182
|
-
use_regex,
|
183
|
-
case_sensitive,
|
184
|
-
max_depth,
|
185
|
-
max_results,
|
186
|
-
0,
|
187
|
-
count_only,
|
188
|
-
)
|
189
|
-
)
|
190
|
-
if count_only:
|
191
|
-
all_per_file_counts.extend(per_file_counts)
|
192
|
-
result_str = format_result(
|
193
|
-
query,
|
194
|
-
use_regex,
|
195
|
-
dir_output,
|
196
|
-
dir_limit_reached,
|
197
|
-
count_only,
|
198
|
-
per_file_counts,
|
199
|
-
)
|
200
|
-
results.append(info_str + "\n" + result_str)
|
201
|
-
if dir_limit_reached:
|
202
|
-
break
|
203
|
-
if count_only:
|
204
|
-
results.append(summarize_total(all_per_file_counts))
|
205
|
-
return "\n\n".join(results)
|
@@ -1,67 +0,0 @@
|
|
1
|
-
import re
|
2
|
-
from janito.gitignore_utils import GitignoreFilter
|
3
|
-
import os
|
4
|
-
|
5
|
-
|
6
|
-
def is_binary_file(path, blocksize=1024):
|
7
|
-
try:
|
8
|
-
with open(path, "rb") as f:
|
9
|
-
chunk = f.read(blocksize)
|
10
|
-
if b"\0" in chunk:
|
11
|
-
return True
|
12
|
-
text_characters = bytearray(
|
13
|
-
{7, 8, 9, 10, 12, 13, 27} | set(range(0x20, 0x100))
|
14
|
-
)
|
15
|
-
nontext = chunk.translate(None, text_characters)
|
16
|
-
if len(nontext) / max(1, len(chunk)) > 0.3:
|
17
|
-
return True
|
18
|
-
except Exception:
|
19
|
-
return True
|
20
|
-
return False
|
21
|
-
|
22
|
-
|
23
|
-
def match_line(line, query, regex, use_regex, case_sensitive):
|
24
|
-
if use_regex:
|
25
|
-
return regex and regex.search(line)
|
26
|
-
if not case_sensitive:
|
27
|
-
return query.lower() in line.lower()
|
28
|
-
return query in line
|
29
|
-
|
30
|
-
|
31
|
-
def should_limit(max_results, total_results, match_count, count_only, dir_output):
|
32
|
-
if max_results > 0:
|
33
|
-
current_count = total_results + (match_count if count_only else len(dir_output))
|
34
|
-
return current_count >= max_results
|
35
|
-
return False
|
36
|
-
|
37
|
-
|
38
|
-
def read_file_lines(
|
39
|
-
path,
|
40
|
-
query,
|
41
|
-
regex,
|
42
|
-
use_regex,
|
43
|
-
case_sensitive,
|
44
|
-
count_only,
|
45
|
-
max_results,
|
46
|
-
total_results,
|
47
|
-
):
|
48
|
-
dir_output = []
|
49
|
-
dir_limit_reached = False
|
50
|
-
match_count = 0
|
51
|
-
if not is_binary_file(path):
|
52
|
-
try:
|
53
|
-
open_kwargs = {"mode": "r", "encoding": "utf-8"}
|
54
|
-
with open(path, **open_kwargs) as f:
|
55
|
-
for lineno, line in enumerate(f, 1):
|
56
|
-
if match_line(line, query, regex, use_regex, case_sensitive):
|
57
|
-
match_count += 1
|
58
|
-
if not count_only:
|
59
|
-
dir_output.append(f"{path}:{lineno}: {line.rstrip()}")
|
60
|
-
if should_limit(
|
61
|
-
max_results, total_results, match_count, count_only, dir_output
|
62
|
-
):
|
63
|
-
dir_limit_reached = True
|
64
|
-
break
|
65
|
-
except Exception:
|
66
|
-
pass
|
67
|
-
return match_count, dir_limit_reached, dir_output
|
@@ -1,73 +0,0 @@
|
|
1
|
-
import re
|
2
|
-
from janito.i18n import tr
|
3
|
-
from janito.tools.tool_utils import pluralize
|
4
|
-
|
5
|
-
|
6
|
-
def prepare_pattern(pattern, is_regex, case_sensitive, report_error, report_warning):
|
7
|
-
if not pattern:
|
8
|
-
report_error(
|
9
|
-
tr("Error: Empty search pattern provided. Operation aborted."),
|
10
|
-
ReportAction.SEARCH,
|
11
|
-
)
|
12
|
-
return (
|
13
|
-
None,
|
14
|
-
False,
|
15
|
-
tr("Error: Empty search pattern provided. Operation aborted."),
|
16
|
-
)
|
17
|
-
regex = None
|
18
|
-
use_regex = False
|
19
|
-
if is_regex:
|
20
|
-
try:
|
21
|
-
flags = 0
|
22
|
-
if not case_sensitive:
|
23
|
-
flags |= re.IGNORECASE
|
24
|
-
regex = re.compile(pattern, flags=flags)
|
25
|
-
use_regex = True
|
26
|
-
except re.error as e:
|
27
|
-
report_warning(tr("⚠️ Invalid regex pattern."))
|
28
|
-
return (
|
29
|
-
None,
|
30
|
-
False,
|
31
|
-
tr(
|
32
|
-
"Error: Invalid regex pattern: {error}. Operation aborted.", error=e
|
33
|
-
),
|
34
|
-
)
|
35
|
-
else:
|
36
|
-
# Do not compile as regex if is_regex is False; treat as plain text
|
37
|
-
regex = None
|
38
|
-
use_regex = False
|
39
|
-
if not case_sensitive:
|
40
|
-
pattern = pattern.lower()
|
41
|
-
return regex, use_regex, None
|
42
|
-
|
43
|
-
|
44
|
-
def format_result(
|
45
|
-
query, use_regex, output, limit_reached, count_only=False, per_file_counts=None
|
46
|
-
):
|
47
|
-
# Ensure output is always a list for joining
|
48
|
-
if output is None or not isinstance(output, (list, tuple)):
|
49
|
-
output = []
|
50
|
-
if count_only:
|
51
|
-
lines = []
|
52
|
-
total = 0
|
53
|
-
if per_file_counts:
|
54
|
-
for path, count in per_file_counts:
|
55
|
-
lines.append(f"{path}: {count}")
|
56
|
-
total += count
|
57
|
-
lines.append(f"Total matches: {total}")
|
58
|
-
if limit_reached:
|
59
|
-
lines.append(tr("[Max results reached. Output truncated.]"))
|
60
|
-
return "\n".join(lines)
|
61
|
-
else:
|
62
|
-
if not output:
|
63
|
-
return tr("No matches found.")
|
64
|
-
result = "\n".join(output)
|
65
|
-
if limit_reached:
|
66
|
-
result += tr("\n[Max results reached. Output truncated.]")
|
67
|
-
return result
|
68
|
-
|
69
|
-
|
70
|
-
def summarize_total(all_per_file_counts):
|
71
|
-
total = sum(count for _, count in all_per_file_counts)
|
72
|
-
summary = f"\nGrand total matches: {total}"
|
73
|
-
return summary
|
@@ -1,145 +0,0 @@
|
|
1
|
-
import os
|
2
|
-
from janito.gitignore_utils import GitignoreFilter
|
3
|
-
from .match_lines import match_line, should_limit, read_file_lines
|
4
|
-
|
5
|
-
|
6
|
-
def walk_directory(search_path, max_depth):
|
7
|
-
if max_depth == 1:
|
8
|
-
walk_result = next(os.walk(search_path), None)
|
9
|
-
if walk_result is None:
|
10
|
-
return [(search_path, [], [])]
|
11
|
-
else:
|
12
|
-
return [walk_result]
|
13
|
-
else:
|
14
|
-
return os.walk(search_path)
|
15
|
-
|
16
|
-
|
17
|
-
def filter_dirs(dirs, root, gitignore_filter):
|
18
|
-
# Always exclude directories named .git, regardless of gitignore
|
19
|
-
return [
|
20
|
-
d
|
21
|
-
for d in dirs
|
22
|
-
if d != ".git" and not gitignore_filter.is_ignored(os.path.join(root, d))
|
23
|
-
]
|
24
|
-
|
25
|
-
|
26
|
-
def process_file_count_only(
|
27
|
-
path,
|
28
|
-
per_file_counts,
|
29
|
-
query,
|
30
|
-
regex,
|
31
|
-
use_regex,
|
32
|
-
case_sensitive,
|
33
|
-
max_results,
|
34
|
-
total_results,
|
35
|
-
):
|
36
|
-
match_count, file_limit_reached, _ = read_file_lines(
|
37
|
-
path,
|
38
|
-
query,
|
39
|
-
regex,
|
40
|
-
use_regex,
|
41
|
-
case_sensitive,
|
42
|
-
True,
|
43
|
-
max_results,
|
44
|
-
total_results + sum(count for _, count in per_file_counts),
|
45
|
-
)
|
46
|
-
if match_count > 0:
|
47
|
-
per_file_counts.append((path, match_count))
|
48
|
-
return file_limit_reached
|
49
|
-
|
50
|
-
|
51
|
-
def process_file_collect(
|
52
|
-
path,
|
53
|
-
dir_output,
|
54
|
-
per_file_counts,
|
55
|
-
query,
|
56
|
-
regex,
|
57
|
-
use_regex,
|
58
|
-
case_sensitive,
|
59
|
-
max_results,
|
60
|
-
total_results,
|
61
|
-
):
|
62
|
-
actual_match_count, file_limit_reached, file_lines_output = read_file_lines(
|
63
|
-
path,
|
64
|
-
query,
|
65
|
-
regex,
|
66
|
-
use_regex,
|
67
|
-
case_sensitive,
|
68
|
-
False,
|
69
|
-
max_results,
|
70
|
-
total_results + len(dir_output),
|
71
|
-
)
|
72
|
-
dir_output.extend(file_lines_output)
|
73
|
-
if actual_match_count > 0:
|
74
|
-
per_file_counts.append((path, actual_match_count))
|
75
|
-
return file_limit_reached
|
76
|
-
|
77
|
-
|
78
|
-
def should_limit_depth(root, search_path, max_depth, dirs):
|
79
|
-
if max_depth > 0:
|
80
|
-
rel_root = os.path.relpath(root, search_path)
|
81
|
-
if rel_root != ".":
|
82
|
-
depth = rel_root.count(os.sep) + 1
|
83
|
-
if depth >= max_depth:
|
84
|
-
del dirs[:]
|
85
|
-
|
86
|
-
|
87
|
-
def traverse_directory(
|
88
|
-
search_path,
|
89
|
-
query,
|
90
|
-
regex,
|
91
|
-
use_regex,
|
92
|
-
case_sensitive,
|
93
|
-
max_depth,
|
94
|
-
max_results,
|
95
|
-
total_results,
|
96
|
-
count_only,
|
97
|
-
):
|
98
|
-
dir_output = []
|
99
|
-
dir_limit_reached = False
|
100
|
-
per_file_counts = []
|
101
|
-
walker = walk_directory(search_path, max_depth)
|
102
|
-
gitignore_filter = GitignoreFilter(search_path)
|
103
|
-
|
104
|
-
for root, dirs, files in walker:
|
105
|
-
dirs[:] = filter_dirs(dirs, root, gitignore_filter)
|
106
|
-
for file in files:
|
107
|
-
path = os.path.join(root, file)
|
108
|
-
if gitignore_filter.is_ignored(path):
|
109
|
-
continue
|
110
|
-
if count_only:
|
111
|
-
file_limit_reached = process_file_count_only(
|
112
|
-
path,
|
113
|
-
per_file_counts,
|
114
|
-
query,
|
115
|
-
regex,
|
116
|
-
use_regex,
|
117
|
-
case_sensitive,
|
118
|
-
max_results,
|
119
|
-
total_results,
|
120
|
-
)
|
121
|
-
if file_limit_reached:
|
122
|
-
dir_limit_reached = True
|
123
|
-
break
|
124
|
-
else:
|
125
|
-
file_limit_reached = process_file_collect(
|
126
|
-
path,
|
127
|
-
dir_output,
|
128
|
-
per_file_counts,
|
129
|
-
query,
|
130
|
-
regex,
|
131
|
-
use_regex,
|
132
|
-
case_sensitive,
|
133
|
-
max_results,
|
134
|
-
total_results,
|
135
|
-
)
|
136
|
-
if file_limit_reached:
|
137
|
-
dir_limit_reached = True
|
138
|
-
break
|
139
|
-
if dir_limit_reached:
|
140
|
-
break
|
141
|
-
should_limit_depth(root, search_path, max_depth, dirs)
|
142
|
-
if count_only:
|
143
|
-
return per_file_counts, dir_limit_reached, []
|
144
|
-
else:
|
145
|
-
return dir_output, dir_limit_reached, per_file_counts
|
@@ -1,85 +0,0 @@
|
|
1
|
-
from janito.tools.tool_base import ToolBase, ToolPermissions
|
2
|
-
from janito.report_events import ReportAction
|
3
|
-
from .decorators import register_core_tool
|
4
|
-
from janito.i18n import tr
|
5
|
-
from janito.tools.loop_protection_decorator import protect_against_loops
|
6
|
-
from typing import Sequence
|
7
|
-
|
8
|
-
|
9
|
-
@register_core_tool
|
10
|
-
class ShowImageGrid(ToolBase):
|
11
|
-
"""Display multiple images in a grid inline in the terminal using rich.
|
12
|
-
|
13
|
-
Args:
|
14
|
-
paths (list[str]): List of image file paths.
|
15
|
-
columns (int, optional): Number of columns in the grid. Default: 2.
|
16
|
-
width (int, optional): Max width for each image cell. Default: None (auto).
|
17
|
-
height (int, optional): Max height for each image cell. Default: None (auto).
|
18
|
-
preserve_aspect (bool, optional): Preserve aspect ratio. Default: True.
|
19
|
-
|
20
|
-
Returns:
|
21
|
-
str: Status string summarizing the grid display.
|
22
|
-
"""
|
23
|
-
|
24
|
-
permissions = ToolPermissions(read=True)
|
25
|
-
tool_name = "show_image_grid"
|
26
|
-
|
27
|
-
@protect_against_loops(max_calls=5, time_window=10.0, key_field="paths")
|
28
|
-
def run(
|
29
|
-
self,
|
30
|
-
paths: Sequence[str],
|
31
|
-
columns: int = 2,
|
32
|
-
width: int | None = None,
|
33
|
-
height: int | None = None,
|
34
|
-
preserve_aspect: bool = True,
|
35
|
-
) -> str:
|
36
|
-
from janito.tools.path_utils import expand_path
|
37
|
-
from janito.tools.tool_utils import display_path
|
38
|
-
import os
|
39
|
-
|
40
|
-
try:
|
41
|
-
from rich.console import Console
|
42
|
-
from rich.columns import Columns
|
43
|
-
from PIL import Image as PILImage
|
44
|
-
from rich.panel import Panel
|
45
|
-
except Exception as e:
|
46
|
-
msg = tr("⚠️ Missing dependency: PIL/Pillow ({error})", error=e)
|
47
|
-
self.report_error(msg)
|
48
|
-
return msg
|
49
|
-
|
50
|
-
if not paths:
|
51
|
-
return tr("No images provided")
|
52
|
-
|
53
|
-
self.report_action(
|
54
|
-
tr("🖼️ Show image grid ({n} images)", n=len(paths)), ReportAction.READ
|
55
|
-
)
|
56
|
-
|
57
|
-
console = Console()
|
58
|
-
images = []
|
59
|
-
shown = 0
|
60
|
-
for p in paths:
|
61
|
-
fp = expand_path(p)
|
62
|
-
if not os.path.exists(fp):
|
63
|
-
self.report_warning(tr("❗ not found: {p}", p=display_path(fp)))
|
64
|
-
continue
|
65
|
-
try:
|
66
|
-
img = PILImage.open(fp)
|
67
|
-
title = f"{display_path(fp)} ({img.width}x{img.height})"
|
68
|
-
images.append(
|
69
|
-
Panel.fit(title, title=display_path(fp), border_style="dim")
|
70
|
-
)
|
71
|
-
shown += 1
|
72
|
-
except Exception as e:
|
73
|
-
self.report_warning(tr("⚠️ Skipped {p}: {e}", p=display_path(fp), e=e))
|
74
|
-
|
75
|
-
if not images:
|
76
|
-
return tr("No images could be displayed")
|
77
|
-
|
78
|
-
console.print(Columns(images, equal=True, expand=True, columns=columns))
|
79
|
-
self.report_success(tr("✅ Displayed {n} images", n=shown))
|
80
|
-
return tr(
|
81
|
-
"Displayed {shown}/{total} images in a {cols}x? grid",
|
82
|
-
shown=shown,
|
83
|
-
total=len(paths),
|
84
|
-
cols=columns,
|
85
|
-
)
|
@@ -1,114 +0,0 @@
|
|
1
|
-
import os
|
2
|
-
from janito.tools.path_utils import expand_path
|
3
|
-
from janito.i18n import tr
|
4
|
-
from janito.tools.tool_base import ToolBase, ToolPermissions
|
5
|
-
from janito.report_events import ReportAction
|
6
|
-
from janito.tools.adapters.local.adapter import register_local_tool
|
7
|
-
from janito.tools.tool_utils import display_path
|
8
|
-
from ..decorators import register_core_tool as register_tool
|
9
|
-
|
10
|
-
from .python_validator import validate_python
|
11
|
-
from .json_validator import validate_json
|
12
|
-
from .yaml_validator import validate_yaml
|
13
|
-
from .ps1_validator import validate_ps1
|
14
|
-
from .xml_validator import validate_xml
|
15
|
-
from .html_validator import validate_html
|
16
|
-
from .markdown_validator import validate_markdown
|
17
|
-
from .js_validator import validate_js
|
18
|
-
from .css_validator import validate_css
|
19
|
-
from .jinja2_validator import validate_jinja2
|
20
|
-
from janito.tools.loop_protection_decorator import protect_against_loops
|
21
|
-
|
22
|
-
|
23
|
-
def _get_validator(ext):
|
24
|
-
"""Return the appropriate validator function for the file extension."""
|
25
|
-
mapping = {
|
26
|
-
".py": validate_python,
|
27
|
-
".pyw": validate_python,
|
28
|
-
".json": validate_json,
|
29
|
-
".yml": validate_yaml,
|
30
|
-
".yaml": validate_yaml,
|
31
|
-
".ps1": validate_ps1,
|
32
|
-
".xml": validate_xml,
|
33
|
-
".html": validate_html,
|
34
|
-
".htm": validate_html,
|
35
|
-
".md": validate_markdown,
|
36
|
-
".js": validate_js,
|
37
|
-
".css": validate_css,
|
38
|
-
".j2": validate_jinja2,
|
39
|
-
".jinja2": validate_jinja2,
|
40
|
-
}
|
41
|
-
return mapping.get(ext)
|
42
|
-
|
43
|
-
|
44
|
-
def _handle_validation_error(e, report_warning):
|
45
|
-
msg = tr("⚠️ Warning: Syntax error: {error}", error=e)
|
46
|
-
if report_warning:
|
47
|
-
report_warning(msg)
|
48
|
-
return msg
|
49
|
-
|
50
|
-
|
51
|
-
def validate_file_syntax(
|
52
|
-
path: str, report_info=None, report_warning=None, report_success=None
|
53
|
-
) -> str:
|
54
|
-
ext = os.path.splitext(path)[1].lower()
|
55
|
-
validator = _get_validator(ext)
|
56
|
-
try:
|
57
|
-
if validator:
|
58
|
-
return validator(path)
|
59
|
-
else:
|
60
|
-
msg = tr("⚠️ Warning: Unsupported file extension: {ext}", ext=ext)
|
61
|
-
if report_warning:
|
62
|
-
report_warning(msg)
|
63
|
-
return msg
|
64
|
-
except Exception as e:
|
65
|
-
return _handle_validation_error(e, report_warning)
|
66
|
-
|
67
|
-
|
68
|
-
class ValidateFileSyntax(ToolBase):
|
69
|
-
"""
|
70
|
-
Validate a file for syntax issues.
|
71
|
-
|
72
|
-
Supported types:
|
73
|
-
- Python (.py, .pyw)
|
74
|
-
- JSON (.json)
|
75
|
-
- YAML (.yml, .yaml)
|
76
|
-
- PowerShell (.ps1)
|
77
|
-
- XML (.xml)
|
78
|
-
- HTML (.html, .htm) [lxml]
|
79
|
-
- Markdown (.md)
|
80
|
-
- JavaScript (.js)
|
81
|
-
- Jinja2 templates (.j2, .jinja2)
|
82
|
-
|
83
|
-
Args:
|
84
|
-
path (str): Path to the file to validate.
|
85
|
-
Returns:
|
86
|
-
str: Validation status message. Example:
|
87
|
-
- "✅ Syntax OK"
|
88
|
-
- "⚠️ Warning: Syntax error: <error message>"
|
89
|
-
- "⚠️ Warning: Unsupported file extension: <ext>"
|
90
|
-
"""
|
91
|
-
|
92
|
-
permissions = ToolPermissions(read=True)
|
93
|
-
tool_name = "validate_file_syntax"
|
94
|
-
|
95
|
-
@protect_against_loops(max_calls=5, time_window=10.0, key_field="path")
|
96
|
-
def run(self, path: str) -> str:
|
97
|
-
path = expand_path(path)
|
98
|
-
disp_path = display_path(path)
|
99
|
-
self.report_action(
|
100
|
-
tr(
|
101
|
-
"🔎 Validate syntax for file '{disp_path}' ...",
|
102
|
-
disp_path=disp_path,
|
103
|
-
),
|
104
|
-
ReportAction.READ,
|
105
|
-
)
|
106
|
-
result = validate_file_syntax(
|
107
|
-
path,
|
108
|
-
report_warning=self.report_warning,
|
109
|
-
report_success=self.report_success,
|
110
|
-
)
|
111
|
-
if result.startswith("✅"):
|
112
|
-
self.report_success(result, ReportAction.READ)
|
113
|
-
|
114
|
-
return result
|