~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/generate_rust_analyzer.py

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /scripts/generate_rust_analyzer.py (Version linux-6.12-rc7) and /scripts/generate_rust_analyzer.py (Version linux-5.10.228)


  1 #!/usr/bin/env python3                            
  2 # SPDX-License-Identifier: GPL-2.0                
  3 """generate_rust_analyzer - Generates the `rus    
  4 """                                               
  5                                                   
  6 import argparse                                   
  7 import json                                       
  8 import logging                                    
  9 import os                                         
 10 import pathlib                                    
 11 import sys                                        
 12                                                   
 13 def args_crates_cfgs(cfgs):                       
 14     crates_cfgs = {}                              
 15     for cfg in cfgs:                              
 16         crate, vals = cfg.split("=", 1)           
 17         crates_cfgs[crate] = vals.replace("--c    
 18                                                   
 19     return crates_cfgs                            
 20                                                   
 21 def generate_crates(srctree, objtree, sysroot_    
 22     # Generate the configuration list.            
 23     cfg = []                                      
 24     with open(objtree / "include" / "generated    
 25         for line in fd:                           
 26             line = line.replace("--cfg=", "")     
 27             line = line.replace("\n", "")         
 28             cfg.append(line)                      
 29                                                   
 30     # Now fill the crates list -- dependencies    
 31     #                                             
 32     # Avoid O(n^2) iterations by keeping a map    
 33     crates = []                                   
 34     crates_indexes = {}                           
 35     crates_cfgs = args_crates_cfgs(cfgs)          
 36                                                   
 37     def append_crate(display_name, root_module    
 38         crates_indexes[display_name] = len(cra    
 39         crates.append({                           
 40             "display_name": display_name,         
 41             "root_module": str(root_module),      
 42             "is_workspace_member": is_workspac    
 43             "is_proc_macro": is_proc_macro,       
 44             "deps": [{"crate": crates_indexes[    
 45             "cfg": cfg,                           
 46             "edition": "2021",                    
 47             "env": {                              
 48                 "RUST_MODFILE": "This is only     
 49             }                                     
 50         })                                        
 51                                                   
 52     # First, the ones in `rust/` since they ar    
 53     append_crate(                                 
 54         "core",                                   
 55         sysroot_src / "core" / "src" / "lib.rs    
 56         [],                                       
 57         cfg=crates_cfgs.get("core", []),          
 58         is_workspace_member=False,                
 59     )                                             
 60                                                   
 61     append_crate(                                 
 62         "compiler_builtins",                      
 63         srctree / "rust" / "compiler_builtins.    
 64         [],                                       
 65     )                                             
 66                                                   
 67     append_crate(                                 
 68         "alloc",                                  
 69         sysroot_src / "alloc" / "src" / "lib.r    
 70         ["core", "compiler_builtins"],            
 71         cfg=crates_cfgs.get("alloc", []),         
 72     )                                             
 73                                                   
 74     append_crate(                                 
 75         "macros",                                 
 76         srctree / "rust" / "macros" / "lib.rs"    
 77         [],                                       
 78         is_proc_macro=True,                       
 79     )                                             
 80     crates[-1]["proc_macro_dylib_path"] = f"{o    
 81                                                   
 82     append_crate(                                 
 83         "build_error",                            
 84         srctree / "rust" / "build_error.rs",      
 85         ["core", "compiler_builtins"],            
 86     )                                             
 87                                                   
 88     append_crate(                                 
 89         "bindings",                               
 90         srctree / "rust"/ "bindings" / "lib.rs    
 91         ["core"],                                 
 92         cfg=cfg,                                  
 93     )                                             
 94     crates[-1]["env"]["OBJTREE"] = str(objtree    
 95                                                   
 96     append_crate(                                 
 97         "kernel",                                 
 98         srctree / "rust" / "kernel" / "lib.rs"    
 99         ["core", "alloc", "macros", "build_err    
100         cfg=cfg,                                  
101     )                                             
102     crates[-1]["source"] = {                      
103         "include_dirs": [                         
104             str(srctree / "rust" / "kernel"),     
105             str(objtree / "rust")                 
106         ],                                        
107         "exclude_dirs": [],                       
108     }                                             
109                                                   
110     def is_root_crate(build_file, target):        
111         try:                                      
112             return f"{target}.o" in open(build    
113         except FileNotFoundError:                 
114             return False                          
115                                                   
116     # Then, the rest outside of `rust/`.          
117     #                                             
118     # We explicitly mention the top-level fold    
119     extra_dirs = map(lambda dir: srctree / dir    
120     if external_src is not None:                  
121         extra_dirs = [external_src]               
122     for folder in extra_dirs:                     
123         for path in folder.rglob("*.rs"):         
124             logging.info("Checking %s", path)     
125             name = path.name.replace(".rs", ""    
126                                                   
127             # Skip those that are not crate ro    
128             if not is_root_crate(path.parent /    
129                not is_root_crate(path.parent /    
130                 continue                          
131                                                   
132             logging.info("Adding %s", name)       
133             append_crate(                         
134                 name,                             
135                 path,                             
136                 ["core", "alloc", "kernel"],      
137                 cfg=cfg,                          
138             )                                     
139                                                   
140     return crates                                 
141                                                   
142 def main():                                       
143     parser = argparse.ArgumentParser()            
144     parser.add_argument('--verbose', '-v', act    
145     parser.add_argument('--cfgs', action='appe    
146     parser.add_argument("srctree", type=pathli    
147     parser.add_argument("objtree", type=pathli    
148     parser.add_argument("sysroot", type=pathli    
149     parser.add_argument("sysroot_src", type=pa    
150     parser.add_argument("exttree", type=pathli    
151     args = parser.parse_args()                    
152                                                   
153     logging.basicConfig(                          
154         format="[%(asctime)s] [%(levelname)s]     
155         level=logging.INFO if args.verbose els    
156     )                                             
157                                                   
158     # Making sure that the `sysroot` and `sysr    
159     assert args.sysroot in args.sysroot_src.pa    
160                                                   
161     rust_project = {                              
162         "crates": generate_crates(args.srctree    
163         "sysroot": str(args.sysroot),             
164     }                                             
165                                                   
166     json.dump(rust_project, sys.stdout, sort_k    
167                                                   
168 if __name__ == "__main__":                        
169     main()                                        
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php