-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1473 from GaloisInc/file-deps
File deps
- Loading branch information
Showing
32 changed files
with
561 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
1. Run the Cryptol remote API server: | ||
|
||
> cryptol-remote-api http /cryptol | ||
|
||
This starts an HTTP server with the default settings, which means that | ||
the server can be accessed at `http://localhost:8080/cryptol` | ||
|
||
|
||
2. Start a Python shell: | ||
|
||
> poetry run python | ||
|
||
This runs a Python shell within an environment set up by | ||
[poetry](https://python-poetry.org/) | ||
|
||
|
||
3. Load the `cryptol` library: | ||
|
||
>>> import cryptol | ||
|
||
4. Connect to the remote server: | ||
|
||
>>> cry = cryptol.connect(url="http://localhost:8080/cryptol", reset_server=True) | ||
|
||
The URL is the one where we started the server in step 1. | ||
The second parameter resets the state of the server. | ||
See `help("cryptol.connect")` for other options. | ||
At this point, `cry` is an object that we can use to interact with Cryptol. | ||
|
||
5. Load the standard library: | ||
|
||
>>> cry.load_module("Cryptol") | ||
|
||
The `load_module` method is similar to the `:module` command of the | ||
Cryptol REPL---it loads a module to the server's state. | ||
The module `Cryptol` is the standard library for Cryptol. | ||
|
||
6. Evaluate an expression: | ||
|
||
>>> it = cry.evaluate_expression("1+1") | ||
|
||
This command sends the expression `1 + 1` to the server, | ||
and the value `it` contains the response. Use the `result` method | ||
to get the result, if the expression was evaluated successfully: | ||
|
||
>>> it.result() | ||
2 | ||
|
||
7. Get information about the functions and values loaded in the serer: | ||
|
||
>>> names = cry.names().result() | ||
|
||
The result is a list of all loaded names. Here is an example of getting | ||
information about the first name that was returned: | ||
|
||
>>> first = names[0] | ||
>>> first["name"] | ||
'(!)' | ||
>>> first["type string"] | ||
'{n, a, ix} (fin n, Integral ix) => [n]a -> ix -> a' | ||
>>> print(first["documentation"]) | ||
Reverse index operator. The first argument is a finite sequence. The second | ||
argument is the zero-based index of the element to select, starting from the | ||
end of the sequence. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import unittest | ||
from pathlib import Path | ||
import unittest | ||
import cryptol | ||
from cryptol.single_connection import * | ||
|
||
class TestFileDeps(unittest.TestCase): | ||
def test_FileDeps(self): | ||
connect(verify=False) | ||
load_file(str(Path('tests','cryptol','test-files','Id.cry'))) | ||
result = file_deps('Id') | ||
self.assertEqual(result['fingerprint'],"8A49C6A461AF276DF56C4FE4279BCFC51D891214") | ||
self.assertEqual(result['foreign'],[]) | ||
self.assertEqual(result['imports'],['Cryptol']) | ||
self.assertEqual(result['includes'],[]) | ||
# we don't check source because it is system dependent | ||
|
||
if __name__ == "__main__": | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
{-# Language BlockArguments #-} | ||
{-# Language OverloadedStrings #-} | ||
{-# Language MultiParamTypeClasses #-} | ||
module CryptolServer.FileDeps | ||
( fileDeps | ||
, fileDepsDescr | ||
) where | ||
|
||
import Data.Text (Text) | ||
import qualified Data.Text as Text | ||
import qualified Data.Set as Set | ||
import Control.Monad.IO.Class(liftIO) | ||
import System.Directory(canonicalizePath) | ||
|
||
import qualified Data.Aeson as JSON | ||
import Data.Aeson (FromJSON(..),ToJSON(..),(.=),(.:)) | ||
import qualified Argo.Doc as Doc | ||
|
||
import Cryptol.Parser.AST (ModName) | ||
import Cryptol.Parser (parseModName) | ||
import Cryptol.ModuleSystem.Env | ||
(LoadedModuleG(..), FileInfo(..), lookupTCEntity, ModulePath(..)) | ||
import Cryptol.ModuleSystem.Fingerprint(fingerprintHexString) | ||
import Cryptol.Utils.PP(pp) | ||
|
||
import CryptolServer | ||
import CryptolServer.Exceptions(moduleNotLoaded) | ||
|
||
data FileDepsParams = FileDepsOfModule ModName | ||
|
||
data FileDeps = FileDeps | ||
{ fdSource :: ModulePath | ||
, fdInfo :: FileInfo | ||
} | ||
|
||
fileDeps :: FileDepsParams -> CryptolCommand FileDeps | ||
fileDeps (FileDepsOfModule m) = | ||
do env <- getModuleEnv | ||
case lookupTCEntity m env of | ||
Nothing -> raise (moduleNotLoaded m) | ||
Just lm -> | ||
do src <- case lmFilePath lm of | ||
InFile f' -> InFile <$> liftIO (canonicalizePath f') | ||
InMem l x -> pure (InMem l x) | ||
pure FileDeps { fdSource = src, fdInfo = lmFileInfo lm } | ||
|
||
|
||
fileDepsDescr :: Doc.Block | ||
fileDepsDescr = | ||
txt [ "Get information about the dependencies of a loaded top-level module." | ||
, " The dependencies include the dependencies of modules nested in this one." | ||
] | ||
|
||
txt :: [Text] -> Doc.Block | ||
txt xs = Doc.Paragraph (map Doc.Text xs) | ||
|
||
instance FromJSON FileDepsParams where | ||
parseJSON = | ||
JSON.withObject "params for \"file deps\"" $ | ||
\o -> do val <- o .: "module name" | ||
JSON.withText | ||
"module name" | ||
(\str -> | ||
case parseModName (Text.unpack str) of | ||
Nothing -> mempty | ||
Just n -> return (FileDepsOfModule n)) | ||
val | ||
|
||
instance ToJSON FileDeps where | ||
toJSON fd = | ||
JSON.object | ||
[ "source" .= case fdSource fd of | ||
InFile f -> toJSON f | ||
InMem l _ -> JSON.object [ "internal" .= l ] | ||
, "fingerprint" .= fingerprintHexString (fiFingerprint fi) | ||
, "includes" .= Set.toList (fiForeignDeps fi) | ||
, "imports" .= map (show . pp) (Set.toList (fiImportDeps fi)) | ||
, "foreign" .= Set.toList (fiForeignDeps fi) | ||
] | ||
where | ||
fi = fdInfo fd | ||
|
||
|
||
instance Doc.DescribedMethod FileDepsParams FileDeps where | ||
parameterFieldDescription = | ||
[ ("module name", txt ["Get information about this loaded module."]) | ||
] | ||
|
||
resultFieldDescription = | ||
[ ("source", txt [ "File containing the module." | ||
, " For internal modules this is an object { internal: \"LABEL\" }." | ||
]) | ||
, ("fingerprint", txt ["A hash of the module content."]) | ||
, ("includes", txt ["Files included in this module."]) | ||
, ("imports", txt ["Modules imported by this module."]) | ||
, ("foreign", txt ["Foreign libraries loaded by this module."]) | ||
] | ||
|
||
|
Oops, something went wrong.