免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2961 | 回复: 4
打印 上一主题 下一主题

[桌面系统] vim的=G缩进是不是有点问题? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-08-21 16:25 |只看该作者 |倒序浏览
下面的代码用=G命令缩进从第72行会出问题。
  1. /*
  2. **   $Id$
  3. **
  4. **   acsmx2.c
  5. **
  6. **   Multi-Pattern Search Engine
  7. **
  8. **   Aho-Corasick State Machine - version 2.0
  9. **
  10. **   Supports both Non-Deterministic and Deterministic Finite Automata
  11. **
  12. **
  13. **   Reference - Efficient String matching: An Aid to Bibliographic Search
  14. **               Alfred V Aho and Margaret J Corasick
  15. **               Bell Labratories
  16. **               Copyright(C) 1975 Association for Computing Machinery,Inc
  17. **
  18. **   +++
  19. **   +++ Version 1.0 notes - Marc Norton:
  20. **   +++
  21. **
  22. **   Original implementation based on the 4 algorithms in the paper by Aho & Corasick,
  23. **   some implementation ideas from 'Practical Algorithms in C', and some
  24. **   of my own.
  25. **
  26. **   1) Finds all occurrences of all patterns within a text.
  27. **
  28. **   +++
  29. **   +++ Version 2.0 Notes - Marc Norton/Dan Roelker:
  30. **   +++
  31. **  
  32. **   New implementation modifies the state table storage and access model to use
  33. **   compacted sparse vector storage. Dan Roelker and I hammered this strategy out
  34. **   amongst many others in order to reduce memory usage and improve caching performance.
  35. **   The memory usage is greatly reduced, we only use 1/4 of what we use to. The caching
  36. **   performance is better in pure benchmarking tests, but does not show overall improvement
  37. **   in Snort.  Unfortunately, once a pattern match test has been performed Snort moves on to doing
  38. **   performance is better in pure benchmarking tests, but does not show overall improvement
  39. **   in Snort.  Unfortunately, once a pattern match test has been performed Snort moves on to doing
  40. **   many other things before we get back to a patteren match test, so the cache is voided.
  41. **  
  42. **   This versions has better caching performance characteristics, reduced memory,
  43. **   more state table storage options, and requires no a priori case conversions.  
  44. **   It does maintain the same public interface. (Snort only used banded storage).
  45. **
  46. **     1) Supports NFA and DFA state machines, and basic keyword state machines
  47. **     2) Initial transition table uses Linked Lists
  48. **     3) Improved state table memory options. NFA and DFA state
  49. **        transition tables are converted to one of 4 formats during compilation.
  50. **        a) Full matrix
  51. **        b) Sparse matrix
  52. **        c) Banded matrix (Default-this is the only one used in snort)
  53. **        d) Sparse-Banded matrix
  54. **     4) Added support for acstate_t in .h file so we can compile states as
  55. **        16, or 32 bit state values for another reduction in memory consumption,
  56. **        smaller states allows more of the state table to be cached, and improves
  57. **        performance on x86-P4.  Your mileage may vary, especially on risc systems.
  58. **     5) Added a bool to each state transition list to indicate if there is a matching
  59. **        pattern in the state. This prevents us from accessing another data array
  60. **        and can improve caching/performance.
  61. **     6) The search functions are very sensitive, don't change them without extensive testing,
  62. **        or you'll just spoil the caching and prefetching opportunities.
  63. **  
  64. **   Extras for fellow pattern matchers:
  65. **    The table below explains the storage format used at each step.
  66. **    You can use an NFA or DFA to match with, the NFA is slower but tiny - set the structure directly.
  67. **    You can use any of the 4 storage modes above -full,sparse,banded,sparse-bands, set the structure directly.
  68. **    For applications where you have lots of data and a pattern set to search, this version was up to 3x faster
  69. **    than the previous verion, due to caching performance. This cannot be fully realized in Snort yet,
  70. **    but other applications may have better caching opportunities.
  71. **    Snort only needs to use the banded or full storage.
  72. **
  73. **  Transition table format at each processing stage.
  74. **  -------------------------------------------------
  75. **  Transition table format at each processing stage.
  76. **  -------------------------------------------------
  77. **  Patterns -> Keyword State Table (List)
  78. **  Keyword State Table -> NFA (List)
  79. **  NFA -> DFA (List)
  80. **  DFA (List)-> Sparse Rows  O(m-avg # transitions per state)
  81. **        -> Banded Rows  O(1)
  82. **            -> Sparse-Banded Rows O(nb-# bands)
  83. **        -> Full Matrix  O(1)
  84. **
  85. ** Copyright(C) 2002,2003,2004 Marc Norton
  86. ** Copyright(C) 2003,2004 Daniel Roelker
  87. ** Copyright(C) 2002,2003,2004 Sourcefire,Inc.
  88. **
  89. ** This program is free software; you can redistribute it and/or modify
  90. ** it under the terms of the GNU General Public License as published by
  91. ** the Free Software Foundation; either version 2 of the License, or
  92. ** (at your option) any later version.
  93. **
  94. ** This program is distributed in the hope that it will be useful,
  95. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  96. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  97. ** GNU General Public License for more details.
  98. **
  99. ** You should have received a copy of the GNU General Public License
  100. ** along with this program; if not, write to the Free Software
  101. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  102. *
  103. * Notes:
  104. *
  105. * 8/28/06
  106. * man - Sparse and SparseBands - fixed off by one in calculating matching index
  107. *       SparseBands changed ps increment to 2+n to increment between bands.
  108. */  
复制代码

呼唤达人解释下原因。
另外,怎么用搜索引擎搜索“=G”?baidu和google都会去掉“=”而且不分“G”的大小写了……

论坛徽章:
0
2 [报告]
发表于 2007-08-21 17:00 |只看该作者
有空就试下呗~遇到同样的问题就帮顶下呗~

论坛徽章:
0
3 [报告]
发表于 2007-08-21 17:18 |只看该作者
我估计是这段注释太长了。而VIM使用cindent来做缩进的时候无法缓存这么长的一个block。你可以试试在72之前删掉几行,再缩进一下,可以看到基本上一直是72左右出问题。

论坛徽章:
0
4 [报告]
发表于 2007-08-21 17:22 |只看该作者
原帖由 sakulagi 于 2007-8-21 17:18 发表
我估计是这段注释太长了。而VIM使用cindent来做缩进的时候无法缓存这么长的一个block。你可以试试在72之前删掉几行,再缩进一下,可以看到基本上一直是72左右出问题。

哇~~明灯呀~~
我去找找有没配置缓存大小的地方……实在不行我去改代码了~谢谢!

论坛徽章:
0
5 [报告]
发表于 2007-08-22 16:43 |只看该作者
找到了一定要告诉我啊!!!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP