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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875
|
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE TypeFamilies #-}
-- |
-- Module : Path.IO
-- Copyright : © 2016–present Mark Karpov
-- License : BSD 3 clause
--
-- Maintainer : Mark Karpov <markkarpov92@gmail.com>
-- Stability : experimental
-- Portability : portable
--
-- This module provides an interface to "System.Directory" for users of the
-- "Path" module. It also implements some extra functionality like recursive
-- scanning and copying of directories, working with temporary
-- files\/directories, etc.
module Path.IO
( -- * Actions on directories
createDir,
createDirIfMissing,
ensureDir,
removeDir,
removeDirRecur,
removePathForcibly,
renameDir,
renamePath,
listDir,
listDirRel,
listDirRecur,
listDirRecurRel,
copyDirRecur,
copyDirRecur',
-- ** Walking directory trees
WalkAction (..),
walkDir,
walkDirRel,
walkDirAccum,
walkDirAccumRel,
-- ** Current working directory
getCurrentDir,
setCurrentDir,
withCurrentDir,
-- * Pre-defined directories
getHomeDir,
getAppUserDataDir,
getUserDocsDir,
getTempDir,
D.XdgDirectory (..),
getXdgDir,
D.XdgDirectoryList (..),
getXdgDirList,
-- * Path transformation
AnyPath (..),
resolveFile,
resolveFile',
resolveDir,
resolveDir',
-- * Actions on files
removeFile,
renameFile,
copyFile,
getFileSize,
findExecutable,
findFile,
findFiles,
findFilesWith,
-- * Symbolic links
createFileLink,
createDirLink,
removeDirLink,
getSymlinkTarget,
isSymlink,
-- * Temporary files and directories
withTempFile,
withTempDir,
withSystemTempFile,
withSystemTempDir,
openTempFile,
openBinaryTempFile,
createTempDir,
-- * Existence tests
doesPathExist,
doesFileExist,
doesDirExist,
isLocationOccupied,
forgivingAbsence,
ignoringAbsence,
-- * Permissions
D.Permissions,
D.emptyPermissions,
D.readable,
D.writable,
D.executable,
D.searchable,
D.setOwnerReadable,
D.setOwnerWritable,
D.setOwnerExecutable,
D.setOwnerSearchable,
getPermissions,
setPermissions,
copyPermissions,
-- * Timestamps
getAccessTime,
setAccessTime,
setModificationTime,
getModificationTime,
)
where
import Control.Arrow ((***))
import Control.Monad
import Control.Monad.Catch
import Control.Monad.IO.Class (MonadIO (..))
import Control.Monad.Trans.Class (lift)
import Control.Monad.Trans.Maybe (MaybeT (..), runMaybeT)
import Control.Monad.Trans.Writer.Strict (WriterT, execWriterT, tell)
import Data.DList qualified as DList
import Data.Either (lefts, rights)
import Data.Kind (Type)
import Data.List ((\\))
import Data.Set qualified as S
import Data.Time (UTCTime)
import Path
import System.Directory qualified as D
import System.FilePath qualified as F
import System.IO (Handle)
import System.IO.Error (isDoesNotExistError)
import System.IO.Temp qualified as T
import System.PosixCompat.Files qualified as P
----------------------------------------------------------------------------
-- Actions on directories
-- | @'createDir' dir@ creates a new directory @dir@ which is initially
-- empty, or as near to empty as the operating system allows.
--
-- The operation may fail with:
--
-- * 'isPermissionError' \/ 'PermissionDenied'
-- The process has insufficient privileges to perform the operation.
-- @[EROFS, EACCES]@
--
-- * 'isAlreadyExistsError' \/ 'AlreadyExists'
-- The operand refers to a directory that already exists.
-- @ [EEXIST]@
--
-- * 'HardwareFault'
-- A physical I\/O error has occurred.
-- @[EIO]@
--
-- * 'InvalidArgument'
-- The operand is not a valid directory name.
-- @[ENAMETOOLONG, ELOOP]@
--
-- * 'NoSuchThing'
-- There is no path to the directory.
-- @[ENOENT, ENOTDIR]@
--
-- * 'ResourceExhausted' Insufficient resources (virtual memory, process
-- file descriptors, physical disk space, etc.) are available to perform the
-- operation. @[EDQUOT, ENOSPC, ENOMEM, EMLINK]@
--
-- * 'InappropriateType'
-- The path refers to an existing non-directory object.
-- @[EEXIST]@
createDir :: (MonadIO m) => Path b Dir -> m ()
createDir = liftD D.createDirectory
-- | @'createDirIfMissing' parents dir@ creates a new directory @dir@ if it
-- doesn't exist. If the first argument is 'True' the function will also
-- create all parent directories if they are missing.
createDirIfMissing ::
(MonadIO m) =>
-- | Create its parents too?
Bool ->
-- | The path to the directory you want to make
Path b Dir ->
m ()
createDirIfMissing p = liftD (D.createDirectoryIfMissing p)
-- | Ensure that a directory exists creating it and its parent directories
-- if necessary. This is just a handy shortcut:
--
-- > ensureDir = createDirIfMissing True
--
-- @since 0.3.1
ensureDir :: (MonadIO m) => Path b Dir -> m ()
ensureDir = createDirIfMissing True
-- | @'removeDir' dir@ removes an existing directory @dir@. The
-- implementation may specify additional constraints which must be satisfied
-- before a directory can be removed (e.g. the directory has to be empty, or
-- may not be in use by other processes). It is not legal for an
-- implementation to partially remove a directory unless the entire
-- directory is removed. A conformant implementation need not support
-- directory removal in all situations (e.g. removal of the root directory).
--
-- The operation may fail with:
--
-- * 'HardwareFault'
-- A physical I\/O error has occurred.
-- @[EIO]@
--
-- * 'InvalidArgument'
-- The operand is not a valid directory name.
-- @[ENAMETOOLONG, ELOOP]@
--
-- * 'isDoesNotExistError' \/ 'NoSuchThing'
-- The directory does not exist.
-- @[ENOENT, ENOTDIR]@
--
-- * 'isPermissionError' \/ 'PermissionDenied'
-- The process has insufficient privileges to perform the operation.
-- @[EROFS, EACCES, EPERM]@
--
-- * 'UnsatisfiedConstraints'
-- Implementation-dependent constraints are not satisfied.
-- @[EBUSY, ENOTEMPTY, EEXIST]@
--
-- * 'UnsupportedOperation'
-- The implementation does not support removal in this situation.
-- @[EINVAL]@
--
-- * 'InappropriateType'
-- The operand refers to an existing non-directory object.
-- @[ENOTDIR]@
removeDir :: (MonadIO m) => Path b Dir -> m ()
removeDir = liftD D.removeDirectory
-- | @'removeDirRecur' dir@ removes an existing directory @dir@ together
-- with its contents and sub-directories. Within this directory, symbolic
-- links are removed without affecting their targets.
removeDirRecur :: (MonadIO m) => Path b Dir -> m ()
removeDirRecur = liftD D.removeDirectoryRecursive
-- | Remove a file or directory at /path/ together with its contents and
-- subdirectories. Symbolic links are removed without affecting their
-- targets. If the path does not exist, nothing happens.
--
-- Unlike other removal functions, this function will also attempt to delete
-- files marked as read-only or otherwise made unremovable due to permissions.
-- As a result, if the removal is incomplete, the permissions or attributes on
-- the remaining files may be altered. If there are hard links in the
-- directory, then permissions on all related hard links may be altered.
--
-- If an entry within the directory vanishes while @removePathForcibly@ is
-- running, it is silently ignored.
--
-- If an exception occurs while removing an entry, @removePathForcibly@ will
-- still try to remove as many entries as it can before failing with an
-- exception. The first exception that it encountered is re-thrown.
--
-- @since 1.7.0
removePathForcibly :: (MonadIO m) => Path b t -> m ()
removePathForcibly = liftD D.removePathForcibly
-- | @'renameDir' old new@ changes the name of an existing directory from
-- @old@ to @new@. If the @new@ directory already exists, it is atomically
-- replaced by the @old@ directory. If the @new@ directory is neither the
-- @old@ directory nor an alias of the @old@ directory, it is removed as if
-- by 'removeDir'. A conformant implementation need not support renaming
-- directories in all situations (e.g. renaming to an existing directory, or
-- across different physical devices), but the constraints must be
-- documented.
--
-- On Win32 platforms, @renameDir@ fails if the @new@ directory already
-- exists.
--
-- The operation may fail with:
--
-- * 'HardwareFault'
-- A physical I\/O error has occurred.
-- @[EIO]@
--
-- * 'InvalidArgument'
-- Either operand is not a valid directory name.
-- @[ENAMETOOLONG, ELOOP]@
--
-- * 'isDoesNotExistError' \/ 'NoSuchThing'
-- The original directory does not exist, or there is no path to the target.
-- @[ENOENT, ENOTDIR]@
--
-- * 'isPermissionError' \/ 'PermissionDenied'
-- The process has insufficient privileges to perform the operation.
-- @[EROFS, EACCES, EPERM]@
--
-- * 'ResourceExhausted'
-- Insufficient resources are available to perform the operation.
-- @[EDQUOT, ENOSPC, ENOMEM, EMLINK]@
--
-- * 'UnsatisfiedConstraints'
-- Implementation-dependent constraints are not satisfied.
-- @[EBUSY, ENOTEMPTY, EEXIST]@
--
-- * 'UnsupportedOperation'
-- The implementation does not support renaming in this situation.
-- @[EINVAL, EXDEV]@
--
-- * 'InappropriateType'
-- Either path refers to an existing non-directory object.
-- @[ENOTDIR, EISDIR]@
renameDir ::
(MonadIO m) =>
-- | Old name
Path b0 Dir ->
-- | New name
Path b1 Dir ->
m ()
renameDir = liftD2 D.renameDirectory
-- | Rename a file or directory. If the destination path already exists, it
-- is replaced atomically. The destination path must not point to an existing
-- directory. A conformant implementation need not support renaming files in
-- all situations (e.g. renaming across different physical devices), but the
-- constraints must be documented.
--
-- The operation may fail with:
--
-- * @HardwareFault@
-- A physical I\/O error has occurred.
-- @[EIO]@
--
-- * @InvalidArgument@
-- Either operand is not a valid file name.
-- @[ENAMETOOLONG, ELOOP]@
--
-- * 'isDoesNotExistError'
-- The original file does not exist, or there is no path to the target.
-- @[ENOENT, ENOTDIR]@
--
-- * 'isPermissionError'
-- The process has insufficient privileges to perform the operation.
-- @[EROFS, EACCES, EPERM]@
--
-- * 'System.IO.isFullError'
-- Insufficient resources are available to perform the operation.
-- @[EDQUOT, ENOSPC, ENOMEM, EMLINK]@
--
-- * @UnsatisfiedConstraints@
-- Implementation-dependent constraints are not satisfied.
-- @[EBUSY]@
--
-- * @UnsupportedOperation@
-- The implementation does not support renaming in this situation.
-- @[EXDEV]@
--
-- * @InappropriateType@
-- Either the destination path refers to an existing directory, or one of the
-- parent segments in the destination path is not a directory.
-- @[ENOTDIR, EISDIR, EINVAL, EEXIST, ENOTEMPTY]@
--
-- @since 1.7.0
renamePath :: (MonadIO m) => Path b0 t -> Path b1 t -> m ()
renamePath = liftD2 D.renamePath
-- | @'listDir' dir@ returns a list of /all/ entries in @dir@ without the
-- special entries (@.@ and @..@). Entries are not sorted.
--
-- The operation may fail with:
--
-- * 'HardwareFault'
-- A physical I\/O error has occurred.
-- @[EIO]@
--
-- * 'InvalidArgument'
-- The operand is not a valid directory name.
-- @[ENAMETOOLONG, ELOOP]@
--
-- * 'isDoesNotExistError' \/ 'NoSuchThing'
-- The directory does not exist.
-- @[ENOENT, ENOTDIR]@
--
-- * 'isPermissionError' \/ 'PermissionDenied'
-- The process has insufficient privileges to perform the operation.
-- @[EACCES]@
--
-- * 'ResourceExhausted'
-- Insufficient resources are available to perform the operation.
-- @[EMFILE, ENFILE]@
--
-- * 'InappropriateType'
-- The path refers to an existing non-directory object.
-- @[ENOTDIR]@
listDir ::
(MonadIO m) =>
-- | Directory to list
Path b Dir ->
-- | Sub-directories and files
m ([Path Abs Dir], [Path Abs File])
listDir path = do
bpath <- makeAbsolute path
(subdirs, files) <- listDirRel bpath
return
( (bpath </>) <$> subdirs,
(bpath </>) <$> files
)
-- | The same as 'listDir' but returns relative paths.
--
-- @since 1.4.0
listDirRel ::
(MonadIO m) =>
-- | Directory to list
Path b Dir ->
-- | Sub-directories and files
m ([Path Rel Dir], [Path Rel File])
listDirRel path = liftIO $ do
raw <- liftD D.getDirectoryContents path
items <- forM (raw \\ [".", ".."]) $ \item -> do
isDir <- liftIO (D.doesDirectoryExist $ toFilePath path F.</> item)
if isDir
then Left <$> parseRelDir item
else Right <$> parseRelFile item
return (lefts items, rights items)
-- | Similar to 'listDir', but recursively traverses every sub-directory
-- /excluding symbolic links/, and returns all files and directories found.
-- This can fail with the same exceptions as 'listDir'.
--
-- __Note__: before version /1.3.0/, this function followed symlinks.
listDirRecur ::
(MonadIO m) =>
-- | Directory to list
Path b Dir ->
-- | Sub-directories and files
m ([Path Abs Dir], [Path Abs File])
listDirRecur dir =
(DList.toList *** DList.toList)
<$> walkDirAccum (Just excludeSymlinks) writer dir
where
excludeSymlinks _ subdirs _ =
WalkExclude <$> filterM isSymlink subdirs
writer _ ds fs =
return
( DList.fromList ds,
DList.fromList fs
)
-- | The same as 'listDirRecur' but returns paths that are relative to the
-- given directory.
--
-- @since 1.4.2
listDirRecurRel ::
(MonadIO m) =>
-- | Directory to list
Path b Dir ->
-- | Sub-directories and files
m ([Path Rel Dir], [Path Rel File])
listDirRecurRel dir =
(DList.toList *** DList.toList)
<$> walkDirAccumRel (Just excludeSymlinks) writer dir
where
excludeSymlinks tdir subdirs _ =
WalkExclude <$> filterM (isSymlink . (dir </>) . (tdir </>)) subdirs
writer tdir ds fs =
return
( DList.fromList ((tdir </>) <$> ds),
DList.fromList ((tdir </>) <$> fs)
)
-- | Copies a directory recursively. It /does not/ follow symbolic links and
-- preserves permissions when possible. If the destination directory already
-- exists, new files and sub-directories complement its structure, possibly
-- overwriting old files if they happen to have the same name as the new
-- ones.
--
-- __Note__: before version /1.3.0/, this function followed symlinks.
--
-- __Note__: before version /1.6.0/, the function created empty directories
-- in the destination directory when the source directory contained
-- directory symlinks. The symlinked directories were not recursively
-- traversed. It also copied symlinked files creating normal regular files
-- in the target directory as the result. This was fixed in the version
-- /1.6.0/ so that the function now behaves much like the @cp@ utility, not
-- traversing symlinked directories, but recreating symlinks in the target
-- directory according to their targets in the source directory.
copyDirRecur ::
(MonadIO m) =>
-- | Source
Path b0 Dir ->
-- | Destination
Path b1 Dir ->
m ()
copyDirRecur = copyDirRecurGen True
-- | The same as 'copyDirRecur', but it /does not/ preserve directory
-- permissions. This may be useful, for example, if the directory you want
-- to copy is “read-only”, but you want your copy to be editable.
--
-- @since 1.1.0
--
-- __Note__: before version /1.3.0/, this function followed symlinks.
--
-- __Note__: before version /1.6.0/, the function created empty directories
-- in the destination directory when the source directory contained
-- directory symlinks. The symlinked directories were not recursively
-- traversed. It also copied symlinked files creating normal regular files
-- in the target directory as the result. This was fixed in the version
-- /1.6.0/ so that the function now behaves much like the @cp@ utility, not
-- traversing symlinked directories, but recreating symlinks in the target
-- directory according to their targets in the source directory.
copyDirRecur' ::
(MonadIO m) =>
-- | Source
Path b0 Dir ->
-- | Destination
Path b1 Dir ->
m ()
copyDirRecur' = copyDirRecurGen False
-- | Generic version of 'copyDirRecur'. The first argument controls whether
-- to preserve directory permissions or not. /Does not/ follow symbolic
-- links. Internal function.
copyDirRecurGen ::
(MonadIO m) =>
-- | Should we preserve directory permissions?
Bool ->
-- | Source
Path b0 Dir ->
-- | Destination
Path b1 Dir ->
m ()
copyDirRecurGen preserveDirPermissions src dest = liftIO $ do
bsrc <- makeAbsolute src
bdest <- makeAbsolute dest
(dirs, files) <- listDirRecur bsrc
let swapParent ::
Path Abs Dir ->
Path Abs Dir ->
Path Abs t ->
IO (Path Abs t)
swapParent old new path =
(new </>)
<$> stripProperPrefix old path
ensureDir bdest
copyPermissionsIOs <- forM dirs $ \srcDir -> do
destDir <- swapParent bsrc bdest srcDir
dirIsSymlink <- isSymlink srcDir
if dirIsSymlink
then do
target <- getSymlinkTarget srcDir
D.createDirectoryLink target $
toFilePath' destDir
else ensureDir destDir
pure $ ignoringIOErrors (copyPermissions srcDir destDir)
forM_ files $ \srcFile -> do
destFile <- swapParent bsrc bdest srcFile
fileIsSymlink <- isSymlink srcFile
if fileIsSymlink
then do
target <- getSymlinkTarget srcFile
D.createFileLink target (toFilePath destFile)
else copyFile srcFile destFile
when preserveDirPermissions $ do
ignoringIOErrors (copyPermissions bsrc bdest)
sequence_ copyPermissionsIOs
----------------------------------------------------------------------------
-- Walking directory trees
-- Recursive directory walk functionality, with a flexible API and avoidance
-- of loops. Following are some notes on the design.
--
-- Callback handler API:
--
-- The callback handler interface is designed to be highly flexible. There are
-- two possible alternative ways to control the traversal:
--
-- - In the context of the parent dir, decide which subdirs to descend into.
-- - In the context of the subdir, decide whether to traverse the subdir or not.
--
-- We choose the first approach here since it is more flexible and can
-- achieve everything that the second one can. The additional benefit with
-- this is that we can use the parent dir context efficiently instead of
-- each child looking at the parent context independently.
--
-- To control which subdirs to descend we use a 'WalkExclude' API instead of
-- a “WalkInclude” type of API so that the handlers cannot accidentally ask
-- us to descend a dir which is not a subdir of the directory being walked.
--
-- Avoiding Traversal Loops:
--
-- There can be loops in the path being traversed due to subdirectory
-- symlinks or filesystem corruptions can cause loops by creating directory
-- hardlinks. Also, if the filesystem is changing while we are traversing
-- then we might be going in loops due to the changes.
--
-- We record the path we are coming from to detect the loops. If we end up
-- traversing the same directory again we are in a loop.
-- | Action returned by the traversal handler function. The action controls
-- how the traversal will proceed.
--
-- __Note__: in version /1.4.0/ the type was adjusted to have the @b@ type
-- parameter.
--
-- @since 1.2.0
data WalkAction b
= -- | Finish the entire walk altogether
WalkFinish
| -- | List of sub-directories to exclude from
-- descending
WalkExclude [Path b Dir]
deriving (Eq, Show)
-- | Traverse a directory tree using depth first pre-order traversal,
-- calling a handler function at each directory node traversed. The absolute
-- paths of the parent directory, sub-directories and the files in the
-- directory are provided as arguments to the handler.
--
-- The function is capable of detecting and avoiding traversal loops in the
-- directory tree. Note that the traversal follows symlinks by default, an
-- appropriate traversal handler can be used to avoid that when necessary.
--
-- @since 1.2.0
walkDir ::
(MonadIO m) =>
-- | Handler (@dir -> subdirs -> files -> 'WalkAction'@)
(Path Abs Dir -> [Path Abs Dir] -> [Path Abs File] -> m (WalkAction Abs)) ->
-- | Directory where traversal begins
Path b Dir ->
m ()
walkDir handler topdir =
void $
makeAbsolute topdir >>= walkAvoidLoop S.empty
where
walkAvoidLoop traversed curdir = do
mRes <- checkLoop traversed curdir
case mRes of
Nothing -> return $ Just ()
Just traversed' -> walktree traversed' curdir
walktree traversed curdir = do
(subdirs, files) <- listDir curdir
action <- handler curdir subdirs files
case action of
WalkFinish -> return Nothing
WalkExclude xdirs ->
case subdirs \\ xdirs of
[] -> return $ Just ()
ds ->
runMaybeT $
mapM_
(MaybeT . walkAvoidLoop traversed)
ds
checkLoop traversed dir = do
st <- liftIO $ P.getFileStatus (fromAbsDir dir)
let ufid = (P.deviceID st, P.fileID st)
return $
if S.member ufid traversed
then Nothing
else Just (S.insert ufid traversed)
-- | The same as 'walkDir' but uses relative paths. The handler is given
-- @dir@, directory relative to the directory where traversal begins.
-- Sub-directories and files are relative to @dir@.
--
-- @since 1.4.2
walkDirRel ::
(MonadIO m) =>
-- | Handler (@dir -> subdirs -> files -> 'WalkAction'@)
( Path Rel Dir ->
[Path Rel Dir] ->
[Path Rel File] ->
m (WalkAction Rel)
) ->
-- | Directory where traversal begins
Path b Dir ->
m ()
walkDirRel handler topdir' = do
topdir <- makeAbsolute topdir'
let walkAvoidLoop traversed curdir = do
mRes <- checkLoop traversed (topdir </> curdir)
case mRes of
Nothing -> return $ Just ()
Just traversed' -> walktree traversed' curdir
walktree traversed curdir = do
(subdirs, files) <- listDirRel (topdir </> curdir)
action <- handler curdir subdirs files
case action of
WalkFinish -> return Nothing
WalkExclude xdirs ->
case subdirs \\ xdirs of
[] -> return $ Just ()
ds ->
runMaybeT $
mapM_
(MaybeT . walkAvoidLoop traversed)
((curdir </>) <$> ds)
checkLoop traversed dir = do
st <- liftIO $ P.getFileStatus (fromAbsDir dir)
let ufid = (P.deviceID st, P.fileID st)
return $
if S.member ufid traversed
then Nothing
else Just (S.insert ufid traversed)
void (walkAvoidLoop S.empty $(mkRelDir "."))
-- | Similar to 'walkDir' but accepts a 'Monoid'-returning output writer as
-- well. Values returned by the output writer invocations are accumulated
-- and returned.
--
-- Both, the descend handler as well as the output writer can be used for
-- side effects but keep in mind that the output writer runs before the
-- descend handler.
--
-- @since 1.2.0
walkDirAccum ::
(MonadIO m, Monoid o) =>
-- | Descend handler (@dir -> subdirs -> files -> 'WalkAction'@),
-- descend the whole tree if omitted
Maybe
(Path Abs Dir -> [Path Abs Dir] -> [Path Abs File] -> m (WalkAction Abs)) ->
-- | Output writer (@dir -> subdirs -> files -> o@)
(Path Abs Dir -> [Path Abs Dir] -> [Path Abs File] -> m o) ->
-- | Directory where traversal begins
Path b Dir ->
-- | Accumulation of outputs generated by the output writer invocations
m o
walkDirAccum = walkDirAccumWith walkDir
-- | The same as 'walkDirAccum' but uses relative paths. The handler and
-- writer are given @dir@, directory relative to the directory where
-- traversal begins. Sub-directories and files are relative to @dir@.
--
-- @since 1.4.2
walkDirAccumRel ::
(MonadIO m, Monoid o) =>
-- | Descend handler (@dir -> subdirs -> files -> 'WalkAction'@),
-- descend the whole tree if omitted
Maybe
(Path Rel Dir -> [Path Rel Dir] -> [Path Rel File] -> m (WalkAction Rel)) ->
-- | Output writer (@dir -> subdirs -> files -> o@)
(Path Rel Dir -> [Path Rel Dir] -> [Path Rel File] -> m o) ->
-- | Directory where traversal begins
Path b Dir ->
-- | Accumulation of outputs generated by the output writer invocations
m o
walkDirAccumRel = walkDirAccumWith walkDirRel
-- | Non-public helper function for defining accumulating walking actions.
walkDirAccumWith ::
(MonadIO m, Monoid o) =>
-- | The walk function we use
( ( Path a Dir ->
[Path a Dir] ->
[Path a File] ->
WriterT o m (WalkAction a)
) ->
Path b Dir ->
WriterT o m ()
) ->
-- | Descend handler (@dir -> subdirs -> files -> 'WalkAction'@),
-- descend the whole tree if omitted
Maybe (Path a Dir -> [Path a Dir] -> [Path a File] -> m (WalkAction a)) ->
-- | Output writer (@dir -> subdirs -> files -> o@)
(Path a Dir -> [Path a Dir] -> [Path a File] -> m o) ->
-- | Directory where traversal begins
Path b Dir ->
-- | Accumulation of outputs generated by the output writer invocations
m o
walkDirAccumWith walkF dHandler writer topdir =
execWriterT (walkF handler topdir)
where
handler dir subdirs files = do
res <- lift $ writer dir subdirs files
tell res
case dHandler of
Just h -> lift $ h dir subdirs files
Nothing -> return (WalkExclude [])
----------------------------------------------------------------------------
-- Current working directory
-- | Obtain the current working directory as an absolute path.
--
-- In a multithreaded program, the current working directory is a global
-- state shared among all threads of the process. Therefore, when performing
-- filesystem operations from multiple threads, it is highly recommended to
-- use absolute rather than relative paths (see: 'makeAbsolute').
--
-- The operation may fail with:
--
-- * 'HardwareFault'
-- A physical I\/O error has occurred.
-- @[EIO]@
--
-- * 'isDoesNotExistError' or 'NoSuchThing'
-- There is no path referring to the working directory.
-- @[EPERM, ENOENT, ESTALE...]@
--
-- * 'isPermissionError' or 'PermissionDenied'
-- The process has insufficient privileges to perform the operation.
-- @[EACCES]@
--
-- * 'ResourceExhausted'
-- Insufficient resources are available to perform the operation.
--
-- * 'UnsupportedOperation'
-- The operating system has no notion of current working directory.
getCurrentDir :: (MonadIO m) => m (Path Abs Dir)
getCurrentDir = liftIO $ D.getCurrentDirectory >>= parseAbsDir
-- | Change the working directory to the given path.
--
-- In a multithreaded program, the current working directory is a global
-- state shared among all threads of the process. Therefore, when performing
-- filesystem operations from multiple threads, it is highly recommended to
-- use absolute rather than relative paths (see: 'makeAbsolute').
--
-- The operation may fail with:
--
-- * 'HardwareFault'
-- A physical I\/O error has occurred.
-- @[EIO]@
--
-- * 'InvalidArgument'
-- The operand is not a valid directory name.
-- @[ENAMETOOLONG, ELOOP]@
--
-- * 'isDoesNotExistError' or 'NoSuchThing'
-- The directory does not exist.
-- @[ENOENT, ENOTDIR]@
--
-- * 'isPermissionError' or 'PermissionDenied'
-- The process has insufficient privileges to perform the operation.
-- @[EACCES]@
--
-- * 'UnsupportedOperation'
-- The operating system has no notion of current working directory, or the
-- working directory cannot be dynamically changed.
--
-- * 'InappropriateType'
-- The path refers to an existing non-directory object.
-- @[ENOTDIR]@
setCurrentDir :: (MonadIO m) => Path b Dir -> m ()
setCurrentDir = liftD D.setCurrentDirectory
-- | Run an 'IO' action with the given working directory and restore the
-- original working directory afterwards, even if the given action fails due
-- to an exception.
--
-- The operation may fail with the same exceptions as 'getCurrentDir' and
-- 'setCurrentDir'.
withCurrentDir ::
(MonadIO m, MonadMask m) =>
-- | Directory to execute in
Path b Dir ->
-- | Action to be executed
m a ->
m a
withCurrentDir dir action =
bracket getCurrentDir setCurrentDir $ const (setCurrentDir dir >> action)
----------------------------------------------------------------------------
-- Pre-defined directories
-- | Return the current user's home directory.
--
-- The directory returned is expected to be writable by the current user,
-- but note that it isn't generally considered good practice to store
-- application-specific data here; use 'getAppUserDataDir' instead.
--
-- On Unix, 'getHomeDir' returns the value of the @HOME@ environment
-- variable. On Windows, the system is queried for a suitable path; a
-- typical path might be @C:\/Users\//\<user\>/@.
--
-- The operation may fail with:
--
-- * 'UnsupportedOperation'
-- The operating system has no notion of home directory.
--
-- * 'isDoesNotExistError'
-- The home directory for the current user does not exist, or
-- cannot be found.
getHomeDir :: (MonadIO m) => m (Path Abs Dir)
getHomeDir = liftIO D.getHomeDirectory >>= resolveDir'
-- | Obtain the path to a special directory for storing user-specific
-- application data (traditional Unix location).
--
-- The argument is usually the name of the application. Since it will be
-- integrated into the path, it must consist of valid path characters.
--
-- * On Unix-like systems, the path is @~\/./\<app\>/@.
-- * On Windows, the path is @%APPDATA%\//\<app\>/@
-- (e.g. @C:\/Users\//\<user\>/\/AppData\/Roaming\//\<app\>/@)
--
-- Note: the directory may not actually exist, in which case you would need
-- to create it. It is expected that the parent directory exists and is
-- writable.
--
-- The operation may fail with:
--
-- * 'UnsupportedOperation'
-- The operating system has no notion of application-specific data
-- directory.
--
-- * 'isDoesNotExistError'
-- The home directory for the current user does not exist, or cannot be
-- found.
getAppUserDataDir ::
(MonadIO m) =>
-- | Name of application (used in path construction)
String ->
m (Path Abs Dir)
getAppUserDataDir = liftIO . (>>= parseAbsDir) . D.getAppUserDataDirectory
-- | Return the current user's document directory.
--
-- The directory returned is expected to be writable by the current user,
-- but note that it isn't generally considered good practice to store
-- application-specific data here; use 'getAppUserDataDir' instead.
--
-- On Unix, 'getUserDocsDir' returns the value of the @HOME@ environment
-- variable. On Windows, the system is queried for a suitable path; a
-- typical path might be @C:\/Users\//\<user\>/\/Documents@.
--
-- The operation may fail with:
--
-- * 'UnsupportedOperation'
-- The operating system has no notion of document directory.
--
-- * 'isDoesNotExistError'
-- The document directory for the current user does not exist, or
-- cannot be found.
getUserDocsDir :: (MonadIO m) => m (Path Abs Dir)
getUserDocsDir = liftIO $ D.getUserDocumentsDirectory >>= parseAbsDir
-- | Return the current directory for temporary files.
--
-- On Unix, 'getTempDir' returns the value of the @TMPDIR@ environment
-- variable or \"\/tmp\" if the variable isn\'t defined. On Windows, the
-- function checks for the existence of environment variables in the
-- following order and uses the first path found:
--
-- *
-- TMP environment variable.
--
-- *
-- TEMP environment variable.
--
-- *
-- USERPROFILE environment variable.
--
-- *
-- The Windows directory
--
-- The operation may fail with:
--
-- * 'UnsupportedOperation'
-- The operating system has no notion of temporary directory.
--
-- The function doesn't verify whether the path exists.
getTempDir :: (MonadIO m) => m (Path Abs Dir)
getTempDir = liftIO D.getTemporaryDirectory >>= resolveDir'
-- | Obtain the paths to special directories for storing user-specific
-- application data, configuration, and cache files, conforming to the
-- <http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html XDG Base Directory Specification>.
-- Compared with 'getAppUserDataDir', this function provides a more
-- fine-grained hierarchy as well as greater flexibility for the user.
--
-- It also works on Windows, although in that case 'D.XdgData' and
-- 'D.XdgConfig' will map to the same directory.
--
-- Note: The directory may not actually exist, in which case you would need
-- to create it with file mode @700@ (i.e. only accessible by the owner).
--
-- Note also: this is a piece of conditional API, only available if
-- @directory-1.2.3.0@ or later is used.
--
-- @since 1.2.1
getXdgDir ::
(MonadIO m) =>
-- | Which special directory
D.XdgDirectory ->
-- | A relative path that is appended to the path; if 'Nothing', the
-- base path is returned
Maybe (Path Rel Dir) ->
m (Path Abs Dir)
getXdgDir xdgDir suffix =
liftIO $ (D.getXdgDirectory xdgDir $ maybe "" toFilePath suffix) >>= parseAbsDir
-- | Similar to 'getXdgDir' but retrieves the entire list of XDG
-- directories.
--
-- On Windows, 'D.XdgDataDirs' and 'D.XdgConfigDirs' usually map to the same
-- list of directories unless overridden.
--
-- Refer to the docs of 'D.XdgDirectoryList' for more details.
--
-- @since 1.5.0
getXdgDirList ::
(MonadIO m) =>
-- | Which special directory list
D.XdgDirectoryList ->
m [Path Abs Dir]
getXdgDirList xdgDirList =
liftIO (D.getXdgDirectoryList xdgDirList >>= mapM parseAbsDir)
----------------------------------------------------------------------------
-- Path transformation
-- | Class of things ('Path's) that can be canonicalized, made absolute, and
-- made relative to a some base directory.
class AnyPath path where
-- | Type of absolute version of the given @path@.
type AbsPath path :: Type
-- | Type of relative version of the given @path@.
type RelPath path :: Type
-- | Make a path absolute and remove as many indirections from it as
-- possible. Indirections include the two special directories @.@ and
-- @..@, as well as any symbolic links. The input path need not point to
-- an existing file or directory.
--
-- __Note__: if you require only an absolute path, use 'makeAbsolute'
-- instead. Most programs need not care about whether a path contains
-- symbolic links.
--
-- Due to the fact that symbolic links are dependent on the state of the
-- existing filesystem, the function can only make a conservative,
-- best-effort attempt. Nevertheless, if the input path points to an
-- existing file or directory, then the output path shall also point to
-- the same file or directory.
--
-- Formally, symbolic links are removed from the longest prefix of the
-- path that still points to an existing file. The function is not atomic,
-- therefore concurrent changes in the filesystem may lead to incorrect
-- results.
--
-- (Despite the name, the function does not guarantee canonicity of the
-- returned path due to the presence of hard links, mount points, etc.)
--
-- /Known bug(s)/: on Windows, the function does not resolve symbolic
-- links.
--
-- Please note that before version 1.2.3.0 of the @directory@ package,
-- this function had unpredictable behavior on non-existent paths.
canonicalizePath ::
(MonadIO m) =>
path ->
m (AbsPath path)
-- | Make a path absolute by prepending the current directory (if it isn't
-- already absolute) and applying 'F.normalise' to the result.
--
-- If the path is already absolute, the operation never fails. Otherwise,
-- the operation may fail with the same exceptions as 'getCurrentDir'.
makeAbsolute ::
(MonadIO m) =>
path ->
m (AbsPath path)
-- | Make a path relative to a given directory.
--
-- @since 0.3.0
makeRelative ::
(MonadThrow m) =>
-- | Base directory
Path Abs Dir ->
-- | Path that will be made relative to base directory
path ->
m (RelPath path)
-- | Make a path relative to current working directory.
--
-- @since 0.3.0
makeRelativeToCurrentDir ::
(MonadIO m) =>
path ->
m (RelPath path)
instance AnyPath (Path b File) where
type AbsPath (Path b File) = Path Abs File
type RelPath (Path b File) = Path Rel File
canonicalizePath = liftD $ D.canonicalizePath >=> parseAbsFile
makeAbsolute = liftD $ D.makeAbsolute >=> parseAbsFile
makeRelative b p = parseRelFile (F.makeRelative (toFilePath b) (toFilePath p))
makeRelativeToCurrentDir p = liftIO $ getCurrentDir >>= flip makeRelative p
instance AnyPath (Path b Dir) where
type AbsPath (Path b Dir) = Path Abs Dir
type RelPath (Path b Dir) = Path Rel Dir
canonicalizePath = liftD D.canonicalizePath >=> liftIO . parseAbsDir
makeAbsolute = liftD D.makeAbsolute >=> liftIO . parseAbsDir
makeRelative b p = parseRelDir (F.makeRelative (toFilePath b) (toFilePath p))
makeRelativeToCurrentDir p = liftIO $ getCurrentDir >>= flip makeRelative p
-- | @since 1.8.0
instance AnyPath (SomeBase File) where
type AbsPath (SomeBase File) = Path Abs File
type RelPath (SomeBase File) = Path Rel File
canonicalizePath s = case s of
Abs a -> canonicalizePath a
Rel a -> canonicalizePath a
makeAbsolute s = case s of
Abs a -> makeAbsolute a
Rel a -> makeAbsolute a
makeRelative r s = case s of
Abs a -> makeRelative r a
Rel a -> makeRelative r a
makeRelativeToCurrentDir s = case s of
Abs a -> makeRelativeToCurrentDir a
Rel a -> makeRelativeToCurrentDir a
-- | @since 1.8.0
instance AnyPath (SomeBase Dir) where
type AbsPath (SomeBase Dir) = Path Abs Dir
type RelPath (SomeBase Dir) = Path Rel Dir
canonicalizePath s = case s of
Abs a -> canonicalizePath a
Rel a -> canonicalizePath a
makeAbsolute s = case s of
Abs a -> makeAbsolute a
Rel a -> makeAbsolute a
makeRelative r s = case s of
Abs a -> makeRelative r a
Rel a -> makeRelative r a
makeRelativeToCurrentDir s = case s of
Abs a -> makeRelativeToCurrentDir a
Rel a -> makeRelativeToCurrentDir a
-- | Append stringly-typed path to an absolute path and then canonicalize
-- it.
--
-- @since 0.3.0
resolveFile ::
(MonadIO m) =>
-- | Base directory
Path Abs Dir ->
-- | Path to resolve
FilePath ->
m (Path Abs File)
resolveFile b p = liftIO $ D.canonicalizePath (toFilePath b F.</> p) >>= parseAbsFile
-- | The same as 'resolveFile', but uses current working directory.
--
-- @since 0.3.0
resolveFile' ::
(MonadIO m) =>
-- | Path to resolve
FilePath ->
m (Path Abs File)
resolveFile' p = getCurrentDir >>= flip resolveFile p
-- | The same as 'resolveFile', but for directories.
--
-- @since 0.3.0
resolveDir ::
(MonadIO m) =>
-- | Base directory
Path Abs Dir ->
-- | Path to resolve
FilePath ->
m (Path Abs Dir)
resolveDir b p = liftIO $ D.canonicalizePath (toFilePath b F.</> p) >>= parseAbsDir
-- | The same as 'resolveDir', but uses current working directory.
--
-- @since 0.3.0
resolveDir' ::
(MonadIO m) =>
-- | Path to resolve
FilePath ->
m (Path Abs Dir)
resolveDir' p = getCurrentDir >>= flip resolveDir p
----------------------------------------------------------------------------
-- Actions on files
-- | @'removeFile' file@ removes the directory entry for an existing file
-- @file@, where @file@ is not itself a directory. The implementation may
-- specify additional constraints which must be satisfied before a file can
-- be removed (e.g. the file may not be in use by other processes).
--
-- The operation may fail with:
--
-- * 'HardwareFault'
-- A physical I\/O error has occurred.
-- @[EIO]@
--
-- * 'InvalidArgument'
-- The operand is not a valid file name.
-- @[ENAMETOOLONG, ELOOP]@
--
-- * 'isDoesNotExistError' \/ 'NoSuchThing'
-- The file does not exist.
-- @[ENOENT, ENOTDIR]@
--
-- * 'isPermissionError' \/ 'PermissionDenied'
-- The process has insufficient privileges to perform the operation.
-- @[EROFS, EACCES, EPERM]@
--
-- * 'UnsatisfiedConstraints'
-- Implementation-dependent constraints are not satisfied.
-- @[EBUSY]@
--
-- * 'InappropriateType'
-- The operand refers to an existing directory.
-- @[EPERM, EINVAL]@
removeFile :: (MonadIO m) => Path b File -> m ()
removeFile = liftD D.removeFile
-- | @'renameFile' old new@ changes the name of an existing file system
-- object from /old/ to /new/. If the /new/ object already exists, it is
-- atomically replaced by the /old/ object. Neither path may refer to an
-- existing directory. A conformant implementation need not support renaming
-- files in all situations (e.g. renaming across different physical
-- devices), but the constraints must be documented.
--
-- The operation may fail with:
--
-- * 'HardwareFault'
-- A physical I\/O error has occurred.
-- @[EIO]@
--
-- * 'InvalidArgument'
-- Either operand is not a valid file name.
-- @[ENAMETOOLONG, ELOOP]@
--
-- * 'isDoesNotExistError' \/ 'NoSuchThing'
-- The original file does not exist, or there is no path to the target.
-- @[ENOENT, ENOTDIR]@
--
-- * 'isPermissionError' \/ 'PermissionDenied'
-- The process has insufficient privileges to perform the operation.
-- @[EROFS, EACCES, EPERM]@
--
-- * 'ResourceExhausted'
-- Insufficient resources are available to perform the operation.
-- @[EDQUOT, ENOSPC, ENOMEM, EMLINK]@
--
-- * 'UnsatisfiedConstraints'
-- Implementation-dependent constraints are not satisfied.
-- @[EBUSY]@
--
-- * 'UnsupportedOperation'
-- The implementation does not support renaming in this situation.
-- @[EXDEV]@
--
-- * 'InappropriateType'
-- Either path refers to an existing directory.
-- @[ENOTDIR, EISDIR, EINVAL, EEXIST, ENOTEMPTY]@
renameFile ::
(MonadIO m) =>
-- | Original location
Path b0 File ->
-- | New location
Path b1 File ->
m ()
renameFile = liftD2 D.renameFile
-- | @'copyFile' old new@ copies the existing file from @old@ to @new@. If
-- the @new@ file already exists, it is atomically replaced by the @old@
-- file. Neither path may refer to an existing directory. The permissions of
-- @old@ are copied to @new@, if possible.
copyFile ::
(MonadIO m) =>
-- | Original location
Path b0 File ->
-- | Where to put copy
Path b1 File ->
m ()
copyFile = liftD2 D.copyFile
-- | Obtain the size of a file in bytes.
--
-- @since 1.7.0
getFileSize :: (MonadIO m) => Path b File -> m Integer
getFileSize = liftD D.getFileSize
-- | Given an executable file name, search for such file in the directories
-- listed in system @PATH@. The returned value is the path to the found
-- executable or 'Nothing' if an executable with the given name was not
-- found. For example ('findExecutable' \"ghc\") gives you the path to GHC.
--
-- The path returned by 'findExecutable' corresponds to the program that
-- would be executed by 'System.Process.createProcess' when passed the same
-- string (as a RawCommand, not a ShellCommand).
--
-- On Windows, 'findExecutable' calls the Win32 function 'SearchPath', which
-- may search other places before checking the directories in @PATH@. Where
-- it actually searches depends on registry settings, but notably includes
-- the directory containing the current executable. See
-- <http://msdn.microsoft.com/en-us/library/aa365527.aspx> for more details.
findExecutable ::
(MonadIO m) =>
-- | Executable file name
Path Rel File ->
-- | Path to found executable
m (Maybe (Path Abs File))
findExecutable = fmap (>>= parseAbsFile) . liftD D.findExecutable
-- | Search through the given set of directories for the given file.
findFile ::
(MonadIO m) =>
-- | Set of directories to search in
[Path b Dir] ->
-- | Filename of interest
Path Rel File ->
-- | Absolute path to file (if found)
m (Maybe (Path Abs File))
findFile [] _ = return Nothing
findFile (d : ds) file = do
bfile <- (</> file) <$> makeAbsolute d
exist <- doesFileExist bfile
if exist
then return (Just bfile)
else findFile ds file
-- | Search through the given set of directories for the given file and
-- return a list of paths where the given file exists.
findFiles ::
(MonadIO m) =>
-- | Set of directories to search in
[Path b Dir] ->
-- | Filename of interest
Path Rel File ->
-- | Absolute paths to all found files
m [Path Abs File]
findFiles = findFilesWith (const (return True))
-- | Search through the given set of directories for the given file and with
-- the given property (usually permissions) and return a list of paths where
-- the given file exists and has the property.
findFilesWith ::
(MonadIO m) =>
-- | How to test the files
(Path Abs File -> m Bool) ->
-- | Set of directories to search in
[Path b Dir] ->
-- | Filename of interest
Path Rel File ->
-- | Absolute paths to all found files
m [Path Abs File]
findFilesWith _ [] _ = return []
findFilesWith f (d : ds) file = do
bfile <- (</> file) <$> makeAbsolute d
exist <- doesFileExist bfile
b <- if exist then f bfile else return False
if b
then (bfile :) <$> findFilesWith f ds file
else findFilesWith f ds file
----------------------------------------------------------------------------
-- Symbolic links
-- | Create a /file/ symbolic link. The target path can be either absolute
-- or relative and need not refer to an existing file. The order of
-- arguments follows the POSIX convention.
--
-- To remove an existing file symbolic link, use 'removeFile'.
--
-- Although the distinction between /file/ symbolic links and /directory/
-- symbolic links does not exist on POSIX systems, on Windows this is an
-- intrinsic property of every symbolic link and cannot be changed without
-- recreating the link. A file symbolic link that actually points to a
-- directory will fail to dereference and vice versa. Moreover, creating
-- symbolic links on Windows may require privileges unavailable to users
-- outside the Administrators group. Portable programs that use symbolic
-- links should take both into consideration.
--
-- On Windows, the function is implemented using @CreateSymbolicLink@. Since
-- 1.3.3.0, the @SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE@ flag is
-- included if supported by the operating system. On POSIX, the function
-- uses @symlink@ and is therefore atomic.
--
-- Windows-specific errors: This operation may fail with
-- 'System.IO.Error.permissionErrorType' if the user lacks the privileges to
-- create symbolic links. It may also fail with
-- 'System.IO.Error.illegalOperationErrorType' if the file system does not
-- support symbolic links.
--
-- @since 1.5.0
createFileLink ::
(MonadIO m) =>
-- | Path to the target file
Path b0 File ->
-- | Path to the link to be created
Path b1 File ->
m ()
createFileLink = liftD2 D.createFileLink
-- | Create a /directory/ symbolic link. The target path can be either
-- absolute or relative and need not refer to an existing directory. The
-- order of arguments follows the POSIX convention.
--
-- To remove an existing directory symbolic link, use 'removeDirLink'.
--
-- Although the distinction between /file/ symbolic links and /directory/
-- symbolic links does not exist on POSIX systems, on Windows this is an
-- intrinsic property of every symbolic link and cannot be changed without
-- recreating the link. A file symbolic link that actually points to a
-- directory will fail to dereference and vice versa. Moreover, creating
-- symbolic links on Windows may require privileges unavailable to users
-- outside the Administrators group. Portable programs that use symbolic
-- links should take both into consideration.
--
-- On Windows, the function is implemented using @CreateSymbolicLink@ with
-- @SYMBOLIC_LINK_FLAG_DIRECTORY@. Since 1.3.3.0, the
-- @SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE@ flag is also included if
-- supported by the operating system. On POSIX, this is an alias for
-- 'createFileLink' and is therefore atomic.
--
-- Windows-specific errors: This operation may fail with
-- 'System.IO.Error.permissionErrorType' if the user lacks the privileges to
-- create symbolic links. It may also fail with
-- 'System.IO.Error.illegalOperationErrorType' if the file system does not
-- support symbolic links.
--
-- @since 1.5.0
createDirLink ::
(MonadIO m) =>
-- | Path to the target directory
Path b0 Dir ->
-- | Path to the link to be created
Path b1 Dir ->
m ()
createDirLink target' dest' = do
let target = toFilePath target'
dest = toFilePath' dest'
liftIO $ D.createDirectoryLink target dest
-- | Remove an existing /directory/ symbolic link.
--
-- On Windows, this is an alias for 'removeDir'. On POSIX systems, this is
-- an alias for 'removeFile'.
--
-- See also: 'removeFile', which can remove an existing /file/ symbolic link.
--
-- @since 1.5.0
removeDirLink ::
(MonadIO m) =>
-- | Path to the link to be removed
Path b Dir ->
m ()
removeDirLink = liftD D.removeDirectoryLink
-- | Retrieve the target path of either a file or directory symbolic link.
-- The returned path may not exist, and may not even be a valid path.
--
-- On Windows systems, this calls @DeviceIoControl@ with
-- @FSCTL_GET_REPARSE_POINT@. In addition to symbolic links, the function
-- also works on junction points. On POSIX systems, this calls @readlink@.
--
-- Windows-specific errors: This operation may fail with
-- 'System.IO.Error.illegalOperationErrorType' if the file system does not
-- support symbolic links.
--
-- @since 1.5.0
getSymlinkTarget ::
(MonadIO m) =>
-- | Symlink path
Path b t ->
m FilePath
getSymlinkTarget = liftD D.getSymbolicLinkTarget
-- | Check whether the path refers to a symbolic link. An exception is thrown
-- if the path does not exist or is inaccessible.
--
-- On Windows, this checks for @FILE_ATTRIBUTE_REPARSE_POINT@. In addition to
-- symbolic links, the function also returns true on junction points. On
-- POSIX systems, this checks for @S_IFLNK@.
--
-- @since 1.5.0
-- | Check if the given path is a symbolic link.
--
-- @since 1.3.0
isSymlink :: (MonadIO m) => Path b t -> m Bool
isSymlink = liftD D.pathIsSymbolicLink
----------------------------------------------------------------------------
-- Temporary files and directories
-- | Use a temporary file that doesn't already exist.
--
-- Creates a new temporary file inside the given directory, making use of
-- the template. The temporary file is deleted after use.
--
-- @since 0.2.0
withTempFile ::
(MonadIO m, MonadMask m) =>
-- | Directory to create the file in
Path b Dir ->
-- | File name template, see 'openTempFile'
String ->
-- | Callback that can use the file
(Path Abs File -> Handle -> m a) ->
m a
withTempFile path t action = do
apath <- makeAbsolute path
T.withTempFile (toFilePath apath) t $ \file h ->
parseAbsFile file >>= flip action h
-- | Create and use a temporary directory.
--
-- Creates a new temporary directory inside the given directory, making use
-- of the template. The temporary directory is deleted after use.
--
-- @since 0.2.0
withTempDir ::
(MonadIO m, MonadMask m) =>
-- | Directory to create the file in
Path b Dir ->
-- | Directory name template, see 'openTempFile'
String ->
-- | Callback that can use the directory
(Path Abs Dir -> m a) ->
m a
withTempDir path t action = do
apath <- makeAbsolute path
T.withTempDirectory (toFilePath apath) t (parseAbsDir >=> action)
-- | Create and use a temporary file in the system standard temporary
-- directory.
--
-- Behaves exactly the same as 'withTempFile', except that the parent
-- temporary directory will be that returned by 'getTempDir'.
--
-- @since 0.2.0
withSystemTempFile ::
(MonadIO m, MonadMask m) =>
-- | File name template, see 'openTempFile'
String ->
-- | Callback that can use the file
(Path Abs File -> Handle -> m a) ->
m a
withSystemTempFile t action =
getTempDir >>= \path ->
withTempFile path t action
-- | Create and use a temporary directory in the system standard temporary
-- directory.
--
-- Behaves exactly the same as 'withTempDir', except that the parent
-- temporary directory will be that returned by 'getTempDir'.
--
-- @since 0.2.0
withSystemTempDir ::
(MonadIO m, MonadMask m) =>
-- | Directory name template, see 'openTempFile'
String ->
-- | Callback that can use the directory
(Path Abs Dir -> m a) ->
m a
withSystemTempDir t action =
getTempDir >>= \path ->
withTempDir path t action
-- | The function creates a temporary file in @rw@ mode. The created file
-- isn't deleted automatically, so you need to delete it manually.
--
-- The file is created with permissions such that only the current user can
-- read\/write it.
--
-- With some exceptions (see below), the file will be created securely in
-- the sense that an attacker should not be able to cause openTempFile to
-- overwrite another file on the filesystem using your credentials, by
-- putting symbolic links (on Unix) in the place where the temporary file is
-- to be created. On Unix the @O_CREAT@ and @O_EXCL@ flags are used to
-- prevent this attack, but note that @O_EXCL@ is sometimes not supported on
-- NFS filesystems, so if you rely on this behaviour it is best to use local
-- filesystems only.
--
-- @since 0.2.0
openTempFile ::
(MonadIO m) =>
-- | Directory to create file in
Path b Dir ->
-- | File name template; if the template is "foo.ext" then the created
-- file will be @\"fooXXX.ext\"@ where @XXX@ is some random number
String ->
-- | Name of created file and its 'Handle'
m (Path Abs File, Handle)
openTempFile path t = liftIO $ do
apath <- makeAbsolute path
(tfile, h) <- liftD2' T.openTempFile apath t
(,h) <$> parseAbsFile tfile
-- | Like 'openTempFile', but opens the file in binary mode. On Windows,
-- reading a file in text mode (which is the default) will translate @CRLF@
-- to @LF@, and writing will translate @LF@ to @CRLF@. This is usually what
-- you want with text files. With binary files this is undesirable; also, as
-- usual under Microsoft operating systems, text mode treats control-Z as
-- EOF. Binary mode turns off all special treatment of end-of-line and
-- end-of-file characters.
--
-- @since 0.2.0
openBinaryTempFile ::
(MonadIO m) =>
-- | Directory to create file in
Path b Dir ->
-- | File name template, see 'openTempFile'
String ->
-- | Name of created file and its 'Handle'
m (Path Abs File, Handle)
openBinaryTempFile path t = liftIO $ do
apath <- makeAbsolute path
(tfile, h) <- liftD2' T.openBinaryTempFile apath t
(,h) <$> parseAbsFile tfile
-- | Create a temporary directory. The created directory isn't deleted
-- automatically, so you need to delete it manually.
--
-- The directory is created with permissions such that only the current user
-- can read\/write it.
--
-- @since 0.2.0
createTempDir ::
(MonadIO m) =>
-- | Directory to create file in
Path b Dir ->
-- | Directory name template, see 'openTempFile'
String ->
-- | Name of created temporary directory
m (Path Abs Dir)
createTempDir path t =
liftIO $
makeAbsolute path >>= \apath ->
liftD2' T.createTempDirectory apath t >>= parseAbsDir
----------------------------------------------------------------------------
-- Existence tests
-- | Test whether the given path points to an existing filesystem object. If
-- the user lacks necessary permissions to search the parent directories,
-- this function may return false even if the file does actually exist.
--
-- @since 1.7.0
doesPathExist :: (MonadIO m) => Path b t -> m Bool
doesPathExist = liftD D.doesPathExist
-- | The operation 'doesFileExist' returns 'True' if the argument file
-- exists and is not a directory, and 'False' otherwise.
doesFileExist :: (MonadIO m) => Path b File -> m Bool
doesFileExist = liftD D.doesFileExist
-- | The operation 'doesDirExist' returns 'True' if the argument file exists
-- and is either a directory or a symbolic link to a directory, and 'False'
-- otherwise.
doesDirExist :: (MonadIO m) => Path b Dir -> m Bool
doesDirExist = liftD D.doesDirectoryExist
-- | Check if there is a file or directory on specified path.
isLocationOccupied :: (MonadIO m) => Path b t -> m Bool
isLocationOccupied path = do
let fp = toFilePath path
file <- liftIO (D.doesFileExist fp)
dir <- liftIO (D.doesDirectoryExist fp)
return (file || dir)
-- | If argument of the function throws a
-- 'System.IO.Error.doesNotExistErrorType', 'Nothing' is returned (other
-- exceptions propagate). Otherwise the result is returned inside a 'Just'.
--
-- @since 0.3.0
forgivingAbsence :: (MonadIO m, MonadCatch m) => m a -> m (Maybe a)
forgivingAbsence f =
catchIf
isDoesNotExistError
(Just <$> f)
(const $ return Nothing)
-- | The same as 'forgivingAbsence', but ignores result.
--
-- @since 0.3.1
ignoringAbsence :: (MonadIO m, MonadCatch m) => m a -> m ()
ignoringAbsence = void . forgivingAbsence
----------------------------------------------------------------------------
-- Permissions
-- | The 'getPermissions' operation returns the permissions for the file or
-- directory.
--
-- The operation may fail with:
--
-- * 'isPermissionError' if the user is not permitted to access
-- the permissions; or
--
-- * 'isDoesNotExistError' if the file or directory does not exist.
getPermissions :: (MonadIO m) => Path b t -> m D.Permissions
getPermissions = liftD D.getPermissions
-- | The 'setPermissions' operation sets the permissions for the file or
-- directory.
--
-- The operation may fail with:
--
-- * 'isPermissionError' if the user is not permitted to set
-- the permissions; or
--
-- * 'isDoesNotExistError' if the file or directory does not exist.
setPermissions :: (MonadIO m) => Path b t -> D.Permissions -> m ()
setPermissions = liftD2' D.setPermissions
-- | Set permissions for the object found on second given path so they match
-- permissions of the object on the first path.
copyPermissions ::
(MonadIO m) =>
-- | From where to copy
Path b0 t0 ->
-- | What to modify
Path b1 t1 ->
m ()
copyPermissions = liftD2 D.copyPermissions
----------------------------------------------------------------------------
-- Timestamps
-- | Obtain the time at which the file or directory was last accessed.
--
-- The operation may fail with:
--
-- * 'isPermissionError' if the user is not permitted to read
-- the access time; or
--
-- * 'isDoesNotExistError' if the file or directory does not exist.
--
-- Caveat for POSIX systems: This function returns a timestamp with
-- sub-second resolution only if this package is compiled against
-- @unix-2.6.0.0@ or later and the underlying filesystem supports them.
--
-- Note: this is a piece of conditional API, only available if
-- @directory-1.2.3.0@ or later is used.
getAccessTime :: (MonadIO m) => Path b t -> m UTCTime
getAccessTime = liftD D.getAccessTime
-- | Change the time at which the file or directory was last accessed.
--
-- The operation may fail with:
--
-- * 'isPermissionError' if the user is not permitted to alter the
-- access time; or
--
-- * 'isDoesNotExistError' if the file or directory does not exist.
--
-- Some caveats for POSIX systems:
--
-- * Not all systems support @utimensat@, in which case the function can
-- only emulate the behavior by reading the modification time and then
-- setting both the access and modification times together. On systems
-- where @utimensat@ is supported, the access time is set atomically with
-- nanosecond precision.
--
-- * If compiled against a version of @unix@ prior to @2.7.0.0@, the
-- function would not be able to set timestamps with sub-second
-- resolution. In this case, there would also be loss of precision in the
-- modification time.
--
-- Note: this is a piece of conditional API, only available if
-- @directory-1.2.3.0@ or later is used.
setAccessTime :: (MonadIO m) => Path b t -> UTCTime -> m ()
setAccessTime = liftD2' D.setAccessTime
-- | Change the time at which the file or directory was last modified.
--
-- The operation may fail with:
--
-- * 'isPermissionError' if the user is not permitted to alter the
-- modification time; or
--
-- * 'isDoesNotExistError' if the file or directory does not exist.
--
-- Some caveats for POSIX systems:
--
-- * Not all systems support @utimensat@, in which case the function can
-- only emulate the behavior by reading the access time and then setting
-- both the access and modification times together. On systems where
-- @utimensat@ is supported, the modification time is set atomically with
-- nanosecond precision.
--
-- * If compiled against a version of @unix@ prior to @2.7.0.0@, the
-- function would not be able to set timestamps with sub-second
-- resolution. In this case, there would also be loss of precision in the
-- access time.
--
-- Note: this is a piece of conditional API, only available if
-- @directory-1.2.3.0@ or later is used.
setModificationTime :: (MonadIO m) => Path b t -> UTCTime -> m ()
setModificationTime = liftD2' D.setModificationTime
-- | Obtain the time at which the file or directory was last modified.
--
-- The operation may fail with:
--
-- * 'isPermissionError' if the user is not permitted to read
-- the modification time; or
--
-- * 'isDoesNotExistError' if the file or directory does not exist.
--
-- Caveat for POSIX systems: This function returns a timestamp with
-- sub-second resolution only if this package is compiled against
-- @unix-2.6.0.0@ or later and the underlying filesystem supports them.
getModificationTime :: (MonadIO m) => Path b t -> m UTCTime
getModificationTime = liftD D.getModificationTime
----------------------------------------------------------------------------
-- Helpers
-- | Lift an action in 'IO' that takes 'FilePath' into an action in slightly
-- more abstract monad that takes 'Path'.
liftD ::
(MonadIO m) =>
-- | Original action
(FilePath -> IO a) ->
-- | 'Path' argument
Path b t ->
-- | Lifted action
m a
liftD m = liftIO . m . toFilePath'
{-# INLINE liftD #-}
-- | Similar to 'liftD' but for functions with arity 2.
liftD2 ::
(MonadIO m) =>
-- | Original action
(FilePath -> FilePath -> IO a) ->
-- | First 'Path' argument
Path b0 t0 ->
-- | Second 'Path' argument
Path b1 t1 ->
m a
liftD2 m a b = liftIO $ m (toFilePath' a) (toFilePath' b)
{-# INLINE liftD2 #-}
-- | Similar to 'liftD2', but allows us to pass second argument of arbitrary
-- type.
liftD2' ::
(MonadIO m) =>
-- | Original action
(FilePath -> v -> IO a) ->
-- | First 'Path' argument
Path b t ->
-- | Second argument
v ->
m a
liftD2' m a v = liftIO $ m (toFilePath' a) v
{-# INLINE liftD2' #-}
-- | Like 'toFilePath', but also drops the trailing path separator.
toFilePath' :: Path b t -> FilePath
toFilePath' = F.dropTrailingPathSeparator . toFilePath
-- | Perform an action ignoring IO exceptions it may throw.
ignoringIOErrors :: IO () -> IO ()
ignoringIOErrors ioe = ioe `catch` handler
where
handler :: (Monad m) => IOError -> m ()
handler = const (return ())
|