2016-07-14 17:46:07 +08:00
|
|
|
============
|
|
|
|
Clang-Rename
|
|
|
|
============
|
|
|
|
|
|
|
|
.. contents::
|
|
|
|
|
|
|
|
See also:
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
|
|
|
|
|
2016-08-04 02:15:07 +08:00
|
|
|
:program:`clang-rename` is a C++ refactoring tool. Its purpose is to perform
|
|
|
|
efficient renaming actions in large-scale projects such as renaming classes,
|
|
|
|
functions, variables, arguments, namespaces etc.
|
2016-07-14 17:46:07 +08:00
|
|
|
|
|
|
|
The tool is in a very early development stage, so you might encounter bugs and
|
|
|
|
crashes. Submitting reports with information about how to reproduce the issue
|
|
|
|
to `the LLVM bugtracker <https://llvm.org/bugs>`_ will definitely help the
|
|
|
|
project. If you have any ideas or suggestions, you might want to put a feature
|
|
|
|
request there.
|
|
|
|
|
2016-08-02 16:51:26 +08:00
|
|
|
Using Clang-Rename
|
2016-07-14 17:46:07 +08:00
|
|
|
==================
|
|
|
|
|
|
|
|
:program:`clang-rename` is a `LibTooling
|
|
|
|
<http://clang.llvm.org/docs/LibTooling.html>`_-based tool, and it's easier to
|
|
|
|
work with if you set up a compile command database for your project (for an
|
|
|
|
example of how to do this see `How To Setup Tooling For LLVM
|
|
|
|
<http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html>`_). You can also
|
2016-08-02 16:51:26 +08:00
|
|
|
specify compilation options on the command line after `--`:
|
2016-07-14 17:46:07 +08:00
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ clang-rename -offset=42 -new-name=foo test.cpp -- -Imy_project/include -DMY_DEFINES ...
|
|
|
|
|
|
|
|
|
|
|
|
To get an offset of a symbol in a file run
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ grep -FUbo 'foo' file.cpp
|
|
|
|
|
|
|
|
|
2016-08-02 17:51:31 +08:00
|
|
|
You can also identify one or more symbols to be renamed by giving the fully qualified
|
|
|
|
name:
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ clang-rename rename-all -old-name=foo -new-name=bar test.cpp
|
|
|
|
|
|
|
|
|
2016-07-14 17:46:07 +08:00
|
|
|
The tool currently supports renaming actions inside a single Translation Unit
|
|
|
|
only. It is planned to extend the tool's functionality to support multi-TU
|
|
|
|
renaming actions in the future.
|
|
|
|
|
|
|
|
:program:`clang-rename` also aims to be easily integrated into popular text
|
2016-08-02 16:51:26 +08:00
|
|
|
editors, such as Vim and Emacs, and improve the workflow of users.
|
2016-07-14 17:46:07 +08:00
|
|
|
|
|
|
|
Although a command line interface exists, it is highly recommended to use the
|
|
|
|
text editor interface instead for better experience.
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ clang-rename -help
|
2016-08-02 17:51:31 +08:00
|
|
|
Usage: clang-rename {rename-at|rename-all} [OPTION]...
|
|
|
|
|
|
|
|
A tool to rename symbols in C/C++ code.
|
|
|
|
|
|
|
|
Subcommands:
|
|
|
|
rename-at: Perform rename off of a location in a file. (This is the default.)
|
|
|
|
rename-all: Perform rename of all symbols matching one or more fully qualified names.
|
|
|
|
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ clang-rename rename-at -help
|
2016-07-14 17:46:07 +08:00
|
|
|
OVERVIEW: A tool to rename symbols in C/C++ code.
|
|
|
|
clang-rename renames every occurrence of a symbol found at <offset> in
|
|
|
|
<source0>. If -i is specified, the edited files are overwritten to disk.
|
|
|
|
Otherwise, the results are written to stdout.
|
2016-08-02 17:51:31 +08:00
|
|
|
|
|
|
|
USAGE: clang-rename rename-at [subcommand] [options] <source0> [... <sourceN>]
|
|
|
|
|
2016-07-14 17:46:07 +08:00
|
|
|
OPTIONS:
|
2016-08-02 17:51:31 +08:00
|
|
|
|
|
|
|
Generic Options:
|
|
|
|
|
|
|
|
-help - Display available options (-help-hidden for more)
|
|
|
|
-help-list - Display list of available options (-help-list-hidden for more)
|
|
|
|
-version - Display the version of this program
|
2016-07-14 17:46:07 +08:00
|
|
|
|
2016-08-02 17:51:31 +08:00
|
|
|
clang-rename rename-at options:
|
2016-07-14 17:46:07 +08:00
|
|
|
|
|
|
|
-export-fixes=<filename> - YAML file to store suggested fixes in.
|
|
|
|
-extra-arg=<string> - Additional argument to append to the compiler command line
|
|
|
|
-extra-arg-before=<string> - Additional argument to prepend to the compiler command line
|
|
|
|
-i - Overwrite edited <file>s.
|
|
|
|
-new-name=<string> - The new name to change the symbol to.
|
|
|
|
-offset=<uint> - Locates the symbol by offset as opposed to <line>:<column>.
|
|
|
|
-p=<string> - Build path
|
|
|
|
-pl - Print the locations affected by renaming to stderr.
|
|
|
|
-pn - Print the found symbol's name prior to renaming to stderr.
|
|
|
|
|
2016-08-02 17:51:31 +08:00
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
|
|
|
$ clang-rename rename-all -help
|
|
|
|
OVERVIEW: A tool to rename symbols in C/C++ code.
|
|
|
|
clang-rename renames every occurrence of a symbol named <old-name>.
|
|
|
|
|
|
|
|
USAGE: clang-rename rename-all [subcommand] [options] <source0> [... <sourceN>]
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
|
2016-07-14 17:46:07 +08:00
|
|
|
Generic Options:
|
|
|
|
|
|
|
|
-help - Display available options (-help-hidden for more)
|
|
|
|
-help-list - Display list of available options (-help-list-hidden for more)
|
|
|
|
-version - Display the version of this program
|
|
|
|
|
2016-08-02 17:51:31 +08:00
|
|
|
clang-rename rename-all options:
|
|
|
|
|
|
|
|
-export-fixes=<filename> - YAML file to store suggested fixes in.
|
|
|
|
-extra-arg=<string> - Additional argument to append to the compiler command line
|
|
|
|
-extra-arg-before=<string> - Additional argument to prepend to the compiler command line
|
|
|
|
-i - Overwrite edited <file>s.
|
|
|
|
-new-name=<string> - The new name to change the symbol to.
|
|
|
|
-offset=<uint> - Locates the symbol by offset as opposed to <line>:<column>.
|
|
|
|
-old-name=<string> - The fully qualified name of the symbol, if -offset is not used.
|
|
|
|
-p=<string> - Build path
|
|
|
|
|
2016-07-14 17:46:07 +08:00
|
|
|
|
2016-08-02 16:51:26 +08:00
|
|
|
Vim Integration
|
|
|
|
===============
|
2016-07-14 17:46:07 +08:00
|
|
|
|
|
|
|
You can call :program:`clang-rename` directly from Vim! To set up
|
|
|
|
:program:`clang-rename` integration for Vim see
|
|
|
|
`clang-rename/tool/clang-rename.py
|
|
|
|
<http://reviews.llvm.org/diffusion/L/browse/clang-tools-extra/trunk/clang-rename/tool/clang-rename.py>`_.
|
|
|
|
|
|
|
|
Please note that **you have to save all buffers, in which the replacement will
|
|
|
|
happen before running the tool**.
|
2016-07-27 22:23:47 +08:00
|
|
|
|
|
|
|
Once installed, you can point your cursor to symbols you want to rename, press
|
2016-08-03 04:29:47 +08:00
|
|
|
`<leader>cr` and type new desired name. The `<leader> key
|
|
|
|
<http://vim.wikia.com/wiki/Mapping_keys_in_Vim_-_Tutorial_(Part_3)#Map_leader>`_
|
2016-07-27 22:26:03 +08:00
|
|
|
is a reference to a specific key defined by the mapleader variable and is bound
|
2016-07-27 22:23:47 +08:00
|
|
|
to backslash by default.
|
2016-08-02 16:51:26 +08:00
|
|
|
|
|
|
|
Emacs Integration
|
|
|
|
=================
|
|
|
|
|
|
|
|
You can also use :program:`clang-rename` while using Emacs! To set up
|
|
|
|
:program:`clang-rename` integration for Emacs see
|
|
|
|
`clang-rename/tool/clang-rename.el
|
|
|
|
<http://reviews.llvm.org/diffusion/L/browse/clang-tools-extra/trunk/clang-rename/tool/clang-rename.el>`_.
|
|
|
|
|
|
|
|
Once installed, you can point your cursor to symbols you want to rename, press
|
|
|
|
`M-X`, type `clang-rename` and new desired name.
|
|
|
|
|
|
|
|
Please note that **you have to save all buffers, in which the replacement will
|
|
|
|
happen before running the tool**.
|