Skip to content

Commit 0475cc5

Browse files
committed
[IMP] util.snippets: add logging of minimal stats in html conversions
Store and return the number of matched and converted record's values that are processed by `convert_html_columns()`. Add a `verbose=False` optional argument in `convert_html_content()` that collects these stats and logs them. Also, do the same in `util.views.records.convert_html_fields()`.
1 parent 596861b commit 0475cc5

File tree

2 files changed

+47
-5
lines changed

2 files changed

+47
-5
lines changed

src/util/snippets.py

+28-2
Original file line numberDiff line numberDiff line change
@@ -275,13 +275,19 @@ def convert_html_columns(cr, table, columns, converter_callback, where_column="I
275275
update_sql = ", ".join(f'"{column}" = %({column})s' for column in columns)
276276
update_query = f"UPDATE {table} SET {update_sql} WHERE id = %(id)s"
277277

278+
matched_count = 0
279+
converted_count = 0
278280
with ProcessPoolExecutor(max_workers=util.get_max_workers()) as executor:
279281
convert = Convertor(converters, converter_callback)
280282
for query in util.log_progress(split_queries, logger=_logger, qualifier=f"{table} updates"):
281283
cr.execute(query)
282284
for data in executor.map(convert, cr.fetchall()):
285+
matched_count += 1
283286
if "id" in data:
284287
cr.execute(update_query, data)
288+
converted_count += 1
289+
290+
return matched_count, converted_count
285291

286292

287293
def determine_chunk_limit_ids(cr, table, column_arr, where):
@@ -304,6 +310,7 @@ def convert_html_content(
304310
cr,
305311
converter_callback,
306312
where_column="IS NOT NULL",
313+
verbose=False,
307314
**kwargs,
308315
):
309316
r"""
@@ -316,16 +323,35 @@ def convert_html_content(
316323
:param str where_column: filtering such as
317324
- "like '%abc%xyz%'"
318325
- "~* '\yabc.*xyz\y'"
326+
:param bool verbose: print stats about the conversion
319327
:param dict kwargs: extra keyword arguments to pass to :func:`convert_html_column`
320328
"""
321-
convert_html_columns(
329+
if verbose:
330+
_logger.info("Converting html fields data using %s", repr(converter_callback))
331+
332+
matched_count = 0
333+
converted_count = 0
334+
335+
matched, converted = convert_html_columns(
322336
cr,
323337
"ir_ui_view",
324338
["arch_db"],
325339
converter_callback,
326340
where_column=where_column,
327341
**dict(kwargs, extra_where="type = 'qweb'"),
328342
)
343+
matched_count += matched
344+
converted_count += converted
329345

330346
for table, columns in html_fields(cr):
331-
convert_html_columns(cr, table, columns, converter_callback, where_column=where_column, **kwargs)
347+
matched, converted = convert_html_columns(
348+
cr, table, columns, converter_callback, where_column=where_column, **kwargs
349+
)
350+
matched_count += matched
351+
converted_count += converted
352+
353+
if verbose:
354+
if matched_count:
355+
_logger.info("Converted %d/%d matched html fields values", converted_count, matched_count)
356+
else:
357+
_logger.info("Did not match any html fields values to convert")

src/util/views/convert.py

+19-3
Original file line numberDiff line numberDiff line change
@@ -1198,17 +1198,22 @@ def convert_qweb_views(cr, converter):
11981198
if views_ids:
11991199
convert_views(cr, views_ids, converter)
12001200

1201-
def convert_html_fields(cr, converter):
1201+
def convert_html_fields(cr, converter, verbose=False):
12021202
"""
12031203
Convert all html fields data in the database using the provided converter.
12041204
12051205
:param psycopg2.cursor cr: the database cursor.
12061206
:param EtreeConverter converter: the converter to use.
1207+
:param bool verbose: whether to print stats about the conversion.
12071208
:rtype: None
12081209
12091210
:meta private: exclude from online docs
12101211
"""
1211-
_logger.info("Converting html fields data using %s", repr(converter))
1212+
if verbose:
1213+
_logger.info("Converting html fields data using %s", repr(converter))
1214+
1215+
matched_count = 0
1216+
converted_count = 0
12121217

12131218
html_fields = list(snippets.html_fields(cr))
12141219
for table, columns in misc.log_progress(html_fields, _logger, "tables", log_hundred_percent=True):
@@ -1217,7 +1222,18 @@ def convert_html_fields(cr, converter):
12171222
"(%s)" % converter.build_where_clause(cr, pg.get_value_or_en_translation(cr, table, column))
12181223
for column in columns
12191224
)
1220-
snippets.convert_html_columns(cr, table, columns, converter.convert_callback, extra_where=extra_where)
1225+
# TODO abt: adapt to refactor, maybe make snippets compat w/ converter, instead of adapting?
1226+
matched, converted = snippets.convert_html_columns(
1227+
cr, table, columns, converter.convert_callback, extra_where=extra_where
1228+
)
1229+
matched_count += matched
1230+
converted_count += converted
1231+
1232+
if verbose:
1233+
if matched_count:
1234+
_logger.info("Converted %d/%d matched html fields values", converted_count, matched_count)
1235+
else:
1236+
_logger.info("Did not match any html fields values to convert")
12211237

12221238
else:
12231239

0 commit comments

Comments
 (0)