当前位置: 首页 > news >正文

在Qt中判断输入的js脚本是否只包含函数

目前在使用QtScriptEngine,在利用evaluate注册子函数时,要求用户输入的js文件中的内容仅仅是函数,函数体外不能出现一些变量的声明、函数的调用等其他代码。
反复咨询DeepSeek后,终于给出了一个目前测试可用的代码:

bool isPureFunctions(const QString& code) {enum State {Normal,InFunctionBody,InLineComment,InBlockComment,InString};State state = Normal;int braceDepth = 0;bool hasFunction = false;QChar stringQuote;int functionStartDepth = 0;  // 记录函数起始层级的栈for (int i = 0; i < code.length(); ++i) {const QChar c = code[i];const QChar next = (i < code.length()-1) ? code[i+1] : QChar();switch (state) {case Normal:if (c.isSpace()) {continue;} else if (c == '/' && next == '*') {state = InBlockComment;i++; // 跳过 *} else if (c == '/' && next == '/') {state = InLineComment;i++; // 跳过 /} else if (c == 'f' && code.mid(i, 8) == "function") {// 进入函数声明i += 7; // 跳过 "function"state = InFunctionBody;braceDepth = 0;hasFunction = true;functionStartDepth = 0; // 重置层级计数器} else {// 非函数代码立即拒绝if (hasFunction) return false; // 函数后出现其他代码else return false;              // 函数外出现其他代码}break;case InFunctionBody:if (c == '{') {braceDepth++;if (braceDepth == 1) functionStartDepth = i; // 记录函数起始位置} else if (c == '}') {if (--braceDepth == 0) {state = Normal; // 函数体结束} else if (braceDepth < 0) {return false;   // 花括号不匹配}} else if (c == '"' || c == '\'' || c == '`') {state = InString;stringQuote = c;}break;case InLineComment:if (c == '\n') state = Normal;break;case InBlockComment:if (c == '*' && next == '/') {state = Normal;i++; // 跳过 /}break;case InString:if (c == stringQuote && (i == 0 || code[i-1] != '\\')) {state = InFunctionBody;}break;}}// 最终必须回到Normal状态且至少有一个函数return state == Normal && hasFunction;
}

测试:

// 应返回 true 的有效用例
QString validCode = "function foo1(){}\n""function foo2(){ if(true){} }";
qDebug() << isPureFunctions(validCode); // 输出 true// 应返回 false 的无效用例
QString invalidCode = "function foo(){}\n""console.log(123);\n""function bar(){}";
qDebug() << isPureFunctions(invalidCode); // 输出 false

http://www.mrgr.cn/news/96477.html

相关文章:

  • fluent_UDF学习笔记
  • 横扫SQL面试——连续性登录问题
  • 在bootstrap下实现万年历
  • Muduo网络库实现 [二] - Buffer模块
  • 基于自定义注解+反射+AOP+Redis的通用开关设计:在投行交易与风控系统的落地实践
  • SpringBoot 概述
  • Dubbo分布式开发框架
  • 机器学习课程
  • 深入解析音频:格式、同步及封装容器
  • 一文聊聊接入钉钉H5微应用系统实现免登操作技术思路实现验证
  • 【导航定位】GNSS数据协议-RINEX OBS
  • iOS审核被拒:Missing privacy manifest 第三方库添加隐私声明文件
  • 最小二乘求解器lstsq,处理带权重和L2正则的线性回归
  • nlf 原理剖析
  • 人工智能通识速览一(神经网络)(编辑中)
  • 【橘子大模型】ollama启动
  • 简单文字验证码人机验证【Java】
  • 阿里 FunASR 开源中文语音识别大模型应用示例(准确率比faster-whisper高)
  • 知识体系_统计学_05_参数估计
  • Java基础 3.30