code.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. <?php
  2. # 定义几个常用的选项
  3. $option = array
  4. (
  5. 1 => '可用',
  6. 2 => '不可用',
  7. );
  8. $front = array
  9. (
  10. 1 => '可用',
  11. 2 => '不可用',
  12. );
  13. $show_type = array
  14. (
  15. 1 => '数据区',
  16. 2 => '状态区',
  17. 100 => '不显示',
  18. );
  19. $type = array
  20. (
  21. 1 => '否',
  22. 2 => '是',
  23. );
  24. $status = array
  25. (
  26. 1 => '显式',
  27. 2 => '隐式',
  28. );
  29. $oper = array
  30. (
  31. 'open' => '启动',
  32. 'close' => '关闭',
  33. 'other' => '普通指令',
  34. 'set' => '设备设置',
  35. 'device' => '设备状态码',
  36. //'none' => '非直接发送指令',
  37. //'camera' => '摄像头',
  38. );
  39. $id = Dever::input('where_id');
  40. $element = Dever::input('option_element_id');
  41. $code = function() use ($id, $element)
  42. {
  43. $array = array(-1 => array('name' => '非互斥命令码'));
  44. $code = Dever::load('device/code-getAll', array('option_id' => $id, 'option_element_id' => $element));
  45. if($code)
  46. {
  47. $array += $code;
  48. }
  49. return $array;
  50. };
  51. $next_code = function() use ($id, $element)
  52. {
  53. $array = array(-1 => array('name' => '无下级命令码'));
  54. $code = Dever::load('device/code-getAll', array('option_id' => $id, 'option_element_id' => $element));
  55. if($code)
  56. {
  57. $array += $code;
  58. }
  59. return $array;
  60. };
  61. $proxy_code = function() use ($id, $element)
  62. {
  63. $array = array(-1 => array('name' => '无代理命令码'));
  64. $code = Dever::load('device/code-getAll', array('option_id' => $id, 'option_element_id' => $element));
  65. if($code)
  66. {
  67. $array += $code;
  68. }
  69. return $array;
  70. };
  71. $main_code = function() use ($id, $element)
  72. {
  73. $array = array(-1 => array('name' => '无主任务命令码'));
  74. $code = Dever::load('device/code-getAll', array('option_id' => $id, 'option_element_id' => $element));
  75. if($code)
  76. {
  77. $array += $code;
  78. }
  79. return $array;
  80. };
  81. return array
  82. (
  83. # 表名
  84. 'name' => 'code',
  85. # 显示给用户看的名称
  86. 'lang' => '命令码设置',
  87. 'menu' => false,
  88. 'start' => array
  89. (
  90. 'update' => 'device/code.save',
  91. ),
  92. 'end' => array
  93. (
  94. 'insert' => 'device/code.save',
  95. ),
  96. # 数据结构
  97. 'struct' => array
  98. (
  99. 'id' => array
  100. (
  101. 'type' => 'int-11',
  102. 'name' => '命令码ID',
  103. 'default' => '',
  104. 'desc' => '',
  105. 'match' => 'is_numeric',
  106. 'search' => 'order',
  107. 'order' => 'desc',
  108. //'list' => true,
  109. ),
  110. 'name' => array
  111. (
  112. 'type' => 'varchar-32',
  113. 'name' => '操作名称',
  114. 'default' => '',
  115. 'desc' => '请输入操作名称',
  116. 'match' => 'is_string',
  117. 'update' => 'text',
  118. 'search' => 'fulltext',
  119. 'list' => true,
  120. ),
  121. 'oper' => array
  122. (
  123. 'type' => 'varchar-32',
  124. 'name' => '操作方式-前台根据这个来判断具体的命令码,请准确选择,如果选择非直接发送指令,那么下述发送指令不会立刻发送,需要等到条件满足时才会发送,比如旋转圈数',
  125. 'default' => 'other',
  126. 'desc' => '操作方式',
  127. 'match' => 'option',
  128. 'update' => 'radio',
  129. 'option' => $oper,
  130. 'search' => 'fulltext',
  131. 'list' => true,
  132. ),
  133. 'element_id' => array
  134. (
  135. 'type' => 'int-11',
  136. 'name' => '所属元件',
  137. 'default' => Dever::input('option_element_id'),
  138. 'desc' => '请选择所属元件',
  139. 'match' => 'is_numeric',
  140. 'update' => 'hidden',
  141. ),
  142. 'type' => array
  143. (
  144. 'type' => 'tinyint-1',
  145. 'name' => '是否数据指令-数据指令用于数据计算,可根据数据记录,进行公式或者其他方式计算',
  146. 'default' => '1',
  147. 'desc' => '请选择是否数据指令',
  148. 'match' => 'is_numeric',
  149. 'option' => $type,
  150. 'update' => 'radio',
  151. //'list' => true,
  152. # 开启显示控制,可以控制下边的表单
  153. 'show' => 'type',
  154. ),
  155. 'data' => array
  156. (
  157. 'type' => 'varchar-500',
  158. 'name' => '数据指令名称-仅用于数据计算,根据以下填写的计算公式,计算出数据,本字段为该数据的名称,如水压,多个名称请用@隔开',
  159. 'default' => '',
  160. 'desc' => '请输入数据指令名称',
  161. 'match' => 'is_string',
  162. 'update' => 'textarea',
  163. //'search' => 'fulltext',
  164. //'list' => true,
  165. 'show' => array('type_2'),
  166. ),
  167. 'gs' => array
  168. (
  169. 'type' => 'varchar-200',
  170. 'name' => '数据计算公式-根据该公式计算出当前回传回得数据,{b}为本次回传数据,多个请用@隔开',
  171. 'default' => '',
  172. 'desc' => '请输入数据计算公式',
  173. 'match' => 'is_string',
  174. 'update' => 'textarea',
  175. //'search' => 'fulltext',
  176. //'list' => true,
  177. 'show' => array('type_2'),
  178. ),
  179. 'dw' => array
  180. (
  181. 'type' => 'varchar-200',
  182. 'name' => '数据单位-显示出来的数据单位,多个请用@隔开',
  183. 'default' => '',
  184. 'desc' => '显示出来的数据单位',
  185. 'match' => 'option',
  186. 'update' => 'textarea',
  187. //'search' => 'fulltext',
  188. //'list' => true,
  189. 'show' => array('type_2'),
  190. ),
  191. //100102(.*)@200203(.*)||00 10@01 20||阀门1状态(1开0关) 阀门1通电时间(10ms)@阀门2状态(1开0关) 阀门2通电时间(10ms)||01=开&00=关@time
  192. 'send' => array
  193. (
  194. 'type' => 'text-255',
  195. 'name' => '发送指令-多个指令用换行隔开,如果有后续指令[如at指令],请用|AT|隔开,会依次向服务器发送这些指令,如果选择设备设置,此处的变量请用(.*)代替,如10 01 03(.*)03 03,带上||则为后续设置,此时多个指令用@隔开,注意与换行的区别',
  196. 'default' => '',
  197. 'desc' => '请输入发送指令',
  198. 'match' => 'option',
  199. 'update' => 'textarea',
  200. 'list_name' => '指令',
  201. 'list' => '"发送:{send}<br />接收:{receive}" . ({type} != 1 ? "<br />数据指令:{data}" : "")',
  202. //'list' => 'table',
  203. 'modal' => '查看详情',
  204. ),
  205. 'send_name' => array
  206. (
  207. 'type' => 'text-255',
  208. 'name' => '发送指令对应的名称-如果定义了这个,则会取代上述"操作名称",多个指令名称用换行隔开,除非直接发送指令外,其他指令均需和上边的发送指令一一对应',
  209. 'default' => '',
  210. 'desc' => '请输入发送指令名称',
  211. 'match' => 'option',
  212. 'update' => 'textarea',
  213. ),
  214. 'receive' => array
  215. (
  216. 'type' => 'text-255',
  217. 'name' => '固定接收指令-多个指令用换行隔开,注意,本指令可用于数据计算,必须写入固定的接收指令部分,变化部分请用(.*)代替,如0103020000b844,可将0000b844替换为(.*),加|为配置信息,第一为取多少个数据(4个字节为一个数据)',
  218. 'default' => '',
  219. 'desc' => '请输入接收指令',
  220. 'match' => 'option',
  221. 'update' => 'textarea',
  222. //'list' => true,
  223. ),
  224. 'reorder' => array
  225. (
  226. 'type' => 'int-11',
  227. 'name' => '排序-数值越大越靠前',
  228. 'default' => '1',
  229. 'desc' => '请输入排序',
  230. 'match' => 'option',
  231. 'update' => 'text',
  232. 'search' => 'order',
  233. 'list' => true,
  234. 'order' => 'desc',
  235. 'edit' => true,
  236. ),
  237. 'time' => array
  238. (
  239. 'type' => 'int-11',
  240. 'name' => '发送时间间隔-秒级别,默认为0不周期性发送,大于0则按照本时间间隔进行周期性发送指令,需要计划任务支持',
  241. 'default' => '0',
  242. 'match' => 'is_numeric',
  243. 'desc' => '请输入时间间隔',
  244. 'update' => 'text',
  245. 'list' => true,
  246. 'edit' => true,
  247. ),
  248. 'code_id' => array
  249. (
  250. 'type' => 'int-11',
  251. 'name' => '互斥命令码-选择互斥的命令码,同时只能存在一个,如启动和关闭,启动命令码执行之后,关闭才能执行',
  252. 'default' => '-1',
  253. 'desc' => '互斥命令码',
  254. 'match' => 'is_numeric',
  255. 'option' => $code,
  256. 'update' => 'select',
  257. 'list' => true,
  258. //'edit' => 'yes',
  259. ),
  260. 'next_code_id' => array
  261. (
  262. 'type' => 'int-11',
  263. 'name' => '下级命令码-选择下级命令码,则本次命令码在执行成功之后,会发送后续的下级命令码。适用于在关闭时,同时关闭多项命令码的操作。',
  264. 'default' => '-1',
  265. 'desc' => '下级命令码',
  266. 'match' => 'is_numeric',
  267. 'option' => $next_code,
  268. //'update' => 'select',
  269. //'list' => true,
  270. //'edit' => 'yes',
  271. ),
  272. 'proxy_code_id' => array
  273. (
  274. 'type' => 'int-11',
  275. 'name' => '代理命令码-选择代理命令码,在执行该命令码时,同步执行代理命令码,注意和下级命令码不同,代理命令码不依托于执行状态。',
  276. 'default' => '-1',
  277. 'desc' => '代理命令码',
  278. 'match' => 'is_numeric',
  279. 'option' => $proxy_code,
  280. //'update' => 'select',
  281. //'list' => true,
  282. //'edit' => 'yes',
  283. ),
  284. 'second' => array
  285. (
  286. 'type' => 'varchar-30',
  287. 'name' => '代理或下级命令码执行延时-单位为秒,添加后执行该命令码将会延时',
  288. 'default' => '0.5',
  289. 'desc' => '代理或下级命令码执行延时',
  290. 'match' => 'option',
  291. //'update' => 'text',
  292. ),
  293. 'main_code_id' => array
  294. (
  295. 'type' => 'int-11',
  296. 'name' => '主任务命令码-当当前命令码执行成功后无法区分状态时(比如很多命令码返回的命令码都是一个),可以启用主任务命令码来区分是哪个主进程',
  297. 'default' => '-1',
  298. 'desc' => '主任务命令码',
  299. 'match' => 'is_numeric',
  300. 'option' => $main_code,
  301. //'update' => 'select',
  302. //'list' => true,
  303. //'edit' => 'yes',
  304. ),
  305. 'status' => array
  306. (
  307. 'type' => 'tinyint-1',
  308. 'name' => '命令码类型-显式命令码会在点击按钮后立刻发送,隐式命令码则不会立刻发送执行,一般是在下级命令码中设置为隐式命令码',
  309. 'default' => '1',
  310. 'desc' => '请选择状态',
  311. 'match' => 'is_numeric',
  312. 'option' => $status,
  313. //'update' => 'radio',
  314. 'list' => true,
  315. 'edit' => true,
  316. ),
  317. 'show_type' => array
  318. (
  319. 'type' => 'int-11',
  320. 'name' => '显示位置',
  321. 'default' => '1',
  322. 'desc' => '请选择显示位置',
  323. 'match' => 'is_numeric',
  324. 'option' => $show_type,
  325. 'update' => 'radio',
  326. //'list' => true,
  327. ),
  328. 'state' => array
  329. (
  330. 'type' => 'tinyint-1',
  331. 'name' => '状态',
  332. 'default' => '1',
  333. 'desc' => '请选择状态',
  334. 'match' => 'is_numeric',
  335. 'option' => $option,
  336. 'update' => 'radio',
  337. 'list' => true,
  338. ),
  339. 'cdate' => array
  340. (
  341. 'type' => 'int-11',
  342. 'name' => '录入时间',
  343. 'match' => array('is_numeric', time()),
  344. 'desc' => '',
  345. # 只有insert时才生效
  346. 'insert' => true,
  347. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  348. ),
  349. ),
  350. 'alter' => array
  351. (
  352. 1 => array
  353. (
  354. array('update', 'data', 'data', 'varchar-255 数据指令名称'),//更新字段
  355. ),
  356. 2 => array
  357. (
  358. array('update', 'data', 'data', 'varchar-500 数据指令名称'),//更新字段
  359. ),
  360. 3 => array
  361. (
  362. array('update', 'gs', 'gs', 'varchar-500 公式'),//更新字段
  363. ),
  364. 'version' => 3,
  365. ),
  366. # request 请求接口定义
  367. 'request' => array
  368. (
  369. 'info' => array
  370. (
  371. # 匹配的正则或函数 选填项
  372. 'where' => array
  373. (
  374. 'state' => 1,
  375. 'id' => 'yes',
  376. ),
  377. 'type' => 'one',
  378. ),
  379. # 取所有菜单
  380. 'all' => array
  381. (
  382. 'where' => array
  383. (
  384. 'state' => 1,
  385. 'element_id' => 'yes',
  386. ),
  387. 'type' => 'all',
  388. 'order' => array('reorder` desc,`id', 'desc'),
  389. 'col' => '*|id',
  390. ),
  391. 'getAll' => array
  392. (
  393. 'option' => array
  394. (
  395. //'state' => 1,
  396. 'id' => array('yes', '!='),
  397. 'element_id' => 'yes',
  398. ),
  399. 'type' => 'all',
  400. 'order' => array('reorder` desc,`id', 'desc'),
  401. 'col' => '*|id',
  402. ),
  403. 'getIds' => array
  404. (
  405. 'where' => array
  406. (
  407. 'state' => 1,
  408. 'type' => 2,
  409. 'id' => array('yes', 'in'),
  410. ),
  411. 'type' => 'all',
  412. 'order' => array('reorder` desc,`id', 'desc'),
  413. 'col' => '*|id',
  414. ),
  415. 'getIdsData' => array
  416. (
  417. 'where' => array
  418. (
  419. 'state' => 1,
  420. 'type' => 2,
  421. 'id' => array('yes', 'in'),
  422. ),
  423. 'type' => 'all',
  424. 'order' => array('reorder` desc,`id', 'desc'),
  425. 'col' => 'id,data as name|id',
  426. ),
  427. # 根据id获取
  428. 'getData' => array
  429. (
  430. 'where' => array
  431. (
  432. //'state' => 1,
  433. //'type' => 2,
  434. 'element_id' => 'yes',
  435. ),
  436. 'type' => 'all',
  437. 'col' => '*',
  438. ),
  439. # 根据id获取
  440. 'getDataByIds' => array
  441. (
  442. 'where' => array
  443. (
  444. //'state' => 1,
  445. //'type' => 2,
  446. 'id' => array('yes', 'in'),
  447. ),
  448. 'type' => 'all',
  449. 'col' => '*',
  450. ),
  451. ),
  452. );