package dose3-extra
Dose-extra libraries and tools (part of Mancoosi tools)
Install
Dune Dependency
Authors
Maintainers
Sources
dose3-7.0.0.tar.gz
md5=bc99cbcea8fca29dca3ebbee54be45e1
sha512=98dc4bd28e9f4aa8384be71b31783ae1afac577ea587118b8457b554ffe302c98e83d0098971e6b81803ee5c4f2befe3a98ef196d6b0da8feb4121e982ad5c2f
doc/src/dose3-extra.debian/apt.ml.html
Source file apt.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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
(**************************************************************************************) (* Copyright (C) 2009 Pietro Abate <pietro.abate@pps.jussieu.fr> *) (* Copyright (C) 2009 Mancoosi Project *) (* *) (* This library 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 (at your option) any later version. A special linking *) (* exception to the GNU Lesser General Public License applies to this *) (* library, see the COPYING file for more information. *) (**************************************************************************************) (** Apt command line parsing *) module Pcre = Re_pcre open ExtLib open Dose_common open Dose_extra include Util.Logging (struct let label = "dose_deb.apt" end) let blank_regexp = Pcre.regexp "[ \t]+" (* parse the output of "dpkg -l" *) let parse_inst ch = let h = Hashtbl.create 1000 in try while true do let s = input_line ch in match Pcre.split ~rex:blank_regexp s with | status :: name :: version :: _ when status = "ii" -> Hashtbl.add h (name, version) () | _ -> () done ; h with End_of_file -> h let parse_inst_from_cmd cmd = let ch = Unix.open_process_in cmd in let h = parse_inst ch in let _ = close_in ch in h let parse_inst_from_file file = let ch = open_in file in let h = parse_inst ch in let _ = close_in ch in h (**********************************************************************) (* parse the a popcon file *) let parse_popcon s = match Pcre.split ~rex:blank_regexp s with | rank :: name :: inst :: _ -> (int_of_string rank, name, int_of_string inst) | _ -> fatal "Parse error %s\n" s (*****************************************************) (* 1. apt-get install PACKAGE ... 2. apt-get install PACKAGE=VERSION ... 3. apt-get install PACKAGE/RELEASE ... 4. apt-get remove PACKAGE ... 5. apt-get upgrade ... 6. apt-get dist-upgrade ... "-t RELEASE" option *) type apt_req = | Install of Dose_pef.Packages_types.vpkgreq list | Remove of Dose_pef.Packages_types.vpkgreq list | Upgrade of Dose_pef.Packages_types.suite option | DistUpgrade of Dose_pef.Packages_types.suite option let parse_req label s = let _loc = Format822.dummy_loc in Dose_pef.Packages.lexbuf_wrapper Dose_pef.Packages_parser.request_top (label, (_loc, s)) let parse_pkg_req suite s = let (r, ((n, a), c), s) = parse_req "apt req suite" s in match suite with | None -> (r, ((n, a), c), s) | Some suite -> (r, ((n, a), c), Some suite) (** parse a string containing an apt-get command line @return a data structure containing the request *) let parse_request_apt s = if not (String.exists s "apt-get") then fatal "Not a valid apt-get command" ; let s = String.slice ~first:(String.find s "apt-get") s in let suite = ref None in (* XXX we parse a lot of options, but we do not handle them ... *) let options = [ ("-t", Arg.String (fun l -> suite := Some l), ""); ("-s", Arg.Unit (fun _ -> ()), ""); ("-y", Arg.Unit (fun _ -> ()), ""); ("-v", Arg.Unit (fun _ -> ()), ""); ("-f", Arg.Unit (fun _ -> ()), ""); ("-o", Arg.String (fun _ -> ()), ""); ("--solver", Arg.String (fun _ -> ()), ""); ("--no-install-recommends", Arg.Unit (fun _ -> ()), ""); ("--install-recommends", Arg.Unit (fun _ -> ()), ""); ("--no-upgrade", Arg.Unit (fun _ -> ()), ""); ("--no-remove", Arg.Unit (fun _ -> ()), "") ] in let reqlist = ref [] in let anon s = reqlist := s :: !reqlist in (try Arg.parse_argv ~current:(ref 0) (Array.of_list (Pcre.split ~rex:blank_regexp s)) options anon "" with Arg.Bad s -> fatal "%s" s) ; match List.rev !reqlist with | "install" :: tl -> Install (List.map (parse_pkg_req !suite) tl) | "remove" :: tl -> Remove (List.map (parse_req "apt req remove") tl) | ["upgrade"] -> Upgrade !suite | ["dist-upgrade"] -> DistUpgrade !suite | _ -> fatal "Bad apt request '%s'" s let parse_request_aptitude s = if not (String.exists s "aptitude") then fatal "Not a valid aptitude command" ; let s = String.slice ~first:(String.find s "aptitude") s in let suite = ref None in (* XXX we parse a lot of options, but we do not handle them ... *) let options = [ ("-t", Arg.String (fun l -> suite := Some l), ""); (* default suite *) ("-s", Arg.Unit (fun _ -> ()), ""); ("-y", Arg.Unit (fun _ -> ()), ""); ("-v", Arg.Unit (fun _ -> ()), ""); ("--full-resolver", Arg.Unit (fun _ -> ()), ""); ("--safe-resolver", Arg.Unit (fun _ -> ()), ""); ("-f", Arg.Unit (fun _ -> ()), ""); (* fix-broken *) ("-r", Arg.Unit (fun _ -> ()), ""); (* with-reccomends *) ("--with-recommends", Arg.Unit (fun _ -> ()), ""); ("-R", Arg.Unit (fun _ -> ()), ""); (* without-reccomends *) ("--without-recommends", Arg.Unit (fun _ -> ()), "") ] in let reqlist = ref [] in let anon s = reqlist := s :: !reqlist in (try Arg.parse_argv ~current:(ref 0) (Array.of_list (Pcre.split ~rex:blank_regexp s)) options anon "" with Arg.Bad s -> fatal "%s" s) ; match List.rev !reqlist with | "install" :: tl -> Install (List.map (parse_pkg_req !suite) tl) | "remove" :: tl -> Remove (List.map (parse_req "apt req remove") tl) | ["upgrade"] | ["safe-upgrade"] | ["dist-upgrade"] -> Upgrade !suite | ["full-upgrade"] -> DistUpgrade !suite | _ -> fatal "Bad aptitude request '%s'" s (*****************************************************) (** for details on the apt_preferences format : man apt_preferences *) module Pref = struct type pin_t = | Release of (string * string) list | Origin of string | Version of string type package_t = Package of string | Star type pin_priority_t = int type apt_preferences = { package : package_t; pin : pin_t; pin_priority : pin_priority_t } end let comma_regexp = Pcre.regexp "[ \t]*,[ \t]*" let eq_regexp = Pcre.regexp "[ \t]*=[ \t]*" let di_regexp = Pcre.regexp "[0-9.]+" let al_regexp = Pcre.regexp "[a-zA-Z]+" let parse_pref_labels s = List.map (fun s' -> match Pcre.split ~rex:eq_regexp s' with | [v] when Pcre.pmatch ~rex:di_regexp v -> ("v", v) | [v] when Pcre.pmatch ~rex:al_regexp v -> ("a", v) | [l; v] -> (l, v) | _ -> fatal "To many '=' in label %s" s) (Pcre.split ~rex:comma_regexp s) let general_regexp = Pcre.regexp "^[ \t]*[*][ \t]*$" let parse_pref_package (_, (_, s)) = if Pcre.pmatch ~rex:general_regexp s then Pref.Star else Pref.Package (Dose_pef.Packages.parse_name ("apt pref", (Format822.dummy_loc, s))) let pin_regexp = Pcre.regexp "^([A-Za-z]+)[ \t]+(.*)$" let parse_pin (_, (_, s)) = try let substrings = Pcre.exec ~rex:pin_regexp s in match Pcre.get_substring substrings 1 with | "release" -> Pref.Release (parse_pref_labels (Pcre.get_substring substrings 2)) | "version" -> Pref.Version (Pcre.get_substring substrings 2) | "origin" -> Pref.Origin (Pcre.get_substring substrings 2) | s -> fatal "Unknown pin type %s" s with Not_found -> fatal "Unknown pin format %s" s let parse_preferences_stanza par = { Pref.package = Dose_pef.Packages.parse_s ~required:true parse_pref_package "Package" par; pin = Dose_pef.Packages.parse_s ~required:true parse_pin "Pin" par; pin_priority = Dose_pef.Packages.parse_s ~required:true Dose_pef.Packages.parse_int "Pin-Priority" par } let rec preferences_parser stanza_parser acc p = match Format822_parser.stanza_822 Format822_lexer.token_822 p.Format822.lexbuf with | None -> acc | Some stanza -> let st = stanza_parser stanza in preferences_parser stanza_parser (st :: acc) p (** parse the apt_preferences file *) let parse_preferences_in ic = Format822.parse_from_ch (preferences_parser parse_preferences_stanza []) ic
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>