package crs
A tool for managing code review comments embedded in source code
Install
Dune Dependency
Authors
Maintainers
Sources
crs-0.0.20250705.tbz
sha256=e9f9f5ec5aea9658ed640aaa06f887985bb6870adcf7555ebf6d48bb741e4793
sha512=901ac1caae6c4103a320b4a3a177ca3aa0583ad533c54e7740aba6652ccdbd6311d07ab4b73e3ba750beed24f85479b5e1b0e94504ecfd0c59bd49cdabebc369
doc/src/crs.crs-parser/header_parser.ml.html
Source file header_parser.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
(********************************************************************************) (* crs - A tool for managing code review comments embedded in source code *) (* Copyright (C) 2024-2025 Mathieu Barbin <mathieu.barbin@gmail.com> *) (* *) (* This file is part of crs. *) (* *) (* crs is free software; you can redistribute it and/or modify it under the *) (* terms of the GNU Lesser General Public License as published by the Free *) (* Software Foundation either version 3 of the License, or any later version, *) (* with the LGPL-3.0 Linking Exception. *) (* *) (* crs is distributed in the hope that it will be useful, but WITHOUT ANY *) (* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS *) (* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License and *) (* the file `NOTICE.md` at the root of this repository for more details. *) (* *) (* You should have received a copy of the GNU Lesser General Public License *) (* and the LGPL-3.0 Linking Exception along with this library. If not, see *) (* <http://www.gnu.org/licenses/> and <https://spdx.org>, respectively. *) (********************************************************************************) (* This module is derived from Iron (v0.9.114.44+47), file * [./hg/cr_comment.ml], which is released under Apache 2.0: * * Copyright (c) 2016-2017 Jane Street Group, LLC <opensource-contacts@janestreet.com> * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy * of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * * See the file `NOTICE.md` at the root of this repository for more details. * * Changes: * * - Migrate to this file only the part that relates to the parsing of the 1st line. * - Remove dependency to [Core] - make small adjustments to use [Base] instead. * - Replace [Unresolved_name] by [Vcs.User_handle]. * - Remove alternate names and aliases resolution. * - Remove support for in-file `Properties. * - Remove support for extra headers. * - Remove support for attributes. * - Remove assignee computation (left as external work). * - Replace [is_xcr] by a variant type [Status.t]. * - Make [reporter] mandatory. * - Rename [Processed] to [Header]. * - Remove support for 'v' separator in CR comment * - Include the leading '-' char in due's [Loc.t]. * - Migrate from [Re2] to [ocaml-re]. *) (* : and @ have other meanings in CR comments *) let word_t = Re.compl [ Re.char ' '; Re.char '\t'; Re.char '\n'; Re.char ':'; Re.char '@' ] ;; let whitespace = Re.alt [ Re.char ' '; Re.char '\n'; Re.char '\t' ] let comment_regex = lazy (Re.( whole_string (seq [ rep whitespace ; group ~name:"status" (seq [ opt (char 'X'); str "CR" ]) ; opt (seq [ char '-' ; group ~name:"qualifier" (alt [ repn digit 6 (Some 6); str "soon"; str "someday" ]) ]) ; rep1 whitespace ; group ~name:"reporter" (rep1 word_t) ; opt (seq [ rep1 whitespace ; str "for" ; rep1 whitespace ; group ~name:"recipient" (rep1 word_t) ]) ; rep whitespace ; char ':' ; rep any ])) |> Re.compile) ;; let parse ~file_cache ~content_start_offset ~content = let ( let* ) a f = Or_error.bind a ~f in try let comment_regex = Lazy.force comment_regex in let group_names = Re.group_names comment_regex in let* m = match Re.exec_opt comment_regex content with | None -> Or_error.error "Invalid CR comment" content String.sexp_of_t | Some m -> Or_error.return m in let get field_name = let index = match List.find group_names ~f:(fun (name, _) -> String.equal field_name name) with | Some (_, index) -> index | None -> failwith (Printf.sprintf "Invalid regexp group name %S" field_name) [@coverage off] in match Re.Group.get_opt m index with | None -> None | Some v -> let start, stop = Re.Group.offset m index in let loc = Loc.of_file_range ~file_cache ~range: { start = content_start_offset + start; stop = content_start_offset + stop } in Some (v, loc) in let reporter = match get "reporter" with | None -> assert false (* Mandatory in the [comment_regexp]. *) | Some (reporter, loc) -> { Loc.Txt.txt = Vcs.User_handle.v reporter; loc } in let status = match get "status" with | None -> assert false (* Mandatory in the [comment_regexp]. *) | Some (status, loc) -> let txt : Cr_comment.Status.t = match status with | "CR" -> CR | "XCR" -> XCR | _ -> assert false (* Cannot be parsed according to the regexp. *) in { Loc.Txt.txt; loc } in let recipient = Option.map (get "recipient") ~f:(fun (user, loc) -> { Loc.Txt.txt = Vcs.User_handle.v user; loc }) in let qualifier = match get "qualifier" with | None -> { Loc.Txt.txt = Cr_comment.Qualifier.None; loc = status.loc } | Some ("soon", loc) -> { Loc.Txt.txt = Cr_comment.Qualifier.Soon; loc } | Some ("someday", loc) -> { Loc.Txt.txt = Cr_comment.Qualifier.Someday; loc } | Some (_, loc) -> (* dated CR -> CR-someday *) { Loc.Txt.txt = Cr_comment.Qualifier.Someday; loc } in Or_error.return (Cr_comment.Private.Header.create ~status ~qualifier ~reporter ~recipient) with | exn -> Or_error.error "could not process CR" (content, exn) [%sexp_of: string * exn] [@coverage off] ;;
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>