casr-logbook-reports-html (empty) → 0.0.1
raw patch · 6 files changed
+530/−0 lines, 6 filesdep +QuickCheckdep +basedep +casr-logbookbuild-type:Customsetup-changed
Dependencies added: QuickCheck, base, casr-logbook, casr-logbook-html, casr-logbook-reports, containers, directory, doctest, filepath, lens, lucid, template-haskell, text, time
Files
- LICENSE +27/−0
- Setup.lhs +44/−0
- casr-logbook-reports-html.cabal +81/−0
- changelog +4/−0
- src/Data/Aviation/Casr/Logbook/Reports/Html.hs +342/−0
- test/doctests.hs +32/−0
+ LICENSE view
@@ -0,0 +1,27 @@+Copyright 2016 Tony Morris+All rights reserved.++Redistribution and use in source and binary forms, with or without modification,+are permitted provided that the following conditions are met:++1. Redistributions of source code must retain the above copyright notice, this+list of conditions, the following disclaimer and the following SHA-512 checksum.++2. Redistributions in binary form must reproduce the above copyright notice,+this list of conditions, the following disclaimer and the following SHA-512+checksum in the documentation and/or other materials provided with the+distribution.++THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.++THIS SOFTWARE IS PROVIDED WITH A SHA-512 CHECKSUM.+ecdfdf543fd166b13b76b11e0b010e00d693028771880ffd8f9252ae0b8ac42bddf8eb7a23c21c86a3b50039d642ad9eeb7e8a0e82f6a345f60feb4a54808362
+ Setup.lhs view
@@ -0,0 +1,44 @@+#!/usr/bin/env runhaskell+\begin{code}+{-# OPTIONS_GHC -Wall #-}+module Main (main) where++import Data.List ( nub )+import Data.Version ( showVersion )+import Distribution.Package ( PackageName(PackageName), PackageId, InstalledPackageId, packageVersion, packageName )+import Distribution.PackageDescription ( PackageDescription(), TestSuite(..) )+import Distribution.Simple ( defaultMainWithHooks, UserHooks(..), simpleUserHooks )+import Distribution.Simple.Utils ( rewriteFile, createDirectoryIfMissingVerbose )+import Distribution.Simple.BuildPaths ( autogenModulesDir )+import Distribution.Simple.Setup ( BuildFlags(buildVerbosity), fromFlag )+import Distribution.Simple.LocalBuildInfo ( withLibLBI, withTestLBI, LocalBuildInfo(), ComponentLocalBuildInfo(componentPackageDeps) )+import Distribution.Verbosity ( Verbosity )+import System.FilePath ( (</>) )++main :: IO ()+main = defaultMainWithHooks simpleUserHooks+ { buildHook = \pkg lbi hooks flags -> do+ generateBuildModule (fromFlag (buildVerbosity flags)) pkg lbi+ buildHook simpleUserHooks pkg lbi hooks flags+ }++generateBuildModule :: Verbosity -> PackageDescription -> LocalBuildInfo -> IO ()+generateBuildModule verbosity pkg lbi = do+ let dir = autogenModulesDir lbi+ createDirectoryIfMissingVerbose verbosity True dir+ withLibLBI pkg lbi $ \_ libcfg -> do+ withTestLBI pkg lbi $ \suite suitecfg -> do+ rewriteFile (dir </> "Build_" ++ testName suite ++ ".hs") $ unlines+ [ "module Build_" ++ testName suite ++ " where"+ , "deps :: [String]"+ , "deps = " ++ (show $ formatdeps (testDeps libcfg suitecfg))+ ]+ where+ formatdeps = map (formatone . snd)+ formatone p = case packageName p of+ PackageName n -> n ++ "-" ++ showVersion (packageVersion p)++testDeps :: ComponentLocalBuildInfo -> ComponentLocalBuildInfo -> [(InstalledPackageId, PackageId)]+testDeps xs ys = nub $ componentPackageDeps xs ++ componentPackageDeps ys++\end{code}
+ casr-logbook-reports-html.cabal view
@@ -0,0 +1,81 @@+name: casr-logbook-reports-html+version: 0.0.1+license: OtherLicense+license-file: LICENSE+author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>+maintainer: Tony Morris+copyright: Copyright (C) 2016 Tony Morris+synopsis: CASR 61.345 logbook (casr-logbook) reports HTML output+category: Aviation+description: + <<https://i.imgur.com/p6LT40r.png>>+ .+ CASR 61.345 Pilot Personal Logbook reports HTML output+ .+ <<https://i.imgur.com/Lfhcmtg.png>>++homepage: https://github.com/tonymorris/casr-logbook-reports-html+bug-reports: https://github.com/tonymorris/casr-logbook-reports-html/issues+cabal-version: >= 1.10+build-type: Custom+extra-source-files: changelog++source-repository head+ type: git+ location: git@github.com:tonymorris/casr-logbook-reports-html.git++flag small_base+ description: Choose the new, split-up base package.++library+ default-language:+ Haskell2010++ build-depends:+ base < 5 && >= 4.8+ , casr-logbook >= 0.1.3 && < 0.2+ , casr-logbook-html >= 0.0.1 && < 0.1+ , casr-logbook-reports >= 0.0.1 && < 0.1+ , containers < 0.6 && >= 0.4+ , lucid >= 2.9 && < 3+ , lens >= 4.1 && < 5+ , text >= 1.2 && < 1.3+ , time < 2 && >= 1.5+++ ghc-options:+ -Wall++ default-extensions:+ NoImplicitPrelude++ hs-source-dirs:+ src++ exposed-modules:+ Data.Aviation.Casr.Logbook.Reports.Html++test-suite doctests+ type:+ exitcode-stdio-1.0++ main-is:+ doctests.hs++ default-language:+ Haskell2010++ build-depends:+ base < 5 && >= 3+ , doctest >= 0.9.7+ , filepath >= 1.3+ , directory >= 1.1+ , QuickCheck >= 2.0+ , template-haskell >= 2.8++ ghc-options:+ -Wall+ -threaded++ hs-source-dirs:+ test
+ changelog view
@@ -0,0 +1,4 @@+0.0.1++* Initial release+
+ src/Data/Aviation/Casr/Logbook/Reports/Html.hs view
@@ -0,0 +1,342 @@+{-# LANGUAGE OverloadedStrings #-}++module Data.Aviation.Casr.Logbook.Reports.Html(+ htmlFlightPointDay+ , htmlTakeOffLanding90+ , takeofflanding+ , takeoffslandings90+ , htmlSimulatorTimeReport+ , htmlFlightTimeReport+) where++import Control.Category((.))+import Control.Lens((^.), _Wrapped)+import Data.Aviation.Casr.Logbook(+ landingTime+ , daytime+ , point+ , logbookentries+ , flightStart+ , flightIntermediate+ , flightEnd+ , flightpath+ , FlightPoint+ , Logbook+ , Entry(AircraftFlightEntry)+ )+import Data.Aviation.Casr.Logbook.Html.Html(+ htmlTimeAmount+ , htmlAviatorShort+ )+import Data.Aviation.Casr.Logbook.Reports(+ hoursMultiEngineDual+ , hoursMultiEngineInCommand+ , hoursDay+ , hoursDayICUS+ , hoursDayDual+ , hoursDayInCommand+ , hoursNight+ , hoursNightICUS+ , hoursNightDual+ , hoursNightInCommand+ , hoursWithPiC+ , hoursInstrument+ , hoursTotalDual+ , hoursTotalInCommand+ , hoursInAircraftType+ , hoursInAircraftRegistration+ , hoursSingleEngine+ , hoursSingleEngineICUS+ , hoursSingleEngineDual+ , hoursMultiEngineInCommand+ , hoursMultiEngineDual+ , hoursTotalICUS+ , hoursSingleEngineInCommand+ , hoursMultiEngine+ , hoursMultiEngineICUS+ , hoursTotal+ , flightsTotal+ , hoursTotalSimulator+ , hoursInstrumentSimulator+ , currency90+ , landing1+ , landing2+ , landing3+ , takeoff1+ , takeoff2+ , takeoff3+ , TakeOffLanding90(TakeOffLanding90)+ , SimulatorTimeReport+ , FlightTimeReport+ )+import Data.Foldable(foldr)+import Data.Function(flip, ($))+import qualified Data.Map as Map(foldrWithKey)+import Data.List(sortBy, (++))+import Data.Maybe(Maybe(Nothing, Just))+import Data.Monoid(mempty)+import Data.Ord(comparing, min)+import Data.String(fromString)+import qualified Data.Text as Text(pack)+import Data.Time(addDays)+import Lucid(+ class_+ , span_+ , ul_+ , li_+ , div_+ , h3_+ , href_+ , id_+ , a_+ , ol_+ , Html+ )+import Prelude(show)++htmlFlightPointDay ::+ FlightPoint+ -> Html ()+htmlFlightPointDay p =+ let j = p ^. landingTime . daytime+ in do span_ [class_ "currencyflightpointday"] . fromString . show $ j+ " "+ span_ [class_ "currencyflightpointpoint"] . fromString $ p ^. point++htmlTakeOffLanding90 ::+ Logbook a b c d+ -> Maybe TakeOffLanding90+ -> Html ()+htmlTakeOffLanding90 _ r =+ div_ [class_ "flighttimecurrencyreport"] $+ do a_ [id_ "RPT_FlightTimeCurrency"] ""+ a_ [href_ (Text.pack ("#RPT_FlightTimeCurrency"))] . span_ [class_ "entrytag"] $ "RPT"+ h3_ [class_ "flighttimecurrencyreportname"] "Flight Time Currency Report" + case r of+ Nothing ->+ span_ [class_ "flighttimenocurrency"] "NIL three take-offs and landings"+ Just x ->+ do ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "Three most recent take-offs"+ ol_ [] $+ do li_ [] $+ span_ [class_ "value"] (htmlFlightPointDay (x ^. takeoff1))+ li_ [] $+ span_ [class_ "value"] (htmlFlightPointDay (x ^. takeoff2))+ li_ [] $+ span_ [class_ "value"] (htmlFlightPointDay (x ^. takeoff3))+ li_ [] $+ do span_ [class_ "key"] "Three most recent landings"+ ol_ [] $+ do li_ [] $+ span_ [class_ "value"] (htmlFlightPointDay (x ^. landing1))+ li_ [] $+ span_ [class_ "value"] (htmlFlightPointDay (x ^. landing2))+ li_ [] $+ span_ [class_ "value"] (htmlFlightPointDay (x ^. landing3))+ li_ [] $+ do span_ [class_ "key"] "90-day currency: "+ span_ [class_ "value"] . fromString . show $ x ^. currency90++takeofflanding ::+ Entry a b c d+ -> ([FlightPoint], [FlightPoint])+takeofflanding (AircraftFlightEntry fl _) =+ let p = fl ^. flightpath+ i = p ^. flightIntermediate+ in (p ^. flightStart : i, i ++ [p ^. flightEnd])+takeofflanding _ =+ ([], [])++takeoffslandings90 ::+ Logbook a b c d+ -> Maybe TakeOffLanding90+takeoffslandings90 b =+ let (t, l) = foldr+ (\a (t', l') -> let (u', m') = takeofflanding a+ in (t' ++ u', m' ++ l'))+ ([], []) (b ^. logbookentries . _Wrapped)+ revsort = sortBy (flip (comparing (^. landingTime)))+ (u, m) = (revsort t, revsort l)+ in case u of+ t1:t2:t3:_ ->+ case m of+ l1:l2:l3:_ ->+ let tt = t3 ^. landingTime . daytime+ lt = l3 ^. landingTime . daytime+ in Just (TakeOffLanding90 t1 t2 t3 l1 l2 l3 (addDays 90 (tt `min` lt)))+ _ ->+ Nothing+ _ ->+ Nothing++htmlSimulatorTimeReport ::+ Logbook a b c d+ -> SimulatorTimeReport+ -> Html ()+htmlSimulatorTimeReport _ r =+ div_ [class_ "simulatortimereport"] $+ do a_ [id_ "RPT_SimulatorTimeSummary"] ""+ a_ [href_ (Text.pack ("#RPT_SimulatorTimeSummary"))] . span_ [class_ "entrytag"] $ "RPT"+ h3_ [class_ "simulatortimereportname"] "Simulator Time Summary Report" + ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "Total Simulator Hours: "+ span_ [class_ "value"] . htmlTimeAmount $ r ^. hoursInstrumentSimulator+ li_ [] $+ do span_ [class_ "key"] "Instrument Simulator Hours: "+ span_ [class_ "value"] . htmlTimeAmount $ r ^. hoursTotalSimulator+ +htmlFlightTimeReport ::+ Logbook a b c d+ -> FlightTimeReport+ -> Html ()+htmlFlightTimeReport _ r =+ div_ [class_ "flighttimereport"] $+ do a_ [id_ "RPT_FlightTimeSummary"] ""+ a_ [href_ (Text.pack "#RPT_FlightTimeSummary")] . span_ [class_ "entrytag"] $ "RPT"+ h3_ [class_ "flighttimereportname"] "Flight Time Summary Report" + ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "Total Flights: "+ span_ [class_ "value"] . fromString . show $ (r ^. flightsTotal)+ li_ [] $+ do span_ [class_ "key"] "Total Flight Hours: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursTotal+ ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "in-command under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursTotalICUS+ li_ [] $+ do span_ [class_ "key"] "dual under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursTotalDual+ li_ [] $+ do span_ [class_ "key"] "in-command: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursTotalInCommand+ li_ [] $+ do span_ [class_ "key"] "Hours in type: "+ div_ [class_ "value"] .+ ul_ [] . Map.foldrWithKey (\y (tl, iu, dl, ic) x ->+ do li_ [] $+ do span_ [class_ "aircrafttype"] $ fromString y+ ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "total: "+ span_ [class_ "value"] . htmlTimeAmount $ tl+ li_ [] $+ do span_ [class_ "key"] "in-command under-instruction: "+ span_ [class_ "value"] . htmlTimeAmount $ iu+ li_ [] $+ do span_ [class_ "key"] "dual under-instruction: "+ span_ [class_ "value"] . htmlTimeAmount $ dl+ li_ [] $+ do span_ [class_ "key"] "in-command: "+ span_ [class_ "value"] . htmlTimeAmount $ ic+ x) mempty $ r ^. hoursInAircraftType+ li_ [] $+ do span_ [class_ "key"] "Hours in registration: "+ div_ [class_ "value"] .+ ul_ [] . Map.foldrWithKey (\y (tl, iu, dl, ic) x ->+ do li_ [] $+ do span_ [class_ "aircraftregistration"] $ fromString y+ ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "total: "+ span_ [class_ "value"] . htmlTimeAmount $ tl+ li_ [] $+ do span_ [class_ "key"] "in-command under-instruction: "+ span_ [class_ "value"] . htmlTimeAmount $ iu+ li_ [] $+ do span_ [class_ "key"] "dual under-instruction: "+ span_ [class_ "value"] . htmlTimeAmount $ dl+ li_ [] $+ do span_ [class_ "key"] "in-command: "+ span_ [class_ "value"] . htmlTimeAmount $ ic+ x) mempty $ r ^. hoursInAircraftRegistration+ li_ [] $+ do span_ [class_ "key"] "Hours in Single-Engine: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursSingleEngine+ ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "in-command under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursSingleEngineICUS+ li_ [] $+ do span_ [class_ "key"] "dual under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursSingleEngineDual+ li_ [] $+ do span_ [class_ "key"] "in-command: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursSingleEngineInCommand+ li_ [] $+ do span_ [class_ "key"] "Hours in Multi-Engine: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursMultiEngine+ ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "in-command under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursMultiEngineICUS+ li_ [] $+ do span_ [class_ "key"] "dual under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursMultiEngineDual+ li_ [] $+ do span_ [class_ "key"] "in-command: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursMultiEngineInCommand+ li_ [] $+ do span_ [class_ "key"] "Hours in Day: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursDay+ ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "in-command under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursDayICUS+ li_ [] $+ do span_ [class_ "key"] "dual under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursDayDual+ li_ [] $+ do span_ [class_ "key"] "in-command: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursDayInCommand+ li_ [] $+ do span_ [class_ "key"] "Hours in Night: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursNight+ ul_ [] $+ do li_ [] $+ do span_ [class_ "key"] "in-command under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursNightICUS+ li_ [] $+ do span_ [class_ "key"] "dual under-instruction: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursNightDual+ li_ [] $+ do span_ [class_ "key"] "in-command: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursNightInCommand+ li_ [] $+ do span_ [class_ "key"] "Hours with PiC: "+ div_ [class_ "value"] .+ ul_ [] . Map.foldrWithKey (\a t x ->+ do li_ [] $+ do span_ [class_ "key"] $ + do htmlAviatorShort a+ ": "+ span_ [class_ "value"] . htmlTimeAmount $ t + x) mempty $ r ^. hoursWithPiC+ li_ [] $+ do span_ [class_ "key"] "Hours instrument in-flight: "+ span_ [class_ "value"] .+ htmlTimeAmount $ r ^. hoursInstrument
+ test/doctests.hs view
@@ -0,0 +1,32 @@+module Main where++import Build_doctests (deps)+import Control.Applicative+import Control.Monad+import Data.List+import System.Directory+import System.FilePath+import Test.DocTest++main ::+ IO ()+main =+ getSources >>= \sources -> doctest $+ "-isrc"+ : "-idist/build/autogen"+ : "-optP-include"+ : "-optPdist/build/autogen/cabal_macros.h"+ : "-hide-all-packages"+ : map ("-package="++) deps ++ sources++getSources :: IO [FilePath]+getSources = filter (isSuffixOf ".hs") <$> go "src"+ where+ go dir = do+ (dirs, files) <- getFilesAndDirectories dir+ (files ++) . concat <$> mapM go dirs++getFilesAndDirectories :: FilePath -> IO ([FilePath], [FilePath])+getFilesAndDirectories dir = do+ c <- map (dir </>) . filter (`notElem` ["..", "."]) <$> getDirectoryContents dir+ (,) <$> filterM doesDirectoryExist c <*> filterM doesFileExist c