nmis-parser: NMIS file parser

[ bsd3, library, parsers, text ] [ Propose Tags ]

Parser for NMIS (Network Management Information System) files to record type. Main module to use is Text.Nmis and parseNmis function


[Skip to Readme]

Modules

[Last Documentation]

  • Text
    • Internal
      • Text.Internal.Helper
      • Text.Internal.NmisTypes
    • Text.Nmis

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2
Dependencies base (>=4.7 && <5), containers, megaparsec [details]
License BSD-3-Clause
Copyright 2017 Sasa Bogicevic
Author Sasa Bogicevic
Maintainer brutallesale@gmail.com
Category Text, Parsers
Home page https://github.com/v0d1ch/nmis-parser#readme
Source repo head: git clone https://github.com/v0d1ch/nmis-parser
Uploaded by v0d1ch at 2017-08-12T15:43:06Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1852 total (11 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2017-08-12 [all 2 reports]

Readme for nmis-parser-0.1.0.0

[back to package description]

NMIS file parser

  • NMIS stands for Network Management Information System

This parser parses the NMIS format files to Nmis record type

Example usage :

  module Main where
  import System.Environment (getArgs)
  import System.IO
  import Text.Megaparsec
  import Text.Nmis

  main :: IO ()
  main = do
    args <- getArgs
    case args of
      [] -> putStrLn "error: you need to pass in file path"
      [path] -> do
              contents <- readFile path
              let result = parse parseNmis "" contents
              case result of
                  Left nodes -> print $ parseErrorPretty nodes
                  Right nodes -> do
                      print nodes
      _ -> putStrLn "error: you need to pass in only one file path"