Wireshark-commits: [Wireshark-commits] master 0caf061: Lua: split up wslua files into class-based f

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Sun, 12 Jul 2015 02:08:30 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=0caf0616ba53282cf4ef5587e13989a7aacc9588
Submitter: Hadriel Kaplan (hadrielk@xxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

0caf061 by Hadriel Kaplan (hadrielk@xxxxxxxxx):

    Lua: split up wslua files into class-based files
    
    The size of some of the wslua source files has grown large, and it's hard
    to quickly find things. So split them up based on class name, as much as
    seems reasonable. Also have the make-wsluarm.pl Perl script handle this.
    
    Change-Id: Ib495ec5c2a4df90495c0a05504856288a0b09213
    Reviewed-on: https://code.wireshark.org/review/9579
    Petri-Dish: Hadriel Kaplan <hadrielk@xxxxxxxxx>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@xxxxxxxxxxxxx>
    Reviewed-by: Hadriel Kaplan <hadrielk@xxxxxxxxx>
    

Actions performed:

    from  ec1e099   Note the Qt bugs about the broken .pc files.
    adds  0caf061   Lua: split up wslua files into class-based files


Summary of changes:
 doc/README.wslua                                   |   10 +
 docbook/CMakeLists.txt                             |   14 +
 docbook/Makefile.common                            |   14 +
 docbook/make-wsluarm.pl                            |   57 +-
 epan/wslua/CMakeLists.txt                          |   34 +-
 epan/wslua/Makefile.am                             |   55 +-
 epan/wslua/Makefile.nmake                          |   68 +-
 epan/wslua/wslua.h                                 |    1 +
 epan/wslua/wslua_address.c                         |  275 +++
 epan/wslua/wslua_byte_array.c                      |  410 ++++
 epan/wslua/wslua_capture_info.c                    |  513 +++++
 epan/wslua/wslua_column.c                          |  393 ++++
 epan/wslua/wslua_dissector.c                       |  692 +++++++
 epan/wslua/wslua_file.c                            | 1966 +-----------------
 epan/wslua/wslua_file_common.c                     |  205 ++
 epan/wslua/wslua_file_common.h                     |   86 +
 epan/wslua/wslua_file_handler.c                    |  997 +++++++++
 epan/wslua/wslua_frame_info.c                      |  415 ++++
 epan/wslua/wslua_nstime.c                          |  210 ++
 epan/wslua/wslua_pinfo.c                           |  730 +------
 wsutil/floorl.h => epan/wslua/wslua_pinfo_common.h |   23 +-
 epan/wslua/wslua_pref.c                            |  463 +++++
 epan/wslua/wslua_proto.c                           | 2146 +-------------------
 epan/wslua/wslua_proto_expert.c                    |  145 ++
 epan/wslua/wslua_proto_field.c                     |  997 +++++++++
 epan/wslua/wslua_tvb.c                             |  555 +----
 26 files changed, 6142 insertions(+), 5332 deletions(-)
 create mode 100644 epan/wslua/wslua_address.c
 create mode 100644 epan/wslua/wslua_byte_array.c
 create mode 100644 epan/wslua/wslua_capture_info.c
 create mode 100644 epan/wslua/wslua_column.c
 create mode 100644 epan/wslua/wslua_dissector.c
 create mode 100644 epan/wslua/wslua_file_common.c
 create mode 100644 epan/wslua/wslua_file_common.h
 create mode 100644 epan/wslua/wslua_file_handler.c
 create mode 100644 epan/wslua/wslua_frame_info.c
 create mode 100644 epan/wslua/wslua_nstime.c
 copy wsutil/floorl.h => epan/wslua/wslua_pinfo_common.h (68%)
 create mode 100644 epan/wslua/wslua_pref.c
 create mode 100644 epan/wslua/wslua_proto_expert.c
 create mode 100644 epan/wslua/wslua_proto_field.c