From 01b580768bf2d81fb48551b6f58e26310768e392 Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Sat, 27 Jan 2018 17:45:58 -0500 Subject: [PATCH] Out With the Old --- .github/wiki-resources/xml-attribute.png | Bin 643 -> 0 bytes .github/wiki-resources/xml-tag.png | Bin 456 -> 0 bytes .github/wiki-resources/xml-text.png | Bin 143 -> 0 bytes .gitignore | 3 - .travis.yml | 10 - .vscode/launch.json | 15 - .vscode/settings.json | 11 - .vscode/tasks.json | 21 - .vscodeignore | 8 - CHANGELOG.md | 1 - CONTRIBUTING.md | 54 - LICENSE | 21 - README.md | 22 - gulpfile.js | 9 - languages/xquery/xquery.json | 11 - languages/xquery/xquery.tmLanguage | 1066 ----------- package.json | 148 -- resources/icons/attribute.dark.svg | 35 - resources/icons/attribute.light.svg | 56 - resources/icons/element.dark.svg | 42 - resources/icons/element.light.svg | 54 - resources/xml.png | Bin 3277 -> 0 bytes src/Commands.ts | 69 - src/Extension.ts | 76 - src/providers/Completion.ts | 44 - src/providers/Execution.ts | 127 -- src/providers/Formatting.ts | 33 - src/providers/Linting.ts | 32 - src/providers/XPath.ts | 120 -- src/providers/XmlTreeView.ts | 128 -- src/services/ChildProcess.ts | 30 - src/services/XPathEvaluator.ts | 63 - src/services/XQueryCompleter.ts | 41 - src/services/XQueryLinter.ts | 39 - src/services/XmlFormatter.ts | 192 -- src/utils/RangeUtil.ts | 11 - tsconfig.json | 13 - typings/node/node.d.ts | 2088 ---------------------- typings/thenable/thenable.d.ts | 3 - typings/xmldom/xmldom.d.ts | 4 - typings/xpath/xpath.d.ts | 197 -- 41 files changed, 4897 deletions(-) delete mode 100644 .github/wiki-resources/xml-attribute.png delete mode 100644 .github/wiki-resources/xml-tag.png delete mode 100644 .github/wiki-resources/xml-text.png delete mode 100644 .gitignore delete mode 100644 .travis.yml delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json delete mode 100644 .vscode/tasks.json delete mode 100644 .vscodeignore delete mode 100644 CHANGELOG.md delete mode 100644 CONTRIBUTING.md delete mode 100644 LICENSE delete mode 100644 README.md delete mode 100644 gulpfile.js delete mode 100644 languages/xquery/xquery.json delete mode 100644 languages/xquery/xquery.tmLanguage delete mode 100644 package.json delete mode 100644 resources/icons/attribute.dark.svg delete mode 100644 resources/icons/attribute.light.svg delete mode 100644 resources/icons/element.dark.svg delete mode 100644 resources/icons/element.light.svg delete mode 100644 resources/xml.png delete mode 100644 src/Commands.ts delete mode 100644 src/Extension.ts delete mode 100644 src/providers/Completion.ts delete mode 100644 src/providers/Execution.ts delete mode 100644 src/providers/Formatting.ts delete mode 100644 src/providers/Linting.ts delete mode 100644 src/providers/XPath.ts delete mode 100644 src/providers/XmlTreeView.ts delete mode 100644 src/services/ChildProcess.ts delete mode 100644 src/services/XPathEvaluator.ts delete mode 100644 src/services/XQueryCompleter.ts delete mode 100644 src/services/XQueryLinter.ts delete mode 100644 src/services/XmlFormatter.ts delete mode 100644 src/utils/RangeUtil.ts delete mode 100644 tsconfig.json delete mode 100644 typings/node/node.d.ts delete mode 100644 typings/thenable/thenable.d.ts delete mode 100644 typings/xmldom/xmldom.d.ts delete mode 100644 typings/xpath/xpath.d.ts diff --git a/.github/wiki-resources/xml-attribute.png b/.github/wiki-resources/xml-attribute.png deleted file mode 100644 index ed9c64760277eda41358492b607efdab11245df7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 643 zcmV-}0(||6P)Px%JxN4CR5%f>Q%z_SK@@&(c2}D;E77)6#nvQ^L6oW&Pl9++5HBLqgJ2Iz(WDfl z=uK~W5&xhjOS}jkJ$X^^Al8F7gO}#eLz`9~)08HedA`}Y+s5EYAI#48e!g#J z-pm60qv7B9`yNrq2-Oc72zwOD`5v(63fHjtXMKmj-aLi3%i4V|90P(fAbe*$z{BEk zyOgn~cn+*h;Ba;+vWlU%91NonWAoR$Klzo3tb2hFp0ViT(zt!kkGBaVa;~EQPAibd zzht82q3lXhqH)4ND$J$rnV93ALV|Zn%H-liw4_CZuawGHdkNqQA>GpCc+Q%`M)iVL3bmNR_jql|wNQNtqUW;Uy3%Jom?*Q&&UcMI9qat-)MnCqr&BywWjk z!7aqIwNXIIqtWbF(mKY8_na>?)g{0h`!@R)A84AJc}bJC1v{`z^@e>^%DSPx$f=NU{R5%f1U>Nd%k&q8mrhL}^!^E)i4EH$|8&XWnzc` z+9LSmCFgS+?=6B3q5FA|i7y}&w zwswQW;4T1h(82%z3}K9nK@|NsB7sPEJEc@C5f0}6oy4d?g*m_;cZjq!~HKHcXlQZ*}4$9|N|XCSBYUcxNu&C-`F0e+6;FC3koZ qtn5n??~yuiz(9)aglGPO8w}6pbBW*W(OUpCl)=;0&t;ucLK6V{pfRlg diff --git a/.gitignore b/.gitignore deleted file mode 100644 index b1265b9..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules -src/**/*.js -**/*.vsix \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index f7e72ac..0000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -notifications: - email: false - -sudo: false - -install: - - npm install - -script: - - gulp build \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 5cd30fc..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Launch Extension", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceRoot}" - ], - "preLaunchTask": "build" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 5a3250e..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,11 +0,0 @@ -// Place your settings in this file to overwrite default and user settings. -{ - "files.exclude": { - "**/.git": true, - "**/.DS_Store": true, - "**/*.vsix": true, - "**/*.js": {"when": "$(basename).ts"} - } -, -"typescript.tsdk": "./node_modules/typescript/lib" -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index b342ebd..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "version": "0.1.0", - "command": "gulp", - "isShellCommand": true, - "args": [ - "--no-color" - ], - "tasks": [ - { - "taskName": "build", - "args": [], - "isBuildCommand": true, - "isWatching": false, - "problemMatcher": [ - "$lessCompile", - "$tsc", - "$jshint" - ] - } - ] -} \ No newline at end of file diff --git a/.vscodeignore b/.vscodeignore deleted file mode 100644 index 425d15c..0000000 --- a/.vscodeignore +++ /dev/null @@ -1,8 +0,0 @@ -tsconfig.json -CONTRIBUTING.md -.gitignore -.vscode -resources/wiki-images -typings -**/*.ts -**/*.vsix \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 6e0befc..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1 +0,0 @@ -Detailed release notes are available [here](https://github.com/DotJoshJohnson/vscode-xml/releases). \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index daa4f56..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,54 +0,0 @@ -# Contribution Guide -Thanks for helping out! This guide provides some guidelines on coding styles and architecture for this extension. -Keep in mind that these are guidelines, not rules. Use your best judgement and feel free to make suggestions! - -## Workflow -Please use the follow general workflow when making contributions to the code: - -1. Fork the repository. -2. Create a feature branch and make your changes. -3. Create a pull request to request that your commits be merged to `master`. - - -## Building the Extension -1. Clone the repository locally and run `npm install` from the vscode-xml directory. -2. Run the `build` task in VS Code (`CTRL + SHIFT + B`) or start extension debugging (`F5`), which will run the `build` task for you. - -## Style Guide -### Quotes -Use double quotes for strings whenever possible. - -### Imports -As a general rule, always import the `vscode` namespace using the `vsc` alias for consistency. - -### Static Classes -When possible, try to use a static class to wrap utility functions so you are importing the class, not just a function. -For libraries that do not follow this construct (such as the `xpath` module), *always* import the module using an alias (`import * as xpath from "xpath"). - -### Constants -Where applicable, try to use constants instead of inline strings and numbers. - -## Implicit Types -Moving forward, the compiler is instructed (via tsconfig.json) to throw warnings if any expressions imply an `any` type. In other words, always use type declarations where applicable so it is clear what type is being used. -There is an exception to this guideline. If you are using a thrid party library that does not have a *.d.ts file available, you do not need to write one. Just ensure the API is documented (either in this repo or in the library's repo). - -## Folder Structure -All TypeScript files should reside under the top `src` folder. Under this, there are several subfolders and top-level files defined below: - -### providers -This folder contains any classes that implement provider interfaces from the `vscode` namespace. This folder also contains any code that works directly with the -APIs exposed by the `vscode` namespace, such as user interaction or configuration access. Aside for the `vscode` module, no code in this folder should be directly dependent on -any external NodeJS modules or libraries. - -### services -This folder contains any classes that perform actions/logic required by the providers mentioned above. Services should not be dependent on the `vscode` namespace and *can* be -dependent on external Node modules and libraries. - -### utils -This folder contains any utility classes/functions. - -### Commands.ts -This file acts as an interface to all registered commands in the extension. If a substantial amount of code is required to implement a command, it should be moved to a provider and/or service. - -### Extension.ts -Previously named `main.ts`, this is the primary entry point to the extension. Anything that needs done on activation or deactivation of the extension is done here. Both the workspace and global `Memento` instances are exposed from this module, which can be used by providers as needed. diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 7145ecc..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2015 Josh Johnson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 1bf37c4..0000000 --- a/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# XML Tools for Visual Studio Code -[![](https://img.shields.io/badge/gitter-join_chat-1dce73.svg?logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB4PSIwIiB5PSI1IiBmaWxsPSIjZmZmIiB3aWR0aD0iMSIgaGVpZ2h0PSI1Ii8%2BPHJlY3QgeD0iMiIgeT0iNiIgZmlsbD0iI2ZmZiIgd2lkdGg9IjEiIGhlaWdodD0iNyIvPjxyZWN0IHg9IjQiIHk9IjYiIGZpbGw9IiNmZmYiIHdpZHRoPSIxIiBoZWlnaHQ9IjciLz48cmVjdCB4PSI2IiB5PSI2IiBmaWxsPSIjZmZmIiB3aWR0aD0iMSIgaGVpZ2h0PSI0Ii8%2BPC9zdmc%2B&logoWidth=8)](https://gitter.im/vscode-xml/vscode-xml) -[![Build Status](https://travis-ci.org/DotJoshJohnson/vscode-xml.svg?branch=master)](https://travis-ci.org/DotJoshJohnson/vscode-xml) - -## Features -* [XML Formatting](https://github.com/DotJoshJohnson/vscode-xml/wiki/xml-formatting) -* [XML Tree View](https://github.com/DotJoshJohnson/vscode-xml/wiki/xml-tree-view) -* [XPath Evaluation](https://github.com/DotJoshJohnson/vscode-xml/wiki/xpath-evaluation) -* [XQuery Linting](https://github.com/DotJoshJohnson/vscode-xml/wiki/xquery-linting) -* [XQuery Execution](https://github.com/DotJoshJohnson/vscode-xml/wiki/xquery-script-execution) -* [XQuery Code Completion](https://github.com/DotJoshJohnson/vscode-xml/wiki/xquery-code-completion) - -## Release Notes -Detailed release notes are available [here](https://github.com/DotJoshJohnson/vscode-xml/releases). - -## Issues -Run into a bug? Report it [here](https://github.com/DotJoshJohnson/vscode-xml/issues). - -## Icon Credits -Icons used in the XML Tree View are used under the Creative Commons 3.0 BY license. -* "Code" icon by Dave Gandy from www.flaticon.com -* "At" icon by FreePik from www.flaticon.com \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index e71a309..0000000 --- a/gulpfile.js +++ /dev/null @@ -1,9 +0,0 @@ -var gulp = require("gulp"); - -var shell = require("gulp-shell"); - -gulp.task("compile-typescript", function () { - gulp.src("package.json").pipe(shell("tsc")); -}); - -gulp.task("build", ["compile-typescript"]); \ No newline at end of file diff --git a/languages/xquery/xquery.json b/languages/xquery/xquery.json deleted file mode 100644 index b20de80..0000000 --- a/languages/xquery/xquery.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "comments": { - "lineComment": "//", - "blockComment": ["/*", "*/"] - }, - "brackets": [ - ["{", "}"], - ["[", "]"], - ["(", ")"] - ] -} \ No newline at end of file diff --git a/languages/xquery/xquery.tmLanguage b/languages/xquery/xquery.tmLanguage deleted file mode 100644 index 5558b95..0000000 --- a/languages/xquery/xquery.tmLanguage +++ /dev/null @@ -1,1066 +0,0 @@ - - - - - fileTypes - - xq - xql - xqm - xqy - xquery - - firstLineMatch - ^\bxquery version\b.* - foldingStartMarker - ^\s*(<[^!?%/](?!.+?(/>|</.+?>))|<[!%]--(?!.+?--%?>)|<%[!]?(?!.+?%>))|(declare|.*\{\s*(//.*)?$) - foldingStopMarker - ^\s*(</[^>]+>|[/%]>|-->)\s*$|(.*\}\s*;?\s*|.*;) - keyEquivalent - ^~X - name - XQuery - patterns - - - include - #Xml - - - include - #entity - - - include - #bare-ampersand - - - begin - (<\?)\s*([-_a-zA-Z0-9]+) - captures - - 1 - - name - punctuation.definition.tag.begin.xml - - 2 - - name - entity.name.tag.xml - - - end - (\?>) - name - meta.tag.preprocessor.xml - patterns - - - match - ([a-zA-Z-]+) - name - entity.other.attribute-name.xml - - - include - #doublequotedString - - - include - #singlequotedString - - - - - match - ^xquery version .*;$ - name - keyword.control.import.xquery - - - match - \b(?i:(\d+\.\d*(e[\-\+]?\d+)?))(?=[^a-zA-Z_]) - name - constant.numeric.float.xquery - - - match - (?<=[^0-9a-zA-Z_])(?i:(\.\d+(e[\-\+]?\d+)?)) - name - constant.numeric.float.xquery - - - match - \b(?i:(\d+e[\-\+]?\d+)) - name - constant.numeric.float.xquery - - - match - \b([1-9]+[0-9]*|0) - name - constant.numeric.integer.decimal.xquery - - - match - \b(import|module|schema)\b - name - keyword.control.import.xquery - - - begin - \(: - captures - - 0 - - name - punctuation.definition.comment.xquery - - - end - :\) - name - comment.block.xquery - patterns - - - include - #block_comment - - - - - comment - http://www.w3.org/TR/xpath-datamodel/#types - match - (?<![:\-_a-zA-Z0-9])((xs:)(string|boolean|decimal|float|double|duration|dateTime|time|date|gYearMonth|gYear|gMonthDay|gDay|gMonth|hexBinary|base64Binary|anyURI|QName|NOTATION|anyAtomicType|anyType|anySimpleType|untypedAtomic|dayTimeDuration|yearMonthDuration|integer|nonPositiveInteger|negativeInteger|long|int|short|byte|nonNegativeInteger|unsignedLong|unsignedInt|unsignedShort|unsignedByte|positiveInteger|ENTITY|ID|NMTOKEN|language|NCName|Name|token|normalizedString))(?![:\-_a-zA-Z0-9]) - name - support.type.xquery - - - captures - - 1 - - name - punctuation.definition.variable.xquery - - - match - ((\$)(?:([\-_a-zA-Z0-9]+)((:)))?([\-_a-zA-Z0-9]+)) - name - variable.other.xquery - - - match - /(child|descendant|attribute|self|descendant-or-self|following-sibling|following|parent|ancestor|preceding-sibling|preceding|ancestor-or-self):: - name - support.constant.xquery - - - name - meta.function.xquery - patterns - - - captures - - 1 - - name - storage.type.function.xquery - - 2 - - name - entity.name.function.xquery - - - match - (function)\s+((?:([\-_a-zA-Z0-9]+):)?([\-_a-zA-Z0-9]+))\s*\( - patterns - - - include - #function_parameters - - - include - $self - - - - - begin - \s*(function)\s+(?!namespace) - beginCaptures - - 1 - - name - storage.type.function.xquery - - - end - \( - patterns - - - captures - - 1 - - name - entity.name.function.xquery - - - match - ((?:([\-_a-zA-Z0-9]+):)?([\-_a-zA-Z0-9]+)) - - - include - #function_parameters - - - include - $self - - - - - - - captures - - 1 - - name - keyword.other.xquery - - 2 - - name - storage.type.variable.xquery - - 3 - - name - entity.name.function.variable.xquery - - - match - (declare)\s+(variable)\s+(\$(?:[\-_a-zA-Z0-9]+:)?[\-_a-zA-Z0-9]+) - name - meta.variable.xquery - - - begin - (declare)\s+(variable)\s* - captures - - 1 - - name - keyword.other.xquery - - 2 - - name - storage.type.variable.xquery - - - end - (\$(?:[\-_a-zA-Z0-9]+:)?[\-_a-zA-Z0-9]+) - endCaptures - - 1 - - name - entity.name.function.variable.xquery - - - name - meta.variable.xquery - - - match - \b(base-uri|boundary-space|collation|construction|copy-namespaces|declare|default|element|empty(?![-])|function|greatest|import|inherit|instance|least|module|namespace|no-inherit|no-preserve|option|order|ordered|ordering|preserve|strip|unordered|variable|xdmp:mapping|xdmp:transaction-mode)\b - name - keyword.other.prolog.xquery - - - match - (?<![:\-_a-zA-Z0-9])(of|as|by|in|at|or|and)(?![:\-_a-zA-Z0-9]) - name - keyword.operator.logical.xquery - - - captures - - 1 - - name - keyword.control.flow.xquery - - - match - (?<![:\-_a-zA-Z0-9])(for|let|return|where|if|then|else|order by|satisfies|every)(?![:\-_a-zA-Z0-9]) - - - captures - - 1 - - name - support.type.xquery - - - match - (?<![:\-_a-zA-Z0-9])(element|attribute|document|document-node\(\)|empty-sequence\(\)|schema-element|schema-attribute|processing-instruction|comment|text|node)(?![:\-_a-zA-Z0-9]) - - - match - := - name - keyword.operator.assignment.xquery - - - match - (?<![:\-_a-zA-Z0-9])(\+|-|<=?|>=?|eq|ne|lt|le|ge|gt|\*|div|idiv|mod)(?![:\-_a-zA-Z0-9]) - name - keyword.operator.arithmetic.xquery - - - match - (?<![:\-_a-zA-Z0-9])((fn:)?(abs|adjust-date-to-timezone|adjust-dateTime-to-timezone|adjust-time-to-timezone|analyze-string|avg|base-uri|boolean|ceiling|codepoint-equal|codepoints-to-string|collection|compare|concat|contains|count|current-date|current-dateTime|current-time|data|dateTime|day-from-date|day-from-dateTime|days-from-duration|deep-equal|default-collation|distinct-values|doc|doc-available|document|document-uri|empty|encode-for-uri|ends-with|error|escape-html-uri|escape-uri|exactly-one|exists|false|filter|floor|fold-left|fold-right|format-date|format-dateTime|format-number|format-time|function-arity|function-available|function-lookup|function-name|generate-id|head|hours-from-dateTime|hours-from-duration|hours-from-time|id|idref|implicit-timezone|in-scope-prefixes|index-of|insert-before|iri-to-uri|lang|last|local-name|local-name-from-QName|lower-case|map|map-pairs|matches|max|min|minutes-from-dateTime|minutes-from-duration|minutes-from-time|month-from-date|month-from-dateTime|months-from-duration|name|namespace-uri|namespace-uri-for-prefix|namespace-uri-from-QName|nilled|node-name|normalize-space|normalize-unicode|not|number|one-or-more|position|prefix-from-QName|QName|remove|replace|resolve-QName|resolve-uri|reverse|root|round|round-half-to-even|seconds-from-dateTime|seconds-from-duration|seconds-from-time|starts-with|static-base-uri|string|string-join|string-length|string-to-codepoints|subsequence|substring|substring-after|substring-before|sum|tail|timezone-from-date|timezone-from-dateTime|timezone-from-time|tokenize|trace|translate|true|type-available|unordered|unparsed-text|unparsed-text-available|upper-case|year-from-date|year-from-dateTime|years-from-duration|zero-or-one))(?=\s*\() - name - support.function.builtin.xquery - - - match - (?<![:\-_a-zA-Z0-9])(xdmp:(access|add-response-header|add64|address-bindable|amp|amp-roles|and64|annotation|apply|architecture|atomizable|audit|aws-url-encode|base64-decode|base64-encode|binary-decode|binary-is-external|binary-is-large|binary-is-small|binary-join|binary-key|binary-offset|binary-original-length|binary-size|cache-status|can-grant-roles|castable-as|cluster|cluster-name|collation-canonical-uri|collection-delete|collection-locks|collection-properties|commit|compressed-tree-cache-clear|compressed-tree-cache-partitions|compressed-tree-cache-size|configuration-timestamp|content-type|crypt|crypt2|customized-binary|data-directory|database|database-backup|database-backup-cancel|database-backup-purge|database-backup-status|database-backup-validate|database-forests|database-fragment-counts|database-global-nonblocking-timestamp|database-is-replica|database-maintain-last-modified|database-name|database-nonblocking-timestamp|database-partition-forests|database-path-namespaces|database-restore|database-restore-cancel|database-restore-status|database-restore-validate|databases|dayname-from-date|debug-print|decode-from-NCName|default-collections|default-in-memory-limit|default-in-memory-list-size|default-in-memory-range-index-size|default-in-memory-reverse-index-size|default-in-memory-tree-size|default-in-memory-triple-index-size|default-journal-count|default-journal-size|default-license-key|default-licensee|default-permissions|default-preallocate-journals|default-s3-domain|default-zone|delete-cluster-config-file|delete-host-config-file|describe|diacritic-less|directory|directory-create|directory-delete|directory-locks|directory-properties|disable-event|document-add-collections|document-add-permissions|document-add-properties|document-assign|document-delete|document-filter|document-forest|document-get|document-get-collections|document-get-events|document-get-permissions|document-get-properties|document-get-quality|document-insert|document-load|document-locks|document-properties|document-remove-collections|document-remove-permissions|document-remove-properties|document-set-collections|document-set-permissions|document-set-properties|document-set-property|document-set-quality|document-timestamp|dsa-generate|dump-paths|dump-xsd|duplicates|eager|ec2-host|ec2-product-code|elapsed-time|element-content-type|email|email-address|enable-event|encode-for-NCName|encoding-language-detect|estimate|eval|eval-in|excel-convert|exists|expanded-tree-cache-clear|expanded-tree-cache-partitions|expanded-tree-cache-size|external-binary|external-binary-path|external-security|filesystem-directory|filesystem-directory-create|filesystem-directory-delete|filesystem-file|filesystem-file-delete|filesystem-file-exists|filesystem-file-length|filesystem-file-rename|filesystem-filepath|foreign-cluster-status|foreign-clusters|forest|forest-backup|forest-clear|forest-combine|forest-compare|forest-copy|forest-counts|forest-databases|forest-delete|forest-directory-delete|forest-directory-exists|forest-docinfos|forest-get-readonly|forest-host|forest-name|forest-online|forest-open-replica|forest-rename|forest-restart|forest-restore|forest-rollback|forest-set-readonly|forest-status|forest-updates-allowed|forests|format-number|from-json|function|function-module|function-name|function-parameter-name|function-parameter-type|function-return-type|function-signature|functions|get|get-current-roles|get-current-user|get-current-userid|get-external-variable|get-hot-updates|get-invoked-path|get-ip|get-original-url|get-orphaned-binaries|get-request-body|get-request-client-address|get-request-client-certificate|get-request-field|get-request-field-content-type|get-request-field-filename|get-request-field-names|get-request-header|get-request-header-names|get-request-method|get-request-part-body|get-request-part-headers|get-request-path|get-request-port|get-request-protocol|get-request-url|get-request-user|get-request-username|get-response-code|get-response-encoding|get-server-field|get-server-field-names|get-session-field|get-session-field-names|get-transaction-by-xid|get-transaction-mode|get-url-rewriter-path|getenv|group|group-hosts|group-name|group-servers|groups|gss-server-negotiate|gunzip|gzip|has-privilege|hash32|hash64|hex-to-integer|hmac-md5|hmac-sha1|hmac-sha256|hmac-sha512|host|host-cores|host-cpus|host-forests|host-get-ssl-fips-enabled|host-name|host-size|host-status|hostname|hosts|http-delete|http-get|http-head|http-options|http-post|http-put|initcap|install-directory|integer-to-hex|integer-to-octal|invoke|invoke-function|invoke-in|jobject|key-from-QName|language-stemmer-normalization|language-tokenizer-normalization|lazy|ldap-lookup|ldap-search|license-key|license-key-agreement|license-key-cores|license-key-cpus|license-key-decode|license-key-encode|license-key-expires|license-key-options|license-key-size|license-key-valid|license-key-version|licensee|list-cache-clear|list-cache-partitions|list-cache-size|load|lock-acquire|lock-for-update|lock-release|log|log-level|login|logout|lshift64|match-priority|md5|merge|merge-cancel|merging|missing-directories|modules-database|modules-root|month-name-from-date|mul64|multipart-decode|multipart-encode|n3|n3-get|node-database|node-delete|node-insert-after|node-insert-before|node-insert-child|node-kind|node-output-definition|node-replace|node-uri|not64|nquad|nquad-get|octal-to-integer|or64|original-binary|parse-dateTime|parse-yymmdd|path|pdf-convert|permission|plan|plannable|platform|position|powerpoint-convert|pre-release-expires|pretty-print|privilege|privilege-roles|product-edition|product-environment|product-initials|product-name|QName-from-key|quality|quarter-from-date|query-forests|query-meters|query-trace|quote|random|read-cluster-config-file|read-host-config-file|redirect-response|remove-orphaned-binary|request|request-cancel|request-key|request-status|request-timestamp|resolve-uri|restart|rethrow|role|role-roles|rollback|rsa-generate|rshift64|save|schema-database|score|security-assert|security-database|security-version|server|server-backup|server-name|server-restore|server-status|servers|set|set-current-transaction|set-hot-updates|set-request-time-limit|set-response-code|set-response-content-type|set-response-encoding|set-server-field|set-server-field-privilege|set-session-field|set-transaction-mode|set-transaction-name|set-transaction-time-limit|sha1|sha256|sha384|sha512|shutdown|sleep|smtp-relay|spawn|spawn-function|spawn-in|sql|start-journal-archiving|step64|stop-journal-archiving|strftime|subbinary|test-future|test-lazy|test-skiplist|tidy|timestamp-to-wallclock|to-json|trace|transaction|transaction-commit|transaction-create|transaction-rollback|triggers-database|triple-cache-partitions|triple-cache-size|triple-value-cache-partitions|triple-value-cache-size|turtle|turtle-get|type|unpath|unquote|update|uri-content-type|uri-format|uri-is-file|url-decode|url-encode|user|user-external-security|user-last-login|user-roles|username|validate|value|version|wallclock-to-timestamp|week-from-date|weekday-from-date|word-convert|write-cluster-config-file|write-host-config-file|x509-certificate-extract|x509-certificate-generate|x509-crl-der2pem|x509-crl-extract|x509-crl-generate|x509-request-extract|x509-request-generate|xa-complete|xa-complete-xid|xa-complete1|xa-forget|xa-forget-xid|xa-prepare|xor64|xquery-version|xslt-eval|xslt-invoke|yearday-from-date|zip-create|zip-get|zip-manifest))(?=\s*\() - name - support.function.marklogic.xquery - - - match - (?<![:\-_a-zA-Z0-9])(cts:(aggregate|and-not-query|and-not-query-negative-query|and-not-query-positive-query|and-query|and-query-options|and-query-queries|approx-center|arc-intersection|avg|avg-aggregate|bearing|boost-query|boost-query-boosting-query|boost-query-matching-query|bounding-boxes|box|box-east|box-intersects|box-north|box-south|box-west|circle|circle-center|circle-intersects|circle-radius|classify|cluster|codepoint-tokenizer-class|collection-match|collection-query|collection-query-uris|collection-reference|collections|complex-polygon|complex-polygon-contains|complex-polygon-inner|complex-polygon-intersects|complex-polygon-outer|confidence|contains|correlation|count|count-aggregate|covariance|covariance-p|deregister|destination|directory-query|directory-query-depth|directory-query-uris|distance|distinctive-terms|document-fragment-query|document-fragment-query-query|document-query|document-query-uris|element-attribute-pair-geospatial-boxes|element-attribute-pair-geospatial-query|element-attribute-pair-geospatial-query-element-name|element-attribute-pair-geospatial-query-latitude-name|element-attribute-pair-geospatial-query-longitude-name|element-attribute-pair-geospatial-query-options|element-attribute-pair-geospatial-query-region|element-attribute-pair-geospatial-query-weight|element-attribute-pair-geospatial-value-match|element-attribute-pair-geospatial-values|element-attribute-range-query|element-attribute-range-query-attribute-name|element-attribute-range-query-element-name|element-attribute-range-query-operator|element-attribute-range-query-options|element-attribute-range-query-value|element-attribute-range-query-weight|element-attribute-reference|element-attribute-value-co-occurrences|element-attribute-value-geospatial-co-occurrences|element-attribute-value-match|element-attribute-value-query|element-attribute-value-query-attribute-name|element-attribute-value-query-element-name|element-attribute-value-query-options|element-attribute-value-query-text|element-attribute-value-query-weight|element-attribute-value-ranges|element-attribute-values|element-attribute-word-match|element-attribute-word-query|element-attribute-word-query-attribute-name|element-attribute-word-query-element-name|element-attribute-word-query-options|element-attribute-word-query-text|element-attribute-word-query-weight|element-attribute-words|element-child-geospatial-boxes|element-child-geospatial-query|element-child-geospatial-query-child-name|element-child-geospatial-query-element-name|element-child-geospatial-query-options|element-child-geospatial-query-region|element-child-geospatial-query-weight|element-child-geospatial-value-match|element-child-geospatial-values|element-geospatial-boxes|element-geospatial-query|element-geospatial-query-element-name|element-geospatial-query-options|element-geospatial-query-region|element-geospatial-query-weight|element-geospatial-value-match|element-geospatial-values|element-pair-geospatial-boxes|element-pair-geospatial-query|element-pair-geospatial-query-element-name|element-pair-geospatial-query-latitude-name|element-pair-geospatial-query-longitude-name|element-pair-geospatial-query-options|element-pair-geospatial-query-region|element-pair-geospatial-query-weight|element-pair-geospatial-value-match|element-pair-geospatial-values|element-query|element-query-element-name|element-query-query|element-range-query|element-range-query-element-name|element-range-query-operator|element-range-query-options|element-range-query-value|element-range-query-weight|element-reference|element-value-co-occurrences|element-value-geospatial-co-occurrences|element-value-match|element-value-query|element-value-query-element-name|element-value-query-options|element-value-query-text|element-value-query-weight|element-value-ranges|element-values|element-word-match|element-word-query|element-word-query-element-name|element-word-query-options|element-word-query-text|element-word-query-weight|element-words|field-range-query|field-range-query-field-name|field-range-query-operator|field-range-query-options|field-range-query-value|field-range-query-weight|field-reference|field-value-co-occurrences|field-value-match|field-value-query|field-value-query-field-name|field-value-query-options|field-value-query-text|field-value-query-weight|field-value-ranges|field-values|field-word-match|field-word-query|field-word-query-field-name|field-word-query-options|field-word-query-text|field-word-query-weight|field-words|fitness|frequency|geospatial-attribute-pair-reference|geospatial-co-occurrences|geospatial-element-attribute-pair-reference|geospatial-element-child-reference|geospatial-element-pair-reference|geospatial-element-reference|geospatial-path-reference|hash-terms|index-path-key|index-path-keys|index-path-ns-prefixes|linear-model|linestring|linestring-vertices|locks-query|locks-query-query|long-lat-point|matches|max|median|min|near-query|near-query-distance|near-query-options|near-query-queries|near-query-weight|not-in-query|not-in-query-negative-query|not-in-query-positive-query|not-query|not-query-query|not-query-weight|or-query|or-query-queries|parse|parse-wkt|path-geospatial-query|path-geospatial-query-options|path-geospatial-query-path-expression|path-geospatial-query-region|path-geospatial-query-weight|path-range-query|path-range-query-operator|path-range-query-options|path-range-query-path-name|path-range-query-value|path-range-query-weight|path-reference|percent-rank|percentile|point|point-latitude|point-longitude|polygon|polygon-contains|polygon-intersects|polygon-vertices|properties-query|properties-query-query|punctuation|quality|query|rank|reference|reference-parse|region|region-contains|region-intersects|register|registered-query|registered-query-ids|registered-query-options|registered-query-weight|relevance-info|remainder|reverse-query|reverse-query-nodes|reverse-query-weight|score|search|shortest-distance|show-get-query|similar-query|similar-query-nodes|similar-query-weight|space|special|stddev|stddev-p|stem|sum|sum-aggregate|term-query|term-query-term|term-query-weight|thresholds|time-series|timestamp-query|to-wkt|token|tokenize|train|triple-range-query|triple-range-query-object|triple-range-query-operator|triple-range-query-options|triple-range-query-predicate|triple-range-query-subject|triple-range-query-weight|triples|uri-match|uri-reference|uris|valid-index-path|value-co-occurrences|value-match|value-ranges|value-tuples|values|variance|variance-p|word|word-match|word-query|word-query-options|word-query-text|word-query-weight|words))(?=\s*\() - name - support.function.cts.xquery - - - match - (?<![:\-_a-zA-Z0-9])(xdmp:([\-_a-zA-Z0-9][\-\._a-zA-Z0-9]*:)?([\-_a-zA-Z0-9][\-\._a-zA-Z0-9]*))\s*\( - name - invalid.illegal.function.xdmp - - - match - (?<![:\-_a-zA-Z0-9])(cts:([\-_a-zA-Z0-9][\-\._a-zA-Z0-9]*:)?([\-_a-zA-Z0-9][\-\._a-zA-Z0-9]*))\s*\( - name - invalid.illegal.function.cts - - - include - #string - - - begin - (\() - beginCaptures - - 1 - - name - punctuation.definition.begin.xquery - - - end - (\)) - endCaptures - - 1 - - name - punctuation.definition.end.xquery - - - name - meta - patterns - - - include - $self - - - - - include - #function_call - - - repository - - EntityDecl - - begin - (<!)(ENTITY)\s+(%\s+)?([:a-zA-Z_][:a-zA-Z0-9_.-]*)(\s+(?:SYSTEM|PUBLIC)\s+)? - captures - - 1 - - name - punctuation.definition.tag.begin.xml - - 2 - - name - keyword.entity.xml - - 3 - - name - punctuation.definition.entity.xml - - 4 - - name - variable.entity.xml - - 5 - - name - keyword.entitytype.xml - - - end - (>) - patterns - - - include - #doublequotedStringXml - - - include - #singlequotedStringXml - - - - Xml - - patterns - - - begin - (<\?)\s*([-_a-zA-Z0-9]+) - captures - - 1 - - name - punctuation.definition.tag.begin.xml - - 2 - - name - entity.name.tag.xml - - - end - (\?>) - name - meta.tag.preprocessor.xml - patterns - - - match - ([a-zA-Z-]+) - name - entity.other.attribute-name.xml - - - include - #doublequotedString - - - include - #singlequotedString - - - - - begin - (<!)(DOCTYPE)\s+([:a-zA-Z_][:a-zA-Z0-9_.-]*) - captures - - 1 - - name - punctuation.definition.tag.begin.xml - - 2 - - name - keyword.doctype.xml - - 3 - - name - variable.documentroot.xml - - - end - \s*(>) - name - meta.tag.sgml.doctype.xml - patterns - - - include - #internalSubset - - - - - begin - <[!%]-- - captures - - 0 - - name - punctuation.definition.comment.xml - - - end - --%?> - name - comment.block.xml - - - begin - <\? - captures - - 0 - - name - punctuation.definition.processing-instruction.xml - - - end - \?> - name - comment.processing-instruction.xml - - - begin - (<)((?:([-_a-zA-Z0-9]+)((:)))?([-_a-zA-Z0-9:]+))(?=(\s[^>]*)?></\2>) - beginCaptures - - 1 - - name - punctuation.definition.tag.begin.xml - - 3 - - name - entity.name.tag.namespace.xml - - 4 - - name - entity.name.tag.xml - - 5 - - name - punctuation.separator.namespace.xml - - 6 - - name - entity.name.tag.localname.xml - - - end - (>)(<)(/)(?:([-_a-zA-Z0-9]+)((:)))?([-_a-zA-Z0-9:]+)(>) - endCaptures - - 1 - - name - punctuation.definition.tag.end.xml - - 2 - - name - punctuation.definition.tag.begin.xml meta.scope.between-tag-pair.xml - - 3 - - name - punctuation.definition.tag.begin.xml - - 4 - - name - entity.name.tag.namespace.xml - - 5 - - name - entity.name.tag.xml - - 6 - - name - punctuation.separator.namespace.xml - - 7 - - name - entity.name.tag.localname.xml - - 8 - - name - punctuation.definition.tag.end.xml - - - name - meta.tag.no-content.xml - patterns - - - include - #tagStuff - - - - - begin - (</?)(?:([-_a-zA-Z0-9]+)((:)))?([-_a-zA-Z0-9:]+) - captures - - 1 - - name - punctuation.definition.tag.begin.xml - - 2 - - name - entity.name.tag.namespace.xml - - 3 - - name - entity.name.tag.xml - - 4 - - name - punctuation.separator.namespace.xml - - 5 - - name - entity.name.tag.localname.xml - - - end - (/?>) - endCaptures - - 1 - - name - punctuation.definition.tag.end.xml - - - name - meta.tag.xml - patterns - - - include - #tagStuff - - - - - include - #entity - - - include - #bare-ampersand - - - begin - <!\[CDATA\[ - beginCaptures - - 0 - - name - punctuation.definition.string.begin.xml - - - end - ]]> - endCaptures - - 0 - - name - punctuation.definition.string.end.xml - - - name - string.unquoted.cdata.xml - - - - bare-ampersand - - match - & - name - invalid.illegal.bad-ampersand.xml - - block_comment - - begin - \(: - end - :\) - patterns - - - include - #block_comment - - - - code_block - - begin - \{ - end - \} - name - meta.code-block.xquery - patterns - - - include - $self - - - - doublequotedString - - begin - (?<![-_a-zA-Z0-9:]>)\s*"(?!\s*</[-_a-zA-Z0-9:]) - beginCaptures - - 0 - - name - punctuation.definition.string.begin.xquery - - - end - " - endCaptures - - 0 - - name - punctuation.definition.string.end.xquery - - - name - string.quoted.double.xquery - patterns - - - include - #entity - - - include - #bare-ampersand - - - - doublequotedStringXml - - begin - " - beginCaptures - - 0 - - name - punctuation.definition.string.begin.xml - - - end - " - endCaptures - - 0 - - name - punctuation.definition.string.end.xml - - - name - string.quoted.double.xml - patterns - - - include - #entity - - - include - #bare-ampersand - - - include - #code_block - - - - entity - - captures - - 1 - - name - punctuation.definition.constant.xml - - - match - (&)([:a-zA-Z_][:a-zA-Z0-9_.-]*|#[0-9]+|#x[0-9a-fA-F]+)(;) - name - constant.character.entity.xml - - function_call - - captures - - 1 - - name - punctuation.definition.parameters.begin.xquery - - - match - [\-_a-zA-Z0-9]+:[\-_a-zA-Z0-9]+(?=\() - name - support.function.xquery - - function_parameters - - match - \$([\-_a-zA-Z0-9][\-\._a-zA-Z0-9]*:)?([\-_a-zA-Z0-9][\-\._a-zA-Z0-9]*) - name - variable.parameter.xquery - - internalSubset - - begin - (\[) - captures - - 1 - - name - punctuation.definition.constant.xml - - - end - (\]) - name - meta.internalsubset.xml - patterns - - - include - #EntityDecl - - - include - #parameterEntity - - - - parameterEntity - - captures - - 1 - - name - punctuation.definition.constant.xml - - 3 - - name - punctuation.definition.constant.xml - - - match - (%)([:a-zA-Z_][:a-zA-Z0-9_.-]*)(;) - name - constant.character.parameter-entity.xml - - singlequotedString - - begin - (?<![-_a-zA-Z0-9:]>)\s*'(?!\s*</[-_a-zA-Z0-9:]) - beginCaptures - - 0 - - name - punctuation.definition.string.begin.xquery - - - end - ' - endCaptures - - 0 - - name - punctuation.definition.string.end.xquery - - - name - string.quoted.single.xquery - patterns - - - include - #entity - - - include - #bare-ampersand - - - - singlequotedStringXml - - begin - ' - beginCaptures - - 0 - - name - punctuation.definition.string.begin.xml - - - end - ' - endCaptures - - 0 - - name - punctuation.definition.string.end.xml - - - name - string.quoted.single.xml - patterns - - - include - #entity - - - include - #bare-ampersand - - - include - #code_block - - - - string - - patterns - - - include - #singlequotedString - - - include - #doublequotedString - - - - tagStuff - - patterns - - - captures - - 1 - - name - entity.other.attribute-name.namespace.xml - - 2 - - name - entity.other.attribute-name.xml - - 3 - - name - punctuation.separator.namespace.xml - - 4 - - name - entity.other.attribute-name.localname.xml - - - match - (?:([-_a-zA-Z0-9]+)((:)))?([-_a-zA-Z0-9]+)= - - - include - #doublequotedStringXml - - - include - #singlequotedStringXml - - - - - scopeName - source.xquery - uuid - cddd8a73-ed1e-4303-a649-a23e816fafa1 - - \ No newline at end of file diff --git a/package.json b/package.json deleted file mode 100644 index fbb6e8b..0000000 --- a/package.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "name": "xml", - "displayName": "XML Tools", - "description": "XML Formatting, XQuery, and XPath Tools for Visual Studio Code", - "version": "1.9.2", - "publisher": "DotJoshJohnson", - "author": { - "name": "Josh Johnson", - "url": "https://github.com/DotJoshJohnson" - }, - "icon": "resources/xml.png", - "galleryBanner": { - "color": "#FFFFFF", - "theme": "light" - }, - "homepage": "https://github.com/DotJoshJohnson/vscode-xml", - "repository": { - "type": "git", - "url": "https://github.com/DotJoshJohnson/vscode-xml.git" - }, - "bugs": { - "url": "https://github.com/DotJoshJohnson/vscode-xml/issues" - }, - "engines": { - "vscode": "^1.13.0", - "node": "^0.12.0" - }, - "categories": [ - "Languages", - "Linters", - "Other", - "Formatters" - ], - "main": "./src/Extension", - "contributes": { - "commands": [ - { - "command": "xmlTools.minifyXml", - "title": "XML Tools: Minify XML" - }, - { - "command": "xmlTools.evaluateXPath", - "title": "XML Tools: Evaluate XPath" - }, - { - "command": "xmlTools.executeXQuery", - "title": "XML Tools: Execute XQuery" - }, - { - "command": "xmlTools.formatAsXml", - "title": "XML Tools: Format as XML" - } - ], - "configuration": { - "title": "XML Tools Configuration", - "type": "object", - "properties": { - "xmlTools.persistXPathQuery": { - "type": "boolean", - "default": true, - "description": "Remember the last XPath query used." - }, - "xmlTools.removeCommentsOnMinify": { - "type": "boolean", - "default": false, - "description": "Remove XML comments when XML is minified." - }, - "xmlTools.splitXmlnsOnFormat": { - "type": "boolean", - "default": true, - "description": "Put each xmlns attribute on a new line when fromatting XML." - }, - "xmlTools.xqueryExecutionEngine": { - "type": "string", - "default": "", - "description": "The full path to the execution engine executable." - }, - "xmlTools.xqueryExecutionArguments": { - "type": "array", - "default": ["-xquery", "$(script)", "-in", "$(input)", "-out", "$(input).output.xml"], - "description": "Arguments to be passed to the execution engine. '$(script)' and '$(input)' refer to the XQuery script and input XML file, respectively." - }, - "xmlTools.ignoreDefaultNamespace": { - "type": "boolean", - "default": true, - "description": "Ignores default xmlns attribute when evaluating XPath." - } - } - }, - "keybindings": [ - { - "key": "ctrl+shift+alt+b", - "command": "xmlTools.formatXml" - }, - { - "key": "ctrl+shift+alt+x", - "command": "xmlTools.evaluateXPath" - } - ], - "languages": [ - { - "id": "xquery", - "aliases": ["XQuery", "xquery"], - "extensions": [".xq",".xql",".xqm",".xqy",".xquery"], - "configuration": "./languages/xquery/xquery.json" - } - ], - "grammars": [ - { - "language": "xquery", - "scopeName": "source.xquery", - "path": "./languages/xquery/xquery.tmLanguage" - } - ], - "views": { - "explorer": [ - { - "id": "xmlTreeView", - "name": "XML Document" - } - ] - } - }, - "activationEvents": [ - "onLanguage:xml", - "onLanguage:xsl", - "onLanguage:xquery", - "onCommand:xmlTools.minifyXml", - "onCommand:xmlTools.evaluateXPath", - "onCommand:xmlTools.executeXQuery", - "onCommand:xmlTools.formatAsXml" - ], - "devDependencies": { - "vscode": "^1.1.0", - "typescript": "^2.3.4", - "gulp": "^3.9.0", - "gulp-shell": "^0.5.1" - }, - "dependencies": { - "xmldom": "^0.1.22", - "xpath": "^0.0.9", - "xqlint": "^0.2.9" - }, - "scripts": { - "vscode:prepublish": "tsc", - "postinstall": "node ./node_modules/vscode/bin/install" - } -} diff --git a/resources/icons/attribute.dark.svg b/resources/icons/attribute.dark.svg deleted file mode 100644 index f208dc3..0000000 --- a/resources/icons/attribute.dark.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/attribute.light.svg b/resources/icons/attribute.light.svg deleted file mode 100644 index 2c5fc76..0000000 --- a/resources/icons/attribute.light.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/element.dark.svg b/resources/icons/element.dark.svg deleted file mode 100644 index 45eced5..0000000 --- a/resources/icons/element.dark.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/element.light.svg b/resources/icons/element.light.svg deleted file mode 100644 index 8e6cfd1..0000000 --- a/resources/icons/element.light.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/xml.png b/resources/xml.png deleted file mode 100644 index 597979b04af928df27711a78d549a7e4b50bf819..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3277 zcmb`KS635=)`pW%3=$y;3IU`_J#+~{Kp;S9p(`9zx>BMdRZv*0cA!*1mjqysfqAh4Vt^0RX@Sb2H41vr7CY zz?^6Klb**Q001GGV+`z{&ThDHP5s+gP_$v#H`p8n8~8~K6cz5V@N^Wt#Kk$NmxDynkY|E zhND>Q;DE6ILr%6E61d~bSORpxtsq1$0Yd~;A7vNad0tzYPj|S*h%X4CM4v%4v8pgj z+E)+A-l$#A%kQE;!bc79CT-arz~bBmEi!7KRU)%aO6XXxxc9&xl- zSrs^Yiwjf^t}t?t0wEBlqYp@3(JQ=#5DuU#Plf3}kO+t|R*)DM9W{Va~MYJo+9NF+Nhi>=#x)GpvQdC#Q4ohNG5HoN$M6_e#HEazb#_ux(a( z*!AZ@%GAin!#oWuxBJLs0J%rRE{e@7=fPI$?H8X(t+h@`{YCSx(eFl!AhDNivhW{F zdS7*hKhm?29CFM8v$j#sE{!8V?w}`j;fwtlsR>onc=AApQ*x7F**VhC-V=?!ywvps z8)hPWqwz?pyU9x2FaYGf6lxT5o{GP;tOend`_bfcZ}M-2A6;U}I|TCj!=?%UirR&x zyiz3WZSD9c&MvUKqJQMlZ~jn^C`L5oF~e+Rdu~c?o7Uv)rf+&6Vc<3=kP6;2gcgK? z+zSsK!WX4snqfK5xw5?_`afU^J{Hx8dtwf2HdrD=>I;a}^sT*+XUYU%IR?b4Fe;Oq zb6&)24;sGBq!b^XoT?t$aG#nN{gEIJYcD~<$`7x3E#v~oWH!6pm$k2Gl_}lqO8itz zn`4o$GR``?%RTY*Zo%j`iuGfP*v%2M*x*QbmoQLOVh$P@{2ORv1nKW7zew$?%5#dP z?Y10SC>?tqlT&c+@WsfI`0d#Bkz76iUtskFcSlUz=YaqfnR^ep1qF9?jb|cd6Qd#$ z^fVogH^jAWWOPkFxBz3Wl--nNSFM`zUHteP2@H#byxNW`DEGe+UVwrlJ9ue+UkbL? z?UD}5b>ahnR9^v1wIuQO5wAj9)Ay0OCBYT+&MQUF6_ZDq)pU8p$q-M}Q9pSs7g1p)o0{8~{fXU5aI-Kai>RJs2CD|B(ZHVF&sWVgg)emxhni@CaA=T@}e&6;p19i!pw=lM~k!r{-{EoHLs zBP6TqLk=)0kY45JF|zOHSvjID=cx5wVy{X9PFT6??w(SvldYrC0XO2+Kw7 zF2I7+r<)r9!&8qP^1gje9!mp2!@2E0%Cm-+f6qu`ojO`E)95z_*a+rVK4b?^P*RB0 zIU5Pnf3?}nOvF`k%*E6?>F672g695s;Fi*zmRTRFwEgHXR=Iv+m>-qLPH$hmB?{lM zz4#UvDL8mlm2;81f;pZ6fNr-@m=wk>ZZX5mgj#U4F6}nmGEax}Hw8;yqesjZ`7-V- z2|q)zi|q}U68P4(Z|sQWg15cwEB%`nerxA-4@wMii(Y(G%B@-1A%Nt$9)7l1ew?7{32N1o78bm4SA(GCq=?Vf**m zmZ<#x;a>evNq|w7tP>Aa1b0Z~P1oer4Ko^=5?>GK)-T{$_X;93?qLn&TQXa$2B z|Lk}E!e)oNEWk?GBvi_DO#a+`pV(jOHYHz`mf3ejkABk*6*Bc`5J9zOuMW(rXQR#I zO0wMg8_HIOh67RjNH-3_d74vSbSv9yl-OP&*YpZ4!|!iv_IyBnBs~D9`tI%OgYd)6 zgE7LpPfzV9bRxXbAAYraDhy~j|N6m_l5WYaUWa10yr^PqN$$?YDG^h;b@aRqn#04I zv}JQIcF*SiqD@i?r}(?H@e<`4+l=1$vE`h9v(`)iocd$L8*xsrWI0TZ|6C|kA7Jv7 z=n~esv*v+Xt;WdA0h}^Jk4kWsX`|3yswE0iuf-sSv?jq$=lnEjN_91Y=*`bqSs(1! zVSG($oTx*eZNOqwHlAxlBv|xUZ)E$AIBXs7dDWHN@ix6Ewy?1W13f7UQmX;n`kZ+r z3B(>u0837i>-c{EFOg0EW>=2Ymj)_B*N#Iz@;c&A$(*9R|ZmV3B1ZqGY}vmO(^^nK+%_gqlMSn_Ds^HNtX zy)rjwLt@gOq^OwdPi9VB$0wekN@5IMy!1mrO7AU5sD^|sY`_P1TRdq3gP_&Uqud#t zQ>Y--=wE&X5R36DDR-ps_Y$@Wk;d)0xu8X{>Wv}OyWl;BdF*M_zCSv6*Q6pDgCo*-y@EXHGf*Q-}8ooXy@d3orK$D9!&ZN~8;e3y1CIYFJ zKbiKQg!cL$d0PfHcqO&e*W9e?^^tWmo)VE~7`fm*(@U+Jey+iWO%5~j(ra6j{Nc?3 zd8=K|SGC$lzogY)`pc5HbSDOLZEU=;YR~^3gxT|br<-|bLYR1eR}1xN+Ei;S!Q)5b zO0G-XC&eBP7(_)D##4KlK(HJ;Xu=B`_Hw<#sP28yE`D8C9PQfbd)J9O3K2ZeldP2v z5tBD`g&9ez{^_1$n;cK3ybn69$y+uIJgPUZiXZJORksLY&|YLj#5L(nbhH$3y}|6X zT1zHY$&FsLoGEnHcPu=n*d}f~BJA+dR7?&&pSN0Smns8WiceC_V`D6+8bW+eitby~ zDd-Z?%ja6gQ-oG9D)Eim zhM70h^K!88UQY>c4E>V8-5j5X*`4V)Mc`HP0++R-(xW*Mm7x}`9TpSoBV?`^@UgJ! zhsfaI@Y;P7QK10-Z7;Sbgo-D+=lB=_(L`z!a&O0rSztkyU3Fr z4MAP2GyjOft}@K`8~GF5mi^`%;BD4`?C*NLnn@K_YqvqSm?L5-9;exj3RS{wmVlM1 zc`0AKAU|thOdAP21EMv_{3t@w6?yM{DWD}q!>S`a-(nWd*TX*w-;QhiMeL_T4P!l`&|aKIg$NLH+? z6mh>##qan72*|v6Cr+k7fD4_O8Ff=*XU|@dDOj-VFBF~(h}Gh}8hlh&)*?&}44vH7 z-^r@x)HNqU#6iQItrjVIQ7=Mvw4bi@?uBbI+W|?s7FidcO(OS^K=|MPLj#{iV*yL{ WDt|&#&Yis}0CQt&Or@cF^nU@Uyb>4y diff --git a/src/Commands.ts b/src/Commands.ts deleted file mode 100644 index f09705f..0000000 --- a/src/Commands.ts +++ /dev/null @@ -1,69 +0,0 @@ -import * as vsc from "vscode"; -import * as ext from "./Extension"; -import * as xpath from "xpath"; -import { RangeUtil } from "./utils/RangeUtil"; -import { XmlFormatter } from "./services/XmlFormatter"; -import { XPathFeatureProvider } from "./providers/XPath"; -import { XQueryExecutionProvider } from "./providers/Execution"; -import { XmlFormattingEditProvider } from "./providers/Formatting"; - -const CFG_SECTION: string = "xmlTools"; -const CFG_REMOVE_COMMENTS: string = "removeCommentsOnMinify"; - -export class TextEditorCommands { - static minifyXml(editor: vsc.TextEditor, edit: vsc.TextEditorEdit): void { - let removeComments: boolean = vsc.workspace.getConfiguration(CFG_SECTION).get(CFG_REMOVE_COMMENTS, false); - - let range: vsc.Range = RangeUtil.getRangeForDocument(editor.document); - - let formatter: XmlFormatter = new XmlFormatter(); - let xml: string = formatter.minify(editor.document.getText()); - - edit.replace(range, xml); - } - - static evaluateXPath(editor: vsc.TextEditor, edit: vsc.TextEditorEdit): void { - XPathFeatureProvider.evaluateXPathAsync(editor, edit); - } - - static executeXQuery(editor: vsc.TextEditor, edit: vsc.TextEditorEdit): void { - XQueryExecutionProvider.executeXQueryAsync(editor); - } - - static formatAsXml(editor: vsc.TextEditor, edit: vsc.TextEditorEdit): void { - let edits: vsc.TextEdit[]; - let formattingEditProvider = new XmlFormattingEditProvider(); - let formattingOptions: vsc.FormattingOptions = { - insertSpaces: (editor.options.insertSpaces as boolean), - tabSize: (editor.options.tabSize as number) - }; - - // if the user has selected text, only format what is selected - // otherwise, attempt to format the entire document - if (!editor.selection.isEmpty) { - edits = formattingEditProvider.provideDocumentRangeFormattingEdits(editor.document, editor.selection, formattingOptions); - } - - else { - edits = formattingEditProvider.provideDocumentFormattingEdits(editor.document, formattingOptions); - } - - if (edits) { - for (let i = 0; i < edits.length; i++) { - editor.edit(async (editBuilder) => { - editBuilder.replace(edits[i].range, edits[i].newText); - - // wiggle the cursor to deselect the formatted XML (is there a non-hacky way to go about this?) - await vsc.commands.executeCommand("cursorMove", { - to: "left", - by: "character" - }); - await vsc.commands.executeCommand("cursorMove", { - to: "right", - by: "character" - }); - }); - } - } - } -} \ No newline at end of file diff --git a/src/Extension.ts b/src/Extension.ts deleted file mode 100644 index 2e600a9..0000000 --- a/src/Extension.ts +++ /dev/null @@ -1,76 +0,0 @@ -import * as vsc from "vscode"; -import { TextEditorCommands } from "./Commands"; -import { XmlFormattingEditProvider } from "./providers/Formatting"; -import { XQueryLintingFeatureProvider } from "./providers/Linting"; -import { XQueryCompletionItemProvider } from "./providers/Completion"; -import { XmlTreeViewDataProvider } from "./providers/XmlTreeView"; - -export var GlobalState: vsc.Memento; -export var WorkspaceState: vsc.Memento; - -const LANG_XML: string = "xml"; -const LANG_XSL: string = "xsl"; -const LANG_XQUERY: string = "xquery;" -const MEM_QUERY_HISTORY: string = "xpathQueryHistory"; - -export function activate(ctx: vsc.ExtensionContext) { - console.log("activate extension"); - // expose global and workspace state to the entire extension - GlobalState = ctx.globalState; - WorkspaceState = ctx.workspaceState; - - // register palette commands - ctx.subscriptions.push( - vsc.commands.registerTextEditorCommand("xmlTools.minifyXml", TextEditorCommands.minifyXml), - vsc.commands.registerTextEditorCommand("xmlTools.evaluateXPath", TextEditorCommands.evaluateXPath), - vsc.commands.registerTextEditorCommand("xmlTools.executeXQuery", TextEditorCommands.executeXQuery), - vsc.commands.registerTextEditorCommand("xmlTools.formatAsXml", TextEditorCommands.formatAsXml) - ); - - // register language feature providers - ctx.subscriptions.push( - vsc.languages.registerDocumentFormattingEditProvider([LANG_XML, LANG_XSL], new XmlFormattingEditProvider()), - vsc.languages.registerDocumentRangeFormattingEditProvider([LANG_XML, LANG_XSL], new XmlFormattingEditProvider()), - - vsc.languages.registerCompletionItemProvider(LANG_XQUERY, new XQueryCompletionItemProvider(), ":", "$") - ); - - // listen to editor events (for linting) - ctx.subscriptions.push( - vsc.window.onDidChangeActiveTextEditor(_handleChangeActiveTextEditor), - vsc.window.onDidChangeTextEditorSelection(_handleChangeTextEditorSelection) - ); - - // add views - ctx.subscriptions.push( - vsc.window.registerTreeDataProvider("xmlTreeView", new XmlTreeViewDataProvider(ctx)) - ); -} - -export function deactivate() { - // clean up xpath history - let memento: vsc.Memento = WorkspaceState || GlobalState; - let history = memento.get(MEM_QUERY_HISTORY, []); - history.splice(0); - memento.update(MEM_QUERY_HISTORY, history); -} - -function _handleContextChange(editor: vsc.TextEditor): void { - if (!editor || !editor.document) { - return; - } - - switch (editor.document.languageId) { - case "xquery": - XQueryLintingFeatureProvider.provideXQueryDiagnostics(editor); - break; - } -} - -function _handleChangeActiveTextEditor(editor: vsc.TextEditor): void { - _handleContextChange(editor); -} - -function _handleChangeTextEditorSelection(e: vsc.TextEditorSelectionChangeEvent): void { - _handleContextChange(e.textEditor); -} \ No newline at end of file diff --git a/src/providers/Completion.ts b/src/providers/Completion.ts deleted file mode 100644 index fcbad7c..0000000 --- a/src/providers/Completion.ts +++ /dev/null @@ -1,44 +0,0 @@ -import * as vsc from "vscode"; -import { XQueryCompleter, XQueryCompletionItem } from "../services/XQueryCompleter"; - -export class XQueryCompletionItemProvider implements vsc.CompletionItemProvider { - provideCompletionItems(document: vsc.TextDocument, position: vsc.Position): vsc.CompletionItem[] { - let items: vsc.CompletionItem[] = new Array(); - - let completer: XQueryCompleter = new XQueryCompleter(document.getText()); - let completions: XQueryCompletionItem[] = completer.getCompletions(position.line, position.character); - - completions.forEach((completion: XQueryCompletionItem) => { - let item: vsc.CompletionItem = new vsc.CompletionItem(completion.name); - item.insertText = completion.value; - - switch (completion.meta) { - // functions (always qualified with a colon) - case "function": - item.kind = vsc.CompletionItemKind.Function; - - let funcStart = (completion.value.indexOf(":") + 1); - let funcEnd = completion.value.indexOf("("); - - item.insertText = completion.value.substring(funcStart, funcEnd); - break; - - // variables and parameters (always qualified with a dollar sign) - case "Let binding": - case "Local variable": - case "Window variable": - case "Function parameter": - item.kind = vsc.CompletionItemKind.Variable; - item.insertText = completion.value.substring(1); - break; - - // everything else - default: item.kind = vsc.CompletionItemKind.Text; - } - - items.push(item); - }); - - return items; - } -} \ No newline at end of file diff --git a/src/providers/Execution.ts b/src/providers/Execution.ts deleted file mode 100644 index 1ac3dee..0000000 --- a/src/providers/Execution.ts +++ /dev/null @@ -1,127 +0,0 @@ -import * as vsc from "vscode"; -import { ChildProcess } from "../services/ChildProcess"; - -const CFG_SECTION: string = "xmlTools"; -const CFG_XQEXEC: string = "xqueryExecutionEngine"; -const CFG_XQARGS: string = "xqueryExecutionArguments"; - -export class XQueryExecutionProvider { - static async executeXQueryAsync(editor: vsc.TextEditor): Promise { - // this disposable will be used for creating status bar messages - let disposable: vsc.Disposable; - - if (editor.document.languageId !== "xquery") { - vsc.window.showErrorMessage("This action can only be performed on an XQuery file."); - return; - } - - let executable = vsc.workspace.getConfiguration(CFG_SECTION).get(CFG_XQEXEC, null); - let args = vsc.workspace.getConfiguration(CFG_SECTION).get(CFG_XQARGS, []); - - if (!executable || executable == "") { - let action = await vsc.window.showWarningMessage("An XQuery execution engine has not been defined.", "Define Now"); - - if (action == "Define Now") { - vsc.commands.executeCommand("workbench.action.openGlobalSettings"); - } - - return; - } - - let inputFile: vsc.Uri; - disposable = vsc.window.setStatusBarMessage("Searching for XML files in folder..."); - let files: vsc.Uri[] = await vsc.workspace.findFiles("**/*.xml", "", 100); - disposable.dispose(); - - // user does not have a folder open - prompt for file name - if (typeof files === "undefined") { - vsc.window.showErrorMessage("You must have a folder opened in VS Code to use this feature."); - return; - } - - // if there is only one XML file, default it - // otherwise, prompt the user to select one from the open folder - if (files.length > 1) { - let qpItems: any[] = new Array(); - - files.forEach((file) => { - let filename: string = file.fsPath.replace("\\", "/"); - - qpItems.push({ // must implement vscode.QuickPickItem - label: filename.substring(filename.lastIndexOf("/") + 1), - description: file.fsPath, - file: file - }); - }); - - let selection = await vsc.window.showQuickPick(qpItems, { placeHolder: "Please select an input file." }); - - if (!selection) { - return; - } - - inputFile = selection.file; - } - - else { - inputFile = files[0]; - } - - // prompt for output file name - let outputPath: string = null; - let outputPathPos: number = -1; - - for (let i = 0; i < args.length; i++) { - if (i > 0) { - if (args[i - 1].search(/out|result/)) { - outputPath = args[i]; - outputPathPos = i; - } - } - } - - if (outputPath) { - outputPath = await vsc.window.showInputBox({ - placeHolder: "ex. C:\\TEMP\XQueryOutput\\MyOutputFile.xml", - prompt: "Please specify the output file path. Existing file behavior is determined by the execution engine you have specified.", - value: outputPath - }); - - args[outputPathPos] = outputPath; - } - - // call out to the execution engine - disposable = vsc.window.setStatusBarMessage("Executing XQuery Script..."); - args = args.map((value: string) => { - return value - .replace("$(script)", editor.document.uri.fsPath) - .replace("$(input)", inputFile.fsPath) - .replace("$(project)", vsc.workspace.rootPath); - }); - - try { - await ChildProcess.spawnAsync(executable, args); - } - - catch (error) { - if (error.message.search(/[Ll]ine:?\s*\d+/gm) > -1) { - let match: RegExpExecArray = /[Ll]ine:?\s*\d+/gm.exec(error.message); - let line: number = (Number.parseInt(match[0].replace(/([Ll]ine:?\s*)|\s/, "")) - 1); - - let selection: string = await vsc.window.showErrorMessage(error.message, `Go to Line ${line}`); - - if (selection == `Go to Line ${line}`) { - editor.revealRange(new vsc.Range(line, 0, line, 0)); - } - } - - else { - vsc.window.showErrorMessage(error.message); - } - } - - finally { - disposable.dispose(); - } - } -} \ No newline at end of file diff --git a/src/providers/Formatting.ts b/src/providers/Formatting.ts deleted file mode 100644 index 5bc3faf..0000000 --- a/src/providers/Formatting.ts +++ /dev/null @@ -1,33 +0,0 @@ -import * as vsc from "vscode"; -import { RangeUtil } from "../utils/RangeUtil"; -import { XmlFormatter, IXmlFormatterOptions } from "../services/XmlFormatter"; - -const CFG_SECTION: string = "xmlTools"; -const CFG_SPLIT_NAMESPACES: string = "splitXmlnsOnFormat"; - -export class XmlFormattingEditProvider implements vsc.DocumentFormattingEditProvider, vsc.DocumentRangeFormattingEditProvider { - provideDocumentFormattingEdits(document: vsc.TextDocument, options: vsc.FormattingOptions): vsc.TextEdit[] { - let range = RangeUtil.getRangeForDocument(document); - - return this._provideFormattingEdits(document, range, options); - } - - provideDocumentRangeFormattingEdits(document: vsc.TextDocument, range: vsc.Range, options: vsc.FormattingOptions): vsc.TextEdit[] { - return this._provideFormattingEdits(document, range, options); - } - - private _provideFormattingEdits(document: vsc.TextDocument, range: vsc.Range, options: vsc.FormattingOptions): vsc.TextEdit[] { - let splitNamespaces: boolean = vsc.workspace.getConfiguration(CFG_SECTION).get(CFG_SPLIT_NAMESPACES, true); - - let formatterOptions: IXmlFormatterOptions = { - preferSpaces: options.insertSpaces, - tabSize: options.tabSize, - splitNamespaces: splitNamespaces - }; - - let formatter = new XmlFormatter(formatterOptions); - let xml = formatter.format(document.getText(range)); - - return [ vsc.TextEdit.replace(range, xml) ]; - } -} \ No newline at end of file diff --git a/src/providers/Linting.ts b/src/providers/Linting.ts deleted file mode 100644 index 2658554..0000000 --- a/src/providers/Linting.ts +++ /dev/null @@ -1,32 +0,0 @@ -import * as vsc from "vscode"; -import { XQueryLinter, XQueryDiagnostic } from "../services/XQueryLinter"; - -export class XQueryLintingFeatureProvider { - private static _coreDiagnostics: vsc.DiagnosticCollection; - - static get coreDiagnostics(): vsc.DiagnosticCollection { - if (!XQueryLintingFeatureProvider._coreDiagnostics) { - XQueryLintingFeatureProvider._coreDiagnostics = vsc.languages.createDiagnosticCollection("XQueryDiagnostics"); - } - - return XQueryLintingFeatureProvider._coreDiagnostics; - } - - static provideXQueryDiagnostics(editor: vsc.TextEditor): void { - let diagnostics: vsc.Diagnostic[] = new Array(); - let xqDiagnostics: XQueryDiagnostic[] = XQueryLinter.lint(editor.document.getText()); - - xqDiagnostics.forEach((xqd: XQueryDiagnostic) => { - let vSeverity: vsc.DiagnosticSeverity = (xqd.severity == 1) ? vsc.DiagnosticSeverity.Warning : vsc.DiagnosticSeverity.Error; - - let startPos: vsc.Position = new vsc.Position(xqd.startLine, xqd.startColumn); - let endPos: vsc.Position = new vsc.Position(xqd.endLine, xqd.endColumn); - let range: vsc.Range = new vsc.Range(startPos, endPos); - let diagnostic: vsc.Diagnostic = new vsc.Diagnostic(range, xqd.message, vSeverity); - - diagnostics.push(diagnostic); - }); - - XQueryLintingFeatureProvider.coreDiagnostics.set(editor.document.uri, diagnostics); - } -} \ No newline at end of file diff --git a/src/providers/XPath.ts b/src/providers/XPath.ts deleted file mode 100644 index b5ddd5e..0000000 --- a/src/providers/XPath.ts +++ /dev/null @@ -1,120 +0,0 @@ -import * as vsc from "vscode"; -import * as ext from "../Extension"; -import { XPathEvaluator, EvaluatorResult, EvaluatorResultType } from "../services/XPathEvaluator"; - -const CFG_SECTION: string = "xmlTools"; -const CFG_PERSIST_QUERY: string = "persistXPathQuery"; -const CFG_IGNORE_DEFAULT_XMLNS: string = "ignoreDefaultNamespace"; -const MEM_QUERY_HISTORY: string = "xpathQueryHistory"; -const MEM_QUERY_LAST: string = "xPathQueryLast"; -const OUTPUT_CHANNEL: string = "XPath Results"; - -export class XPathFeatureProvider { - static async evaluateXPathAsync(editor: vsc.TextEditor, edit: vsc.TextEditorEdit): Promise { - // if there is no workspace, we will track queries in the global Memento - let memento: vsc.Memento = ext.WorkspaceState || ext.GlobalState; - - // get the xpath persistence setting - let persistQueries: boolean = vsc.workspace.getConfiguration(CFG_SECTION).get(CFG_PERSIST_QUERY, true); - - // get the last query if there is one for this document - // if not, try pulling the last query ran, regardless of document - // NOTE: if the user has focus on the output channel when opening the xquery prompt, the channel is the "active" document - let history: HistoricQuery[] = memento.get(MEM_QUERY_HISTORY, new Array()); - let globalLastQuery: string = memento.get(MEM_QUERY_LAST, ""); - - let lastQuery: HistoricQuery = history.find((item: HistoricQuery) => { - if (item.uri == editor.document.uri.toString()) { - return true; - } - - return false; - }); - - // set the inital display value and prompt the user - let query: string = ""; - - if (persistQueries) { - if (lastQuery) { - query = lastQuery.query; - } - - else { - query = globalLastQuery; - } - } - - query = await vsc.window.showInputBox({ - placeHolder: "XPath Query", - prompt: "Please enter an XPath query to evaluate.", - value: query - }); - - // showInputBox() will return undefined if the user dimissed the prompt - if (query) { - - let ignoreDefaultNamespace: boolean = vsc.workspace.getConfiguration(CFG_SECTION).get(CFG_IGNORE_DEFAULT_XMLNS, true); - - // run the query - let xml: string = editor.document.getText(); - let evalResult: EvaluatorResult; - - try { - evalResult = XPathEvaluator.evaluate(query, xml, ignoreDefaultNamespace); - } - catch (error) { - console.error(error); - vsc.window.showErrorMessage(`Something went wrong while evaluating the XPath: ${error}`); - return; - } - - // show the results to the user - let outputChannel: vsc.OutputChannel = vsc.window.createOutputChannel(OUTPUT_CHANNEL); - outputChannel.clear(); - - outputChannel.appendLine(`XPath Query: ${query}`); - outputChannel.append("\n"); - - if (evalResult.type === EvaluatorResultType.NODE_COLLECTION) { - (evalResult.result as Node[]).forEach((node: XmlNode) => { - outputChannel.appendLine(`[Line ${node.lineNumber}] ${node.localName}: ${node.textContent}`); - }); - } else { - outputChannel.appendLine(`[Result]: ${evalResult.result}`); - } - outputChannel.show(vsc.ViewColumn.Three); - - // if persistence is enabled, save the query for later - if (persistQueries) { - lastQuery = new HistoricQuery(editor.document.uri.toString(), query); - - let affectedIndex: number = -1; - history = history.map((item: HistoricQuery, index: number) => { - if (item.uri == lastQuery.uri) { - item.query = query; - affectedIndex = index; - } - - return item; - }); - - if (affectedIndex == -1) { - history.push(lastQuery); - } - - memento.update(MEM_QUERY_HISTORY, history); - memento.update(MEM_QUERY_LAST, query); - } - } - } -} - -class HistoricQuery { - constructor(uri: string, query: string) { - this.uri = uri; - this.query = query; - } - - uri: string; - query: string; -} \ No newline at end of file diff --git a/src/providers/XmlTreeView.ts b/src/providers/XmlTreeView.ts deleted file mode 100644 index ed084e1..0000000 --- a/src/providers/XmlTreeView.ts +++ /dev/null @@ -1,128 +0,0 @@ -import * as vsc from "vscode"; -import * as path from "path"; - -let DOMParser = require("xmldom").DOMParser; - -export class XmlTreeViewDataProvider implements vsc.TreeDataProvider { - private _onDidChangeTreeData: vsc.EventEmitter = new vsc.EventEmitter(); - private _xmlDocument: Document; - - constructor(private _context: vsc.ExtensionContext) { - vsc.window.onDidChangeActiveTextEditor((editor) => { - this._refreshTree(); - }); - - vsc.workspace.onDidChangeTextDocument((e) => { - this._refreshTree(); - }); - } - - readonly onDidChangeTreeData: vsc.Event = this._onDidChangeTreeData.event; - - get activeEditor(): vsc.TextEditor | null { - return vsc.window.activeTextEditor || null; - } - - getChildren(element?: Node): Node[] { - if (!this._xmlDocument) { - this._refreshTree(); - } - - if (element) { - return [].concat(this._getChildAttributeArray(element), this._getChildElementArray(element)); - } - - else if (this._xmlDocument) { - return [ this._xmlDocument.lastChild ]; - } - - else { - return []; - } - } - - getTreeItem(element: Node): vsc.TreeItem { - let treeItem = new vsc.TreeItem(element.localName); - - if (this._getChildAttributeArray(element).length > 0) { - treeItem.collapsibleState = vsc.TreeItemCollapsibleState.Collapsed; - } - - if (this._getChildElementArray(element).length > 0) { - treeItem.collapsibleState = vsc.TreeItemCollapsibleState.Collapsed; - } - - treeItem.command = { - command: "revealLine", - title: "", - arguments: [{ - lineNumber: (element as any).lineNumber - 1, - at: "top" - }] - }; - - treeItem.iconPath = this._getIcon(element); - - return treeItem; - } - - private _getChildAttributeArray(node: Node): Node[] { - if (!node.attributes) { - return []; - } - - let array = new Array(); - - for (let i = 0; i < node.attributes.length; i++) { - array.push(node.attributes[i]); - } - - return array; - } - - private _getChildElementArray(node: Node): Node[] { - if (!node.childNodes) { - return []; - } - - let array = new Array(); - - for (let i = 0; i < node.childNodes.length; i++) { - let child = node.childNodes[i]; - - if ((child as any).tagName) { - array.push(child); - } - } - - return array; - } - - private _getIcon(element: Node): any { - let type = "element"; - - if (!(element as any).tagName) { - type = "attribute"; - } - - let icon = { - dark: this._context.asAbsolutePath(path.join("resources", "icons", `${type}.dark.svg`)), - light: this._context.asAbsolutePath(path.join("resources", "icons", `${type}.light.svg`)) - }; - - return icon; - } - - private _refreshTree(): void { - if (!this.activeEditor || this.activeEditor.document.languageId !== "xml") { - this._xmlDocument = null; - this._onDidChangeTreeData.fire(); - return; - } - - let xml = this.activeEditor.document.getText(); - this._xmlDocument = new DOMParser().parseFromString(xml, "text/xml"); - - this._onDidChangeTreeData.fire(); - } -} \ No newline at end of file diff --git a/src/services/ChildProcess.ts b/src/services/ChildProcess.ts deleted file mode 100644 index 53257eb..0000000 --- a/src/services/ChildProcess.ts +++ /dev/null @@ -1,30 +0,0 @@ -let child_process = require("child_process"); - -export class ChildProcess { - static async spawnAsync(executable: string, args: string[]): Promise { - return new Promise((resolve, reject) => { - - let output: string = ""; - let handle = child_process.spawn(executable, args); - - handle.stdout.on("data", (data: string) => { - output += data; - }); - - handle.stderr.on("data", (data: string) => { - output += data; - }); - - handle.on("close", (code: string) => { - if (code == "0") { - resolve(); - } - - else { - reject({ code: code, message: output }); - } - }); - - }); - } -} \ No newline at end of file diff --git a/src/services/XPathEvaluator.ts b/src/services/XPathEvaluator.ts deleted file mode 100644 index c67ee58..0000000 --- a/src/services/XPathEvaluator.ts +++ /dev/null @@ -1,63 +0,0 @@ -import * as xpath from "xpath"; - -let DOMParser = require("xmldom").DOMParser; - -export class EvaluatorResult { - type: EvaluatorResultType; - result: Node[]|number|string|boolean; -} - -export class EvaluatorResultType { - static SCALAR_TYPE: number = 0; - static NODE_COLLECTION: number = 1; -} - -export class XPathEvaluator { - static evaluate(query: string, xml: string, ignoreDefaultNamespace: boolean): EvaluatorResult { - if (ignoreDefaultNamespace) { - xml = xml.replace(/xmlns=".+"/g, (match: string) => { - return match.replace(/xmlns/g, "xmlns:default"); - }); - } - - let nodes: Node[] = new Array(); - - let xdoc: Document = new DOMParser().parseFromString(xml, "text/xml"); - - let resolver: xpath.XPathNSResolver = xpath.createNSResolver(xdoc); - let result: xpath.XPathResult = xpath.evaluate( - query, // xpathExpression - xdoc, // contextNode - resolver, // namespaceResolver - xpath.XPathResult.ANY_TYPE, // resultType - null // result - ) - - let evalResult = new EvaluatorResult(); - evalResult.type = EvaluatorResultType.SCALAR_TYPE; - - switch(result.resultType) { - case xpath.XPathResult.NUMBER_TYPE: - evalResult.result = result.numberValue; - break; - case xpath.XPathResult.STRING_TYPE: - evalResult.result = result.stringValue; - break; - case xpath.XPathResult.BOOLEAN_TYPE: - evalResult.result = result.booleanValue; - break; - case xpath.XPathResult.UNORDERED_NODE_ITERATOR_TYPE: - case xpath.XPathResult.ORDERED_NODE_ITERATOR_TYPE: - evalResult.result = result.booleanValue; - let node: Node; - while (node = result.iterateNext()) { - nodes.push(node); - } - evalResult.result = nodes; - evalResult.type = EvaluatorResultType.NODE_COLLECTION; - break; - } - - return evalResult; - } -} \ No newline at end of file diff --git a/src/services/XQueryCompleter.ts b/src/services/XQueryCompleter.ts deleted file mode 100644 index 463f864..0000000 --- a/src/services/XQueryCompleter.ts +++ /dev/null @@ -1,41 +0,0 @@ -let XQLint = require("xqlint").XQLint; - -export class XQueryCompleter { - constructor(script: string) { - this.script = script; - } - - private _script: string; - private _linter: any; - - get script(): string { - return this._script; - } - - set script(value: string) { - this._script = value; - this._linter = new XQLint(this._script); - } - - getCompletions(line: number, column: number): XQueryCompletionItem[] { - let items: XQueryCompletionItem[] = new Array(); - - this._linter.getCompletions({line: line, col: column}).forEach((completion: any) => { - items.push(new XQueryCompletionItem(completion.name, completion.value, completion.meta)); - }); - - return items; - } -} - -export class XQueryCompletionItem { - constructor(name: string, value: string, meta: string) { - this.name = name; - this.value = value; - this.meta = meta; - } - - name: string; - value: string; - meta: string; -} \ No newline at end of file diff --git a/src/services/XQueryLinter.ts b/src/services/XQueryLinter.ts deleted file mode 100644 index b893a0e..0000000 --- a/src/services/XQueryLinter.ts +++ /dev/null @@ -1,39 +0,0 @@ -let XQLint = require("xqlint").XQLint; - -export class XQueryLinter { - static SEVERITY_WARNING: number = 1; - static SEVERITY_ERROR: number = 2; - - static lint(text: string): XQueryDiagnostic[] { - let linter = new XQLint(text); - let diagnostics: XQueryDiagnostic[] = new Array(); - - linter.getErrors().forEach((error: any) => { - diagnostics.push(new XQueryDiagnostic(XQueryLinter.SEVERITY_ERROR, error.message, error.pos.sl, error.pos.sc, error.pos.el, error.pos.ec)); - }); - - linter.getWarnings().forEach((warning: any) => { - diagnostics.push(new XQueryDiagnostic(XQueryLinter.SEVERITY_WARNING, warning.message, warning.pos.sl, warning.pos.sc, warning.pos.el, warning.pos.ec)); - }); - - return diagnostics; - } -} - -export class XQueryDiagnostic { - constructor(severity: number, message: string, startLine: number, startColumn: number, endLine: number, endColumn: number) { - this.severity = severity; - this.message = message; - this.startLine = startLine; - this.startColumn = startColumn; - this.endLine = endLine; - this.endColumn = endColumn; - } - - severity: number; - message: string; - startLine: number; - startColumn: number; - endLine: number; - endColumn: number; -} \ No newline at end of file diff --git a/src/services/XmlFormatter.ts b/src/services/XmlFormatter.ts deleted file mode 100644 index f92692c..0000000 --- a/src/services/XmlFormatter.ts +++ /dev/null @@ -1,192 +0,0 @@ -// Based on pretty-data (https://github.com/vkiryukhin/pretty-data) -export class XmlFormatter { - constructor(options?: IXmlFormatterOptions) { - options = options || {}; - - if (typeof options.preferSpaces === "undefined") { - options.preferSpaces = false; - } - - if (typeof options.splitNamespaces === "undefined") { - options.splitNamespaces = true; - } - - options.tabSize = options.tabSize || 4; - options.newLine = options.newLine || "\n"; - - this.newLine = options.newLine || "\n"; - this.indentPattern = (options.preferSpaces) ? " ".repeat(options.tabSize) : "\t"; - this.splitNamespaces = options.splitNamespaces; - } - - newLine: string; - indentPattern: string; - splitNamespaces: boolean; - - format(xml: string): string { - xml = this.minify(xml, false); - xml = xml.replace(/ -1) { - output += this._getIndent(level, parts[i]); - inComment = true; - - // end /) > -1 || parts[i].search(/\]>/) > -1 || parts[i].search(/!DOCTYPE/) > -1) { - inComment = false; - } - } - - // end /) > -1 || parts[i].search(/\]>/) > -1) { - output += parts[i]; - inComment = false; - } - - // - else if (/^<(\w|:)/.test(parts[i - 1]) && /^<\/(\w|:)/.test(parts[i]) - && /^<[\w:\-\.\,\/]+/.exec(parts[i - 1])[0] == /^<\/[\w:\-\.\,]+/.exec(parts[i])[0].replace("/", "")) { - - output += parts[i]; - if (!inComment) level--; - } - - // - else if (parts[i].search(/<(\w|:)/) > -1 && parts[i].search(/<\//) == -1 && parts[i].search(/\/>/) == -1) { - output = (!inComment) ? output += this._getIndent(level++, parts[i]) : output += parts[i]; - } - - // ... - else if (parts[i].search(/<(\w|:)/) > -1 && parts[i].search(/<\//) > -1) { - output = (!inComment) ? output += this._getIndent(level, parts[i]) : output += parts[i]; - } - - // - else if (parts[i].search(/<\//) > -1) { - output = (!inComment) ? output += this._getIndent(--level, parts[i]) : output += parts[i]; - } - - // - else if (parts[i].search(/\/>/) > -1 && (!this.splitNamespaces || parts[i].search(/xmlns(:|=)/) == -1)) { - output = (!inComment) ? output += this._getIndent(level, parts[i]) : output += parts[i]; - } - - // xmlns /> - else if (parts[i].search(/\/>/) > -1 && parts[i].search(/xmlns(:|=)/) > -1 && this.splitNamespaces) { - output = (!inComment) ? output += this._getIndent(level--, parts[i]) : output += parts[i]; - } - - // - else if (parts[i].search(/<\?/) > -1) { - output += this._getIndent(level, parts[i]); - } - - // xmlns - else if (this.splitNamespaces && (parts[i].search(/xmlns\:/) > -1 || parts[i].search(/xmlns\=/) > -1)) { - output += this._getIndent(level, parts[i]); - } - - else { - output += parts[i]; - } - } - - // remove leading newline - if (output[0] == this.newLine) { - output = output.slice(1); - } - - else if (output.substring(0, 1) == this.newLine) { - output = output.slice(2); - } - - return output; - } - - minify(xml: string, removeComments?: boolean): string { - if (typeof removeComments === "undefined") { - removeComments = false; - } - - xml = this._stripLineBreaks(xml); // all line breaks outside of CDATA elements - xml = (removeComments) ? xml.replace(/\/g, "") : xml; - xml = xml.replace(/>\s{0,}<"); // insignificant whitespace between tags - xml = xml.replace(/"\s+(?=[^\s]+=)/g, "\" "); // spaces between attributes - xml = xml.replace(/"\s+(?=>)/g, "\""); // spaces between the last attribute and tag close (>) - xml = xml.replace(/"\s+(?=\/>)/g, "\" "); // spaces between the last attribute and tag close (/>) - xml = xml.replace(/[^ <>="]\s+[^ <>="]+=/g, (match: string) => { // spaces between the node name and the first attribute - return match.replace(/\s+/g, " "); - }); - - return xml; - } - - private _getIndent(level: number, trailingValue?: string): string { - trailingValue = trailingValue || ""; - - return `${this.newLine}${this.indentPattern.repeat(level)}${trailingValue}`; - } - - private _stripLineBreaks(xml: string): string { - let output: string = ""; - let inTag: boolean = false; - let inTagName: boolean = false; - let inCdata: boolean = false; - let inAttribute: boolean = false; - - for (let i = 0; i < xml.length; i++) { - let char: string = xml.charAt(i); - let prev: string = xml.charAt(i - 1); - let next: string = xml.charAt(i + 1); - - if (char == "!" && (xml.substr(i, 8) == "![CDATA[" || xml.substr(i, 3) == "!--")) { - inCdata = true; - } - - else if (char == "]" && (xml.substr(i, 3) == "]]>")) { - inCdata = false; - } - - else if (char == "-" && (xml.substr(i, 3) == "-->")) { - inCdata = false; - } - - else if (char.search(/[\r\n]/g) > -1 && !inCdata) { - if (/\r/.test(char) && /\S|\r|\n/.test(prev) && /\S|\r|\n/.test(xml.charAt(i + this.newLine.length))) { - output += char; - } - - else if (/\n/.test(char) && /\S|\r|\n/.test(xml.charAt(i - this.newLine.length)) && /\S|\r|\n/.test(next)) { - output += char; - } - - continue; - } - - output += char; - } - - return output; - } -} - -export interface IXmlFormatterOptions { - preferSpaces?: boolean; - tabSize?: number; - newLine?: string; - splitNamespaces?: boolean; -} \ No newline at end of file diff --git a/src/utils/RangeUtil.ts b/src/utils/RangeUtil.ts deleted file mode 100644 index b51b412..0000000 --- a/src/utils/RangeUtil.ts +++ /dev/null @@ -1,11 +0,0 @@ -import * as vsc from "vscode"; - -export class RangeUtil { - static getRangeForDocument(document: vsc.TextDocument): vsc.Range { - let lastLineIndex = (document.lineCount - 1); - let range = new vsc.Range(new vsc.Position(0, 0), new vsc.Position(lastLineIndex, Number.MAX_VALUE)); - - range = document.validateRange(range); - return range; - } -} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 86070fc..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "compilerOptions": { - "module": "commonjs", - "moduleResolution": "node", - "noImplicitAny": true, - "removeComments": true, - "target": "es6" - }, - - "exclude": [ - "node_modules" - ] -} \ No newline at end of file diff --git a/typings/node/node.d.ts b/typings/node/node.d.ts deleted file mode 100644 index 3cd67ca..0000000 --- a/typings/node/node.d.ts +++ /dev/null @@ -1,2088 +0,0 @@ -// Type definitions for Node.js v4.x -// Project: http://nodejs.org/ -// Definitions by: Microsoft TypeScript , DefinitelyTyped -// Definitions: https://github.com/borisyankov/DefinitelyTyped - -/************************************************ -* * -* Node.js v4.x API * -* * -************************************************/ - -interface Error { - stack?: string; -} - - -// compat for TypeScript 1.5.3 -// if you use with --target es3 or --target es5 and use below definitions, -// use the lib.es6.d.ts that is bundled with TypeScript 1.5.3. -interface MapConstructor {} -interface WeakMapConstructor {} -interface SetConstructor {} -interface WeakSetConstructor {} - -/************************************************ -* * -* GLOBAL * -* * -************************************************/ -declare var process: NodeJS.Process; -declare var global: NodeJS.Global; - -declare var __filename: string; -declare var __dirname: string; - -declare function setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timer; -declare function clearTimeout(timeoutId: NodeJS.Timer): void; -declare function setInterval(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timer; -declare function clearInterval(intervalId: NodeJS.Timer): void; -declare function setImmediate(callback: (...args: any[]) => void, ...args: any[]): any; -declare function clearImmediate(immediateId: any): void; - -interface NodeRequireFunction { - (id: string): any; -} - -interface NodeRequire extends NodeRequireFunction { - resolve(id:string): string; - cache: any; - extensions: any; - main: any; -} - -declare var require: NodeRequire; - -interface NodeModule { - exports: any; - require: NodeRequireFunction; - id: string; - filename: string; - loaded: boolean; - parent: any; - children: any[]; -} - -declare var module: NodeModule; - -// Same as module.exports -declare var exports: any; -declare var SlowBuffer: { - new (str: string, encoding?: string): Buffer; - new (size: number): Buffer; - new (size: Uint8Array): Buffer; - new (array: any[]): Buffer; - prototype: Buffer; - isBuffer(obj: any): boolean; - byteLength(string: string, encoding?: string): number; - concat(list: Buffer[], totalLength?: number): Buffer; -}; - - -// Buffer class -interface Buffer extends NodeBuffer {} - -/** - * Raw data is stored in instances of the Buffer class. - * A Buffer is similar to an array of integers but corresponds to a raw memory allocation outside the V8 heap. A Buffer cannot be resized. - * Valid string encodings: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' - */ -declare var Buffer: { - /** - * Allocates a new buffer containing the given {str}. - * - * @param str String to store in buffer. - * @param encoding encoding to use, optional. Default is 'utf8' - */ - new (str: string, encoding?: string): Buffer; - /** - * Allocates a new buffer of {size} octets. - * - * @param size count of octets to allocate. - */ - new (size: number): Buffer; - /** - * Allocates a new buffer containing the given {array} of octets. - * - * @param array The octets to store. - */ - new (array: Uint8Array): Buffer; - /** - * Allocates a new buffer containing the given {array} of octets. - * - * @param array The octets to store. - */ - new (array: any[]): Buffer; - prototype: Buffer; - /** - * Returns true if {obj} is a Buffer - * - * @param obj object to test. - */ - isBuffer(obj: any): obj is Buffer; - /** - * Returns true if {encoding} is a valid encoding argument. - * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' - * - * @param encoding string to test. - */ - isEncoding(encoding: string): boolean; - /** - * Gives the actual byte length of a string. encoding defaults to 'utf8'. - * This is not the same as String.prototype.length since that returns the number of characters in a string. - * - * @param string string to test. - * @param encoding encoding used to evaluate (defaults to 'utf8') - */ - byteLength(string: string, encoding?: string): number; - /** - * Returns a buffer which is the result of concatenating all the buffers in the list together. - * - * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer. - * If the list has exactly one item, then the first item of the list is returned. - * If the list has more than one item, then a new Buffer is created. - * - * @param list An array of Buffer objects to concatenate - * @param totalLength Total length of the buffers when concatenated. - * If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly. - */ - concat(list: Buffer[], totalLength?: number): Buffer; - /** - * The same as buf1.compare(buf2). - */ - compare(buf1: Buffer, buf2: Buffer): number; -}; - -/************************************************ -* * -* GLOBAL INTERFACES * -* * -************************************************/ -declare module NodeJS { - export interface ErrnoException extends Error { - errno?: number; - code?: string; - path?: string; - syscall?: string; - stack?: string; - } - - export interface EventEmitter { - addListener(event: string, listener: Function): EventEmitter; - on(event: string, listener: Function): EventEmitter; - once(event: string, listener: Function): EventEmitter; - removeListener(event: string, listener: Function): EventEmitter; - removeAllListeners(event?: string): EventEmitter; - setMaxListeners(n: number): void; - listeners(event: string): Function[]; - emit(event: string, ...args: any[]): boolean; - } - - export interface ReadableStream extends EventEmitter { - readable: boolean; - read(size?: number): string|Buffer; - setEncoding(encoding: string): void; - pause(): void; - resume(): void; - pipe(destination: T, options?: { end?: boolean; }): T; - unpipe(destination?: T): void; - unshift(chunk: string): void; - unshift(chunk: Buffer): void; - wrap(oldStream: ReadableStream): ReadableStream; - } - - export interface WritableStream extends EventEmitter { - writable: boolean; - write(buffer: Buffer|string, cb?: Function): boolean; - write(str: string, encoding?: string, cb?: Function): boolean; - end(): void; - end(buffer: Buffer, cb?: Function): void; - end(str: string, cb?: Function): void; - end(str: string, encoding?: string, cb?: Function): void; - } - - export interface ReadWriteStream extends ReadableStream, WritableStream {} - - export interface Process extends EventEmitter { - stdout: WritableStream; - stderr: WritableStream; - stdin: ReadableStream; - argv: string[]; - execPath: string; - abort(): void; - chdir(directory: string): void; - cwd(): string; - env: any; - exit(code?: number): void; - getgid(): number; - setgid(id: number): void; - setgid(id: string): void; - getuid(): number; - setuid(id: number): void; - setuid(id: string): void; - version: string; - versions: { - http_parser: string; - node: string; - v8: string; - ares: string; - uv: string; - zlib: string; - openssl: string; - }; - config: { - target_defaults: { - cflags: any[]; - default_configuration: string; - defines: string[]; - include_dirs: string[]; - libraries: string[]; - }; - variables: { - clang: number; - host_arch: string; - node_install_npm: boolean; - node_install_waf: boolean; - node_prefix: string; - node_shared_openssl: boolean; - node_shared_v8: boolean; - node_shared_zlib: boolean; - node_use_dtrace: boolean; - node_use_etw: boolean; - node_use_openssl: boolean; - target_arch: string; - v8_no_strict_aliasing: number; - v8_use_snapshot: boolean; - visibility: string; - }; - }; - kill(pid: number, signal?: string): void; - pid: number; - title: string; - arch: string; - platform: string; - memoryUsage(): { rss: number; heapTotal: number; heapUsed: number; }; - nextTick(callback: Function): void; - umask(mask?: number): number; - uptime(): number; - hrtime(time?:number[]): number[]; - - // Worker - send?(message: any, sendHandle?: any): void; - } - - export interface Global { - Array: typeof Array; - ArrayBuffer: typeof ArrayBuffer; - Boolean: typeof Boolean; - Buffer: typeof Buffer; - DataView: typeof DataView; - Date: typeof Date; - Error: typeof Error; - EvalError: typeof EvalError; - Float32Array: typeof Float32Array; - Float64Array: typeof Float64Array; - Function: typeof Function; - GLOBAL: Global; - Infinity: typeof Infinity; - Int16Array: typeof Int16Array; - Int32Array: typeof Int32Array; - Int8Array: typeof Int8Array; - Intl: typeof Intl; - JSON: typeof JSON; - Map: MapConstructor; - Math: typeof Math; - NaN: typeof NaN; - Number: typeof Number; - Object: typeof Object; - Promise: Function; - RangeError: typeof RangeError; - ReferenceError: typeof ReferenceError; - RegExp: typeof RegExp; - Set: SetConstructor; - String: typeof String; - Symbol: Function; - SyntaxError: typeof SyntaxError; - TypeError: typeof TypeError; - URIError: typeof URIError; - Uint16Array: typeof Uint16Array; - Uint32Array: typeof Uint32Array; - Uint8Array: typeof Uint8Array; - Uint8ClampedArray: Function; - WeakMap: WeakMapConstructor; - WeakSet: WeakSetConstructor; - clearImmediate: (immediateId: any) => void; - clearInterval: (intervalId: NodeJS.Timer) => void; - clearTimeout: (timeoutId: NodeJS.Timer) => void; - console: typeof console; - decodeURI: typeof decodeURI; - decodeURIComponent: typeof decodeURIComponent; - encodeURI: typeof encodeURI; - encodeURIComponent: typeof encodeURIComponent; - escape: (str: string) => string; - eval: typeof eval; - global: Global; - isFinite: typeof isFinite; - isNaN: typeof isNaN; - parseFloat: typeof parseFloat; - parseInt: typeof parseInt; - process: Process; - root: Global; - setImmediate: (callback: (...args: any[]) => void, ...args: any[]) => any; - setInterval: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => NodeJS.Timer; - setTimeout: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => NodeJS.Timer; - undefined: typeof undefined; - unescape: (str: string) => string; - gc: () => void; - v8debug?: any; - } - - export interface Timer { - ref() : void; - unref() : void; - } -} - -/** - * @deprecated - */ -interface NodeBuffer { - [index: number]: number; - write(string: string, offset?: number, length?: number, encoding?: string): number; - toString(encoding?: string, start?: number, end?: number): string; - toJSON(): any; - length: number; - equals(otherBuffer: Buffer): boolean; - compare(otherBuffer: Buffer): number; - copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number; - slice(start?: number, end?: number): Buffer; - writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number; - readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number; - readIntLE(offset: number, byteLength: number, noAssert?: boolean): number; - readIntBE(offset: number, byteLength: number, noAssert?: boolean): number; - readUInt8(offset: number, noAsset?: boolean): number; - readUInt16LE(offset: number, noAssert?: boolean): number; - readUInt16BE(offset: number, noAssert?: boolean): number; - readUInt32LE(offset: number, noAssert?: boolean): number; - readUInt32BE(offset: number, noAssert?: boolean): number; - readInt8(offset: number, noAssert?: boolean): number; - readInt16LE(offset: number, noAssert?: boolean): number; - readInt16BE(offset: number, noAssert?: boolean): number; - readInt32LE(offset: number, noAssert?: boolean): number; - readInt32BE(offset: number, noAssert?: boolean): number; - readFloatLE(offset: number, noAssert?: boolean): number; - readFloatBE(offset: number, noAssert?: boolean): number; - readDoubleLE(offset: number, noAssert?: boolean): number; - readDoubleBE(offset: number, noAssert?: boolean): number; - writeUInt8(value: number, offset: number, noAssert?: boolean): number; - writeUInt16LE(value: number, offset: number, noAssert?: boolean): number; - writeUInt16BE(value: number, offset: number, noAssert?: boolean): number; - writeUInt32LE(value: number, offset: number, noAssert?: boolean): number; - writeUInt32BE(value: number, offset: number, noAssert?: boolean): number; - writeInt8(value: number, offset: number, noAssert?: boolean): number; - writeInt16LE(value: number, offset: number, noAssert?: boolean): number; - writeInt16BE(value: number, offset: number, noAssert?: boolean): number; - writeInt32LE(value: number, offset: number, noAssert?: boolean): number; - writeInt32BE(value: number, offset: number, noAssert?: boolean): number; - writeFloatLE(value: number, offset: number, noAssert?: boolean): number; - writeFloatBE(value: number, offset: number, noAssert?: boolean): number; - writeDoubleLE(value: number, offset: number, noAssert?: boolean): number; - writeDoubleBE(value: number, offset: number, noAssert?: boolean): number; - fill(value: any, offset?: number, end?: number): Buffer; -} - -/************************************************ -* * -* MODULES * -* * -************************************************/ -declare module "buffer" { - export var INSPECT_MAX_BYTES: number; -} - -declare module "querystring" { - export function stringify(obj: any, sep?: string, eq?: string): string; - export function parse(str: string, sep?: string, eq?: string, options?: { maxKeys?: number; }): any; - export function escape(str: string): string; - export function unescape(str: string): string; -} - -declare module "events" { - export class EventEmitter implements NodeJS.EventEmitter { - static listenerCount(emitter: EventEmitter, event: string): number; - - addListener(event: string, listener: Function): EventEmitter; - on(event: string, listener: Function): EventEmitter; - once(event: string, listener: Function): EventEmitter; - removeListener(event: string, listener: Function): EventEmitter; - removeAllListeners(event?: string): EventEmitter; - setMaxListeners(n: number): void; - listeners(event: string): Function[]; - emit(event: string, ...args: any[]): boolean; - } -} - -declare module "http" { - import * as events from "events"; - import * as net from "net"; - import * as stream from "stream"; - - export interface RequestOptions { - protocol?: string; - host?: string; - hostname?: string; - family?: number; - port?: number - localAddress?: string; - socketPath?: string; - method?: string; - path?: string; - headers?: { [key: string]: any }; - auth?: string; - agent?: Agent; - } - - export interface Server extends events.EventEmitter { - listen(port: number, hostname?: string, backlog?: number, callback?: Function): Server; - listen(port: number, hostname?: string, callback?: Function): Server; - listen(path: string, callback?: Function): Server; - listen(handle: any, listeningListener?: Function): Server; - close(cb?: any): Server; - address(): { port: number; family: string; address: string; }; - maxHeadersCount: number; - } - /** - * @deprecated Use IncomingMessage - */ - export interface ServerRequest extends IncomingMessage { - connection: net.Socket; - } - export interface ServerResponse extends events.EventEmitter, stream.Writable { - // Extended base methods - write(buffer: Buffer): boolean; - write(buffer: Buffer, cb?: Function): boolean; - write(str: string, cb?: Function): boolean; - write(str: string, encoding?: string, cb?: Function): boolean; - write(str: string, encoding?: string, fd?: string): boolean; - - writeContinue(): void; - writeHead(statusCode: number, reasonPhrase?: string, headers?: any): void; - writeHead(statusCode: number, headers?: any): void; - statusCode: number; - statusMessage: string; - setHeader(name: string, value: string): void; - sendDate: boolean; - getHeader(name: string): string; - removeHeader(name: string): void; - write(chunk: any, encoding?: string): any; - addTrailers(headers: any): void; - - // Extended base methods - end(): void; - end(buffer: Buffer, cb?: Function): void; - end(str: string, cb?: Function): void; - end(str: string, encoding?: string, cb?: Function): void; - end(data?: any, encoding?: string): void; - } - export interface ClientRequest extends events.EventEmitter, stream.Writable { - // Extended base methods - write(buffer: Buffer): boolean; - write(buffer: Buffer, cb?: Function): boolean; - write(str: string, cb?: Function): boolean; - write(str: string, encoding?: string, cb?: Function): boolean; - write(str: string, encoding?: string, fd?: string): boolean; - - write(chunk: any, encoding?: string): void; - abort(): void; - setTimeout(timeout: number, callback?: Function): void; - setNoDelay(noDelay?: boolean): void; - setSocketKeepAlive(enable?: boolean, initialDelay?: number): void; - - // Extended base methods - end(): void; - end(buffer: Buffer, cb?: Function): void; - end(str: string, cb?: Function): void; - end(str: string, encoding?: string, cb?: Function): void; - end(data?: any, encoding?: string): void; - } - export interface IncomingMessage extends events.EventEmitter, stream.Readable { - httpVersion: string; - headers: any; - rawHeaders: string[]; - trailers: any; - rawTrailers: any; - setTimeout(msecs: number, callback: Function): NodeJS.Timer; - /** - * Only valid for request obtained from http.Server. - */ - method?: string; - /** - * Only valid for request obtained from http.Server. - */ - url?: string; - /** - * Only valid for response obtained from http.ClientRequest. - */ - statusCode?: number; - /** - * Only valid for response obtained from http.ClientRequest. - */ - statusMessage?: string; - socket: net.Socket; - } - /** - * @deprecated Use IncomingMessage - */ - export interface ClientResponse extends IncomingMessage { } - - export interface AgentOptions { - /** - * Keep sockets around in a pool to be used by other requests in the future. Default = false - */ - keepAlive?: boolean; - /** - * When using HTTP KeepAlive, how often to send TCP KeepAlive packets over sockets being kept alive. Default = 1000. - * Only relevant if keepAlive is set to true. - */ - keepAliveMsecs?: number; - /** - * Maximum number of sockets to allow per host. Default for Node 0.10 is 5, default for Node 0.12 is Infinity - */ - maxSockets?: number; - /** - * Maximum number of sockets to leave open in a free state. Only relevant if keepAlive is set to true. Default = 256. - */ - maxFreeSockets?: number; - } - - export class Agent { - maxSockets: number; - sockets: any; - requests: any; - - constructor(opts?: AgentOptions); - - /** - * Destroy any sockets that are currently in use by the agent. - * It is usually not necessary to do this. However, if you are using an agent with KeepAlive enabled, - * then it is best to explicitly shut down the agent when you know that it will no longer be used. Otherwise, - * sockets may hang open for quite a long time before the server terminates them. - */ - destroy(): void; - } - - export var METHODS: string[]; - - export var STATUS_CODES: { - [errorCode: number]: string; - [errorCode: string]: string; - }; - export function createServer(requestListener?: (request: IncomingMessage, response: ServerResponse) =>void ): Server; - export function createClient(port?: number, host?: string): any; - export function request(options: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest; - export function get(options: any, callback?: (res: IncomingMessage) => void): ClientRequest; - export var globalAgent: Agent; -} - -declare module "cluster" { - import * as child from "child_process"; - import * as events from "events"; - - export interface ClusterSettings { - exec?: string; - args?: string[]; - silent?: boolean; - } - - export class Worker extends events.EventEmitter { - id: string; - process: child.ChildProcess; - suicide: boolean; - send(message: any, sendHandle?: any): void; - kill(signal?: string): void; - destroy(signal?: string): void; - disconnect(): void; - } - - export var settings: ClusterSettings; - export var isMaster: boolean; - export var isWorker: boolean; - export function setupMaster(settings?: ClusterSettings): void; - export function fork(env?: any): Worker; - export function disconnect(callback?: Function): void; - export var worker: Worker; - export var workers: Worker[]; - - // Event emitter - export function addListener(event: string, listener: Function): void; - export function on(event: string, listener: Function): any; - export function once(event: string, listener: Function): void; - export function removeListener(event: string, listener: Function): void; - export function removeAllListeners(event?: string): void; - export function setMaxListeners(n: number): void; - export function listeners(event: string): Function[]; - export function emit(event: string, ...args: any[]): boolean; -} - -declare module "zlib" { - import * as stream from "stream"; - export interface ZlibOptions { chunkSize?: number; windowBits?: number; level?: number; memLevel?: number; strategy?: number; dictionary?: any; } - - export interface Gzip extends stream.Transform { } - export interface Gunzip extends stream.Transform { } - export interface Deflate extends stream.Transform { } - export interface Inflate extends stream.Transform { } - export interface DeflateRaw extends stream.Transform { } - export interface InflateRaw extends stream.Transform { } - export interface Unzip extends stream.Transform { } - - export function createGzip(options?: ZlibOptions): Gzip; - export function createGunzip(options?: ZlibOptions): Gunzip; - export function createDeflate(options?: ZlibOptions): Deflate; - export function createInflate(options?: ZlibOptions): Inflate; - export function createDeflateRaw(options?: ZlibOptions): DeflateRaw; - export function createInflateRaw(options?: ZlibOptions): InflateRaw; - export function createUnzip(options?: ZlibOptions): Unzip; - - export function deflate(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function deflateSync(buf: Buffer, options?: ZlibOptions): any; - export function deflateRaw(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function deflateRawSync(buf: Buffer, options?: ZlibOptions): any; - export function gzip(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function gzipSync(buf: Buffer, options?: ZlibOptions): any; - export function gunzip(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function gunzipSync(buf: Buffer, options?: ZlibOptions): any; - export function inflate(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function inflateSync(buf: Buffer, options?: ZlibOptions): any; - export function inflateRaw(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function inflateRawSync(buf: Buffer, options?: ZlibOptions): any; - export function unzip(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function unzipSync(buf: Buffer, options?: ZlibOptions): any; - - // Constants - export var Z_NO_FLUSH: number; - export var Z_PARTIAL_FLUSH: number; - export var Z_SYNC_FLUSH: number; - export var Z_FULL_FLUSH: number; - export var Z_FINISH: number; - export var Z_BLOCK: number; - export var Z_TREES: number; - export var Z_OK: number; - export var Z_STREAM_END: number; - export var Z_NEED_DICT: number; - export var Z_ERRNO: number; - export var Z_STREAM_ERROR: number; - export var Z_DATA_ERROR: number; - export var Z_MEM_ERROR: number; - export var Z_BUF_ERROR: number; - export var Z_VERSION_ERROR: number; - export var Z_NO_COMPRESSION: number; - export var Z_BEST_SPEED: number; - export var Z_BEST_COMPRESSION: number; - export var Z_DEFAULT_COMPRESSION: number; - export var Z_FILTERED: number; - export var Z_HUFFMAN_ONLY: number; - export var Z_RLE: number; - export var Z_FIXED: number; - export var Z_DEFAULT_STRATEGY: number; - export var Z_BINARY: number; - export var Z_TEXT: number; - export var Z_ASCII: number; - export var Z_UNKNOWN: number; - export var Z_DEFLATED: number; - export var Z_NULL: number; -} - -declare module "os" { - export function tmpdir(): string; - export function hostname(): string; - export function type(): string; - export function platform(): string; - export function arch(): string; - export function release(): string; - export function uptime(): number; - export function loadavg(): number[]; - export function totalmem(): number; - export function freemem(): number; - export function cpus(): { model: string; speed: number; times: { user: number; nice: number; sys: number; idle: number; irq: number; }; }[]; - export function networkInterfaces(): any; - export var EOL: string; -} - -declare module "https" { - import * as tls from "tls"; - import * as events from "events"; - import * as http from "http"; - - export interface ServerOptions { - pfx?: any; - key?: any; - passphrase?: string; - cert?: any; - ca?: any; - crl?: any; - ciphers?: string; - honorCipherOrder?: boolean; - requestCert?: boolean; - rejectUnauthorized?: boolean; - NPNProtocols?: any; - SNICallback?: (servername: string) => any; - } - - export interface RequestOptions extends http.RequestOptions{ - pfx?: any; - key?: any; - passphrase?: string; - cert?: any; - ca?: any; - ciphers?: string; - rejectUnauthorized?: boolean; - secureProtocol?: string; - } - - export interface Agent { - maxSockets: number; - sockets: any; - requests: any; - } - export var Agent: { - new (options?: RequestOptions): Agent; - }; - export interface Server extends tls.Server { } - export function createServer(options: ServerOptions, requestListener?: Function): Server; - export function request(options: RequestOptions, callback?: (res: http.IncomingMessage) =>void ): http.ClientRequest; - export function get(options: RequestOptions, callback?: (res: http.IncomingMessage) =>void ): http.ClientRequest; - export var globalAgent: Agent; -} - -declare module "punycode" { - export function decode(string: string): string; - export function encode(string: string): string; - export function toUnicode(domain: string): string; - export function toASCII(domain: string): string; - export var ucs2: ucs2; - interface ucs2 { - decode(string: string): number[]; - encode(codePoints: number[]): string; - } - export var version: any; -} - -declare module "repl" { - import * as stream from "stream"; - import * as events from "events"; - - export interface ReplOptions { - prompt?: string; - input?: NodeJS.ReadableStream; - output?: NodeJS.WritableStream; - terminal?: boolean; - eval?: Function; - useColors?: boolean; - useGlobal?: boolean; - ignoreUndefined?: boolean; - writer?: Function; - } - export function start(options: ReplOptions): events.EventEmitter; -} - -declare module "readline" { - import * as events from "events"; - import * as stream from "stream"; - - export interface ReadLine extends events.EventEmitter { - setPrompt(prompt: string): void; - prompt(preserveCursor?: boolean): void; - question(query: string, callback: Function): void; - pause(): void; - resume(): void; - close(): void; - write(data: any, key?: any): void; - } - export interface ReadLineOptions { - input: NodeJS.ReadableStream; - output: NodeJS.WritableStream; - completer?: Function; - terminal?: boolean; - } - export function createInterface(options: ReadLineOptions): ReadLine; -} - -declare module "vm" { - export interface Context { } - export interface Script { - runInThisContext(): void; - runInNewContext(sandbox?: Context): void; - } - export function runInThisContext(code: string, filename?: string): void; - export function runInNewContext(code: string, sandbox?: Context, filename?: string): void; - export function runInContext(code: string, context: Context, filename?: string): void; - export function createContext(initSandbox?: Context): Context; - export function createScript(code: string, filename?: string): Script; -} - -declare module "child_process" { - import * as events from "events"; - import * as stream from "stream"; - - export interface ChildProcess extends events.EventEmitter { - stdin: stream.Writable; - stdout: stream.Readable; - stderr: stream.Readable; - pid: number; - kill(signal?: string): void; - send(message: any, sendHandle?: any): void; - disconnect(): void; - unref(): void; - } - - export function spawn(command: string, args?: string[], options?: { - cwd?: string; - stdio?: any; - custom?: any; - env?: any; - detached?: boolean; - }): ChildProcess; - export function exec(command: string, options: { - cwd?: string; - stdio?: any; - customFds?: any; - env?: any; - encoding?: string; - timeout?: number; - maxBuffer?: number; - killSignal?: string; - }, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; - export function exec(command: string, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; - export function execFile(file: string, - callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; - export function execFile(file: string, args?: string[], - callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; - export function execFile(file: string, args?: string[], options?: { - cwd?: string; - stdio?: any; - customFds?: any; - env?: any; - encoding?: string; - timeout?: number; - maxBuffer?: number; - killSignal?: string; - }, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; - export function fork(modulePath: string, args?: string[], options?: { - cwd?: string; - env?: any; - encoding?: string; - }): ChildProcess; - export function spawnSync(command: string, args?: string[], options?: { - cwd?: string; - input?: string | Buffer; - stdio?: any; - env?: any; - uid?: number; - gid?: number; - timeout?: number; - maxBuffer?: number; - killSignal?: string; - encoding?: string; - }): { - pid: number; - output: string[]; - stdout: string | Buffer; - stderr: string | Buffer; - status: number; - signal: string; - error: Error; - }; - export function execSync(command: string, options?: { - cwd?: string; - input?: string|Buffer; - stdio?: any; - env?: any; - uid?: number; - gid?: number; - timeout?: number; - maxBuffer?: number; - killSignal?: string; - encoding?: string; - }): string | Buffer; - export function execFileSync(command: string, args?: string[], options?: { - cwd?: string; - input?: string|Buffer; - stdio?: any; - env?: any; - uid?: number; - gid?: number; - timeout?: number; - maxBuffer?: number; - killSignal?: string; - encoding?: string; - }): string | Buffer; -} - -declare module "url" { - export interface Url { - href?: string; - protocol?: string; - auth?: string; - hostname?: string; - port?: string; - host?: string; - pathname?: string; - search?: string; - query?: any; // string | Object - slashes?: boolean; - hash?: string; - path?: string; - } - - export function parse(urlStr: string, parseQueryString?: boolean , slashesDenoteHost?: boolean ): Url; - export function format(url: Url): string; - export function resolve(from: string, to: string): string; -} - -declare module "dns" { - export function lookup(domain: string, family: number, callback: (err: Error, address: string, family: number) =>void ): string; - export function lookup(domain: string, callback: (err: Error, address: string, family: number) =>void ): string; - export function resolve(domain: string, rrtype: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolve(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolve4(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolve6(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveMx(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveTxt(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveSrv(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveNs(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveCname(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function reverse(ip: string, callback: (err: Error, domains: string[]) =>void ): string[]; -} - -declare module "net" { - import * as stream from "stream"; - - export interface Socket extends stream.Duplex { - // Extended base methods - write(buffer: Buffer): boolean; - write(buffer: Buffer, cb?: Function): boolean; - write(str: string, cb?: Function): boolean; - write(str: string, encoding?: string, cb?: Function): boolean; - write(str: string, encoding?: string, fd?: string): boolean; - - connect(port: number, host?: string, connectionListener?: Function): void; - connect(path: string, connectionListener?: Function): void; - bufferSize: number; - setEncoding(encoding?: string): void; - write(data: any, encoding?: string, callback?: Function): void; - destroy(): void; - pause(): void; - resume(): void; - setTimeout(timeout: number, callback?: Function): void; - setNoDelay(noDelay?: boolean): void; - setKeepAlive(enable?: boolean, initialDelay?: number): void; - address(): { port: number; family: string; address: string; }; - unref(): void; - ref(): void; - - remoteAddress: string; - remoteFamily: string; - remotePort: number; - localAddress: string; - localPort: number; - bytesRead: number; - bytesWritten: number; - - // Extended base methods - end(): void; - end(buffer: Buffer, cb?: Function): void; - end(str: string, cb?: Function): void; - end(str: string, encoding?: string, cb?: Function): void; - end(data?: any, encoding?: string): void; - } - - export var Socket: { - new (options?: { fd?: string; type?: string; allowHalfOpen?: boolean; }): Socket; - }; - - export interface Server extends Socket { - listen(port: number, host?: string, backlog?: number, listeningListener?: Function): Server; - listen(path: string, listeningListener?: Function): Server; - listen(handle: any, listeningListener?: Function): Server; - close(callback?: Function): Server; - address(): { port: number; family: string; address: string; }; - maxConnections: number; - connections: number; - } - export function createServer(connectionListener?: (socket: Socket) =>void ): Server; - export function createServer(options?: { allowHalfOpen?: boolean; }, connectionListener?: (socket: Socket) =>void ): Server; - export function connect(options: { port: number, host?: string, localAddress? : string, localPort? : string, family? : number, allowHalfOpen?: boolean; }, connectionListener?: Function): Socket; - export function connect(port: number, host?: string, connectionListener?: Function): Socket; - export function connect(path: string, connectionListener?: Function): Socket; - export function createConnection(options: { port: number, host?: string, localAddress? : string, localPort? : string, family? : number, allowHalfOpen?: boolean; }, connectionListener?: Function): Socket; - export function createConnection(port: number, host?: string, connectionListener?: Function): Socket; - export function createConnection(path: string, connectionListener?: Function): Socket; - export function isIP(input: string): number; - export function isIPv4(input: string): boolean; - export function isIPv6(input: string): boolean; -} - -declare module "dgram" { - import * as events from "events"; - - interface RemoteInfo { - address: string; - port: number; - size: number; - } - - interface AddressInfo { - address: string; - family: string; - port: number; - } - - export function createSocket(type: string, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; - - interface Socket extends events.EventEmitter { - send(buf: Buffer, offset: number, length: number, port: number, address: string, callback?: (error: Error, bytes: number) => void): void; - bind(port: number, address?: string, callback?: () => void): void; - close(): void; - address(): AddressInfo; - setBroadcast(flag: boolean): void; - setMulticastTTL(ttl: number): void; - setMulticastLoopback(flag: boolean): void; - addMembership(multicastAddress: string, multicastInterface?: string): void; - dropMembership(multicastAddress: string, multicastInterface?: string): void; - } -} - -declare module "fs" { - import * as stream from "stream"; - import * as events from "events"; - - interface Stats { - isFile(): boolean; - isDirectory(): boolean; - isBlockDevice(): boolean; - isCharacterDevice(): boolean; - isSymbolicLink(): boolean; - isFIFO(): boolean; - isSocket(): boolean; - dev: number; - ino: number; - mode: number; - nlink: number; - uid: number; - gid: number; - rdev: number; - size: number; - blksize: number; - blocks: number; - atime: Date; - mtime: Date; - ctime: Date; - birthtime: Date; - } - - interface FSWatcher extends events.EventEmitter { - close(): void; - } - - export interface ReadStream extends stream.Readable { - close(): void; - } - export interface WriteStream extends stream.Writable { - close(): void; - bytesWritten: number; - } - - /** - * Asynchronous rename. - * @param oldPath - * @param newPath - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function rename(oldPath: string, newPath: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /** - * Synchronous rename - * @param oldPath - * @param newPath - */ - export function renameSync(oldPath: string, newPath: string): void; - export function truncate(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function truncate(path: string, len: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function truncateSync(path: string, len?: number): void; - export function ftruncate(fd: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function ftruncate(fd: number, len: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function ftruncateSync(fd: number, len?: number): void; - export function chown(path: string, uid: number, gid: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function chownSync(path: string, uid: number, gid: number): void; - export function fchown(fd: number, uid: number, gid: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function fchownSync(fd: number, uid: number, gid: number): void; - export function lchown(path: string, uid: number, gid: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function lchownSync(path: string, uid: number, gid: number): void; - export function chmod(path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function chmod(path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function chmodSync(path: string, mode: number): void; - export function chmodSync(path: string, mode: string): void; - export function fchmod(fd: number, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function fchmod(fd: number, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function fchmodSync(fd: number, mode: number): void; - export function fchmodSync(fd: number, mode: string): void; - export function lchmod(path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function lchmod(path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function lchmodSync(path: string, mode: number): void; - export function lchmodSync(path: string, mode: string): void; - export function stat(path: string, callback?: (err: NodeJS.ErrnoException, stats: Stats) => any): void; - export function lstat(path: string, callback?: (err: NodeJS.ErrnoException, stats: Stats) => any): void; - export function fstat(fd: number, callback?: (err: NodeJS.ErrnoException, stats: Stats) => any): void; - export function statSync(path: string): Stats; - export function lstatSync(path: string): Stats; - export function fstatSync(fd: number): Stats; - export function link(srcpath: string, dstpath: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function linkSync(srcpath: string, dstpath: string): void; - export function symlink(srcpath: string, dstpath: string, type?: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function symlinkSync(srcpath: string, dstpath: string, type?: string): void; - export function readlink(path: string, callback?: (err: NodeJS.ErrnoException, linkString: string) => any): void; - export function readlinkSync(path: string): string; - export function realpath(path: string, callback?: (err: NodeJS.ErrnoException, resolvedPath: string) => any): void; - export function realpath(path: string, cache: {[path: string]: string}, callback: (err: NodeJS.ErrnoException, resolvedPath: string) =>any): void; - export function realpathSync(path: string, cache?: { [path: string]: string }): string; - /* - * Asynchronous unlink - deletes the file specified in {path} - * - * @param path - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function unlink(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Synchronous unlink - deletes the file specified in {path} - * - * @param path - */ - export function unlinkSync(path: string): void; - /* - * Asynchronous rmdir - removes the directory specified in {path} - * - * @param path - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function rmdir(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Synchronous rmdir - removes the directory specified in {path} - * - * @param path - */ - export function rmdirSync(path: string): void; - /* - * Asynchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdir(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Asynchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param mode - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdir(path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Asynchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param mode - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdir(path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Synchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param mode - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdirSync(path: string, mode?: number): void; - /* - * Synchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param mode - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdirSync(path: string, mode?: string): void; - export function readdir(path: string, callback?: (err: NodeJS.ErrnoException, files: string[]) => void): void; - export function readdirSync(path: string): string[]; - export function close(fd: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function closeSync(fd: number): void; - export function open(path: string, flags: string, callback?: (err: NodeJS.ErrnoException, fd: number) => any): void; - export function open(path: string, flags: string, mode: number, callback?: (err: NodeJS.ErrnoException, fd: number) => any): void; - export function open(path: string, flags: string, mode: string, callback?: (err: NodeJS.ErrnoException, fd: number) => any): void; - export function openSync(path: string, flags: string, mode?: number): number; - export function openSync(path: string, flags: string, mode?: string): number; - export function utimes(path: string, atime: number, mtime: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function utimes(path: string, atime: Date, mtime: Date, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function utimesSync(path: string, atime: number, mtime: number): void; - export function utimesSync(path: string, atime: Date, mtime: Date): void; - export function futimes(fd: number, atime: number, mtime: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function futimes(fd: number, atime: Date, mtime: Date, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function futimesSync(fd: number, atime: number, mtime: number): void; - export function futimesSync(fd: number, atime: Date, mtime: Date): void; - export function fsync(fd: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function fsyncSync(fd: number): void; - export function write(fd: number, buffer: Buffer, offset: number, length: number, position: number, callback?: (err: NodeJS.ErrnoException, written: number, buffer: Buffer) => void): void; - export function write(fd: number, buffer: Buffer, offset: number, length: number, callback?: (err: NodeJS.ErrnoException, written: number, buffer: Buffer) => void): void; - export function write(fd: number, data: any, callback?: (err: NodeJS.ErrnoException, written: number, str: string) => void): void; - export function write(fd: number, data: any, offset: number, callback?: (err: NodeJS.ErrnoException, written: number, str: string) => void): void; - export function write(fd: number, data: any, offset: number, encoding: string, callback?: (err: NodeJS.ErrnoException, written: number, str: string) => void): void; - export function writeSync(fd: number, buffer: Buffer, offset: number, length: number, position: number): number; - export function read(fd: number, buffer: Buffer, offset: number, length: number, position: number, callback?: (err: NodeJS.ErrnoException, bytesRead: number, buffer: Buffer) => void): void; - export function readSync(fd: number, buffer: Buffer, offset: number, length: number, position: number): number; - /* - * Asynchronous readFile - Asynchronously reads the entire contents of a file. - * - * @param fileName - * @param encoding - * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. - */ - export function readFile(filename: string, encoding: string, callback: (err: NodeJS.ErrnoException, data: string) => void): void; - /* - * Asynchronous readFile - Asynchronously reads the entire contents of a file. - * - * @param fileName - * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFile returns a string; otherwise it returns a Buffer. - * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. - */ - export function readFile(filename: string, options: { encoding: string; flag?: string; }, callback: (err: NodeJS.ErrnoException, data: string) => void): void; - /* - * Asynchronous readFile - Asynchronously reads the entire contents of a file. - * - * @param fileName - * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFile returns a string; otherwise it returns a Buffer. - * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. - */ - export function readFile(filename: string, options: { flag?: string; }, callback: (err: NodeJS.ErrnoException, data: Buffer) => void): void; - /* - * Asynchronous readFile - Asynchronously reads the entire contents of a file. - * - * @param fileName - * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. - */ - export function readFile(filename: string, callback: (err: NodeJS.ErrnoException, data: Buffer) => void): void; - /* - * Synchronous readFile - Synchronously reads the entire contents of a file. - * - * @param fileName - * @param encoding - */ - export function readFileSync(filename: string, encoding: string): string; - /* - * Synchronous readFile - Synchronously reads the entire contents of a file. - * - * @param fileName - * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFileSync returns a string; otherwise it returns a Buffer. - */ - export function readFileSync(filename: string, options: { encoding: string; flag?: string; }): string; - /* - * Synchronous readFile - Synchronously reads the entire contents of a file. - * - * @param fileName - * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFileSync returns a string; otherwise it returns a Buffer. - */ - export function readFileSync(filename: string, options?: { flag?: string; }): Buffer; - export function writeFile(filename: string, data: any, callback?: (err: NodeJS.ErrnoException) => void): void; - export function writeFile(filename: string, data: any, options: { encoding?: string; mode?: number; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; - export function writeFile(filename: string, data: any, options: { encoding?: string; mode?: string; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; - export function writeFileSync(filename: string, data: any, options?: { encoding?: string; mode?: number; flag?: string; }): void; - export function writeFileSync(filename: string, data: any, options?: { encoding?: string; mode?: string; flag?: string; }): void; - export function appendFile(filename: string, data: any, options: { encoding?: string; mode?: number; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; - export function appendFile(filename: string, data: any, options: { encoding?: string; mode?: string; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; - export function appendFile(filename: string, data: any, callback?: (err: NodeJS.ErrnoException) => void): void; - export function appendFileSync(filename: string, data: any, options?: { encoding?: string; mode?: number; flag?: string; }): void; - export function appendFileSync(filename: string, data: any, options?: { encoding?: string; mode?: string; flag?: string; }): void; - export function watchFile(filename: string, listener: (curr: Stats, prev: Stats) => void): void; - export function watchFile(filename: string, options: { persistent?: boolean; interval?: number; }, listener: (curr: Stats, prev: Stats) => void): void; - export function unwatchFile(filename: string, listener?: (curr: Stats, prev: Stats) => void): void; - export function watch(filename: string, listener?: (event: string, filename: string) => any): FSWatcher; - export function watch(filename: string, options: { persistent?: boolean; }, listener?: (event: string, filename: string) => any): FSWatcher; - export function exists(path: string, callback?: (exists: boolean) => void): void; - export function existsSync(path: string): boolean; - /** Constant for fs.access(). File is visible to the calling process. */ - export var F_OK: number; - /** Constant for fs.access(). File can be read by the calling process. */ - export var R_OK: number; - /** Constant for fs.access(). File can be written by the calling process. */ - export var W_OK: number; - /** Constant for fs.access(). File can be executed by the calling process. */ - export var X_OK: number; - /** Tests a user's permissions for the file specified by path. */ - export function access(path: string, callback: (err: NodeJS.ErrnoException) => void): void; - export function access(path: string, mode: number, callback: (err: NodeJS.ErrnoException) => void): void; - /** Synchronous version of fs.access. This throws if any accessibility checks fail, and does nothing otherwise. */ - export function accessSync(path: string, mode ?: number): void; - export function createReadStream(path: string, options?: { - flags?: string; - encoding?: string; - fd?: number; - mode?: number; - autoClose?: boolean; - }): ReadStream; - export function createWriteStream(path: string, options?: { - flags?: string; - encoding?: string; - fd?: number; - mode?: number; - }): WriteStream; -} - -declare module "path" { - - /** - * A parsed path object generated by path.parse() or consumed by path.format(). - */ - export interface ParsedPath { - /** - * The root of the path such as '/' or 'c:\' - */ - root: string; - /** - * The full directory path such as '/home/user/dir' or 'c:\path\dir' - */ - dir: string; - /** - * The file name including extension (if any) such as 'index.html' - */ - base: string; - /** - * The file extension (if any) such as '.html' - */ - ext: string; - /** - * The file name without extension (if any) such as 'index' - */ - name: string; - } - - /** - * Normalize a string path, reducing '..' and '.' parts. - * When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used. - * - * @param p string path to normalize. - */ - export function normalize(p: string): string; - /** - * Join all arguments together and normalize the resulting path. - * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown. - * - * @param paths string paths to join. - */ - export function join(...paths: any[]): string; - /** - * Join all arguments together and normalize the resulting path. - * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown. - * - * @param paths string paths to join. - */ - export function join(...paths: string[]): string; - /** - * The right-most parameter is considered {to}. Other parameters are considered an array of {from}. - * - * Starting from leftmost {from} paramter, resolves {to} to an absolute path. - * - * If {to} isn't already absolute, {from} arguments are prepended in right to left order, until an absolute path is found. If after using all {from} paths still no absolute path is found, the current working directory is used as well. The resulting path is normalized, and trailing slashes are removed unless the path gets resolved to the root directory. - * - * @param pathSegments string paths to join. Non-string arguments are ignored. - */ - export function resolve(...pathSegments: any[]): string; - /** - * Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory. - * - * @param path path to test. - */ - export function isAbsolute(path: string): boolean; - /** - * Solve the relative path from {from} to {to}. - * At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve. - * - * @param from - * @param to - */ - export function relative(from: string, to: string): string; - /** - * Return the directory name of a path. Similar to the Unix dirname command. - * - * @param p the path to evaluate. - */ - export function dirname(p: string): string; - /** - * Return the last portion of a path. Similar to the Unix basename command. - * Often used to extract the file name from a fully qualified path. - * - * @param p the path to evaluate. - * @param ext optionally, an extension to remove from the result. - */ - export function basename(p: string, ext?: string): string; - /** - * Return the extension of the path, from the last '.' to end of string in the last portion of the path. - * If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string - * - * @param p the path to evaluate. - */ - export function extname(p: string): string; - /** - * The platform-specific file separator. '\\' or '/'. - */ - export var sep: string; - /** - * The platform-specific file delimiter. ';' or ':'. - */ - export var delimiter: string; - /** - * Returns an object from a path string - the opposite of format(). - * - * @param pathString path to evaluate. - */ - export function parse(pathString: string): ParsedPath; - /** - * Returns a path string from an object - the opposite of parse(). - * - * @param pathString path to evaluate. - */ - export function format(pathObject: ParsedPath): string; - - export module posix { - export function normalize(p: string): string; - export function join(...paths: any[]): string; - export function resolve(...pathSegments: any[]): string; - export function isAbsolute(p: string): boolean; - export function relative(from: string, to: string): string; - export function dirname(p: string): string; - export function basename(p: string, ext?: string): string; - export function extname(p: string): string; - export var sep: string; - export var delimiter: string; - export function parse(p: string): ParsedPath; - export function format(pP: ParsedPath): string; - } - - export module win32 { - export function normalize(p: string): string; - export function join(...paths: any[]): string; - export function resolve(...pathSegments: any[]): string; - export function isAbsolute(p: string): boolean; - export function relative(from: string, to: string): string; - export function dirname(p: string): string; - export function basename(p: string, ext?: string): string; - export function extname(p: string): string; - export var sep: string; - export var delimiter: string; - export function parse(p: string): ParsedPath; - export function format(pP: ParsedPath): string; - } -} - -declare module "string_decoder" { - export interface NodeStringDecoder { - write(buffer: Buffer): string; - detectIncompleteChar(buffer: Buffer): number; - } - export var StringDecoder: { - new (encoding: string): NodeStringDecoder; - }; -} - -declare module "tls" { - import * as crypto from "crypto"; - import * as net from "net"; - import * as stream from "stream"; - - var CLIENT_RENEG_LIMIT: number; - var CLIENT_RENEG_WINDOW: number; - - export interface TlsOptions { - pfx?: any; //string or buffer - key?: any; //string or buffer - passphrase?: string; - cert?: any; - ca?: any; //string or buffer - crl?: any; //string or string array - ciphers?: string; - honorCipherOrder?: any; - requestCert?: boolean; - rejectUnauthorized?: boolean; - NPNProtocols?: any; //array or Buffer; - SNICallback?: (servername: string) => any; - } - - export interface ConnectionOptions { - host?: string; - port?: number; - socket?: net.Socket; - pfx?: any; //string | Buffer - key?: any; //string | Buffer - passphrase?: string; - cert?: any; //string | Buffer - ca?: any; //Array of string | Buffer - rejectUnauthorized?: boolean; - NPNProtocols?: any; //Array of string | Buffer - servername?: string; - } - - export interface Server extends net.Server { - // Extended base methods - listen(port: number, host?: string, backlog?: number, listeningListener?: Function): Server; - listen(path: string, listeningListener?: Function): Server; - listen(handle: any, listeningListener?: Function): Server; - - listen(port: number, host?: string, callback?: Function): Server; - close(): Server; - address(): { port: number; family: string; address: string; }; - addContext(hostName: string, credentials: { - key: string; - cert: string; - ca: string; - }): void; - maxConnections: number; - connections: number; - } - - export interface ClearTextStream extends stream.Duplex { - authorized: boolean; - authorizationError: Error; - getPeerCertificate(): any; - getCipher: { - name: string; - version: string; - }; - address: { - port: number; - family: string; - address: string; - }; - remoteAddress: string; - remotePort: number; - } - - export interface SecurePair { - encrypted: any; - cleartext: any; - } - - export interface SecureContextOptions { - pfx?: any; //string | buffer - key?: any; //string | buffer - passphrase?: string; - cert?: any; // string | buffer - ca?: any; // string | buffer - crl?: any; // string | string[] - ciphers?: string; - honorCipherOrder?: boolean; - } - - export interface SecureContext { - context: any; - } - - export function createServer(options: TlsOptions, secureConnectionListener?: (cleartextStream: ClearTextStream) =>void ): Server; - export function connect(options: TlsOptions, secureConnectionListener?: () =>void ): ClearTextStream; - export function connect(port: number, host?: string, options?: ConnectionOptions, secureConnectListener?: () =>void ): ClearTextStream; - export function connect(port: number, options?: ConnectionOptions, secureConnectListener?: () =>void ): ClearTextStream; - export function createSecurePair(credentials?: crypto.Credentials, isServer?: boolean, requestCert?: boolean, rejectUnauthorized?: boolean): SecurePair; - export function createSecureContext(details: SecureContextOptions): SecureContext; -} - -declare module "crypto" { - export interface CredentialDetails { - pfx: string; - key: string; - passphrase: string; - cert: string; - ca: any; //string | string array - crl: any; //string | string array - ciphers: string; - } - export interface Credentials { context?: any; } - export function createCredentials(details: CredentialDetails): Credentials; - export function createHash(algorithm: string): Hash; - export function createHmac(algorithm: string, key: string): Hmac; - export function createHmac(algorithm: string, key: Buffer): Hmac; - interface Hash { - update(data: any, input_encoding?: string): Hash; - digest(encoding: 'buffer'): Buffer; - digest(encoding: string): any; - digest(): Buffer; - } - interface Hmac { - update(data: any, input_encoding?: string): Hmac; - digest(encoding: 'buffer'): Buffer; - digest(encoding: string): any; - digest(): Buffer; - } - export function createCipher(algorithm: string, password: any): Cipher; - export function createCipheriv(algorithm: string, key: any, iv: any): Cipher; - interface Cipher { - update(data: Buffer): Buffer; - update(data: string, input_encoding?: string, output_encoding?: string): string; - final(): Buffer; - final(output_encoding: string): string; - setAutoPadding(auto_padding: boolean): void; - } - export function createDecipher(algorithm: string, password: any): Decipher; - export function createDecipheriv(algorithm: string, key: any, iv: any): Decipher; - interface Decipher { - update(data: Buffer): Buffer; - update(data: string, input_encoding?: string, output_encoding?: string): string; - final(): Buffer; - final(output_encoding: string): string; - setAutoPadding(auto_padding: boolean): void; - } - export function createSign(algorithm: string): Signer; - interface Signer extends NodeJS.WritableStream { - update(data: any): void; - sign(private_key: string, output_format: string): string; - } - export function createVerify(algorith: string): Verify; - interface Verify extends NodeJS.WritableStream { - update(data: any): void; - verify(object: string, signature: string, signature_format?: string): boolean; - } - export function createDiffieHellman(prime_length: number): DiffieHellman; - export function createDiffieHellman(prime: number, encoding?: string): DiffieHellman; - interface DiffieHellman { - generateKeys(encoding?: string): string; - computeSecret(other_public_key: string, input_encoding?: string, output_encoding?: string): string; - getPrime(encoding?: string): string; - getGenerator(encoding: string): string; - getPublicKey(encoding?: string): string; - getPrivateKey(encoding?: string): string; - setPublicKey(public_key: string, encoding?: string): void; - setPrivateKey(public_key: string, encoding?: string): void; - } - export function getDiffieHellman(group_name: string): DiffieHellman; - export function pbkdf2(password: string, salt: string, iterations: number, keylen: number, callback: (err: Error, derivedKey: Buffer) => any): void; - export function pbkdf2(password: string, salt: string, iterations: number, keylen: number, digest: string, callback: (err: Error, derivedKey: Buffer) => any): void; - export function pbkdf2Sync(password: string, salt: string, iterations: number, keylen: number) : Buffer; - export function pbkdf2Sync(password: string, salt: string, iterations: number, keylen: number, digest: string) : Buffer; - export function randomBytes(size: number): Buffer; - export function randomBytes(size: number, callback: (err: Error, buf: Buffer) =>void ): void; - export function pseudoRandomBytes(size: number): Buffer; - export function pseudoRandomBytes(size: number, callback: (err: Error, buf: Buffer) =>void ): void; -} - -declare module "stream" { - import * as events from "events"; - - export interface Stream extends events.EventEmitter { - pipe(destination: T, options?: { end?: boolean; }): T; - } - - export interface ReadableOptions { - highWaterMark?: number; - encoding?: string; - objectMode?: boolean; - } - - export class Readable extends events.EventEmitter implements NodeJS.ReadableStream { - readable: boolean; - constructor(opts?: ReadableOptions); - _read(size: number): void; - read(size?: number): any; - setEncoding(encoding: string): void; - pause(): void; - resume(): void; - pipe(destination: T, options?: { end?: boolean; }): T; - unpipe(destination?: T): void; - unshift(chunk: any): void; - wrap(oldStream: NodeJS.ReadableStream): NodeJS.ReadableStream; - push(chunk: any, encoding?: string): boolean; - } - - export interface WritableOptions { - highWaterMark?: number; - decodeStrings?: boolean; - objectMode?: boolean; - } - - export class Writable extends events.EventEmitter implements NodeJS.WritableStream { - writable: boolean; - constructor(opts?: WritableOptions); - _write(chunk: any, encoding: string, callback: Function): void; - write(chunk: any, cb?: Function): boolean; - write(chunk: any, encoding?: string, cb?: Function): boolean; - end(): void; - end(chunk: any, cb?: Function): void; - end(chunk: any, encoding?: string, cb?: Function): void; - } - - export interface DuplexOptions extends ReadableOptions, WritableOptions { - allowHalfOpen?: boolean; - } - - // Note: Duplex extends both Readable and Writable. - export class Duplex extends Readable implements NodeJS.ReadWriteStream { - writable: boolean; - constructor(opts?: DuplexOptions); - _write(chunk: any, encoding: string, callback: Function): void; - write(chunk: any, cb?: Function): boolean; - write(chunk: any, encoding?: string, cb?: Function): boolean; - end(): void; - end(chunk: any, cb?: Function): void; - end(chunk: any, encoding?: string, cb?: Function): void; - } - - export interface TransformOptions extends ReadableOptions, WritableOptions {} - - // Note: Transform lacks the _read and _write methods of Readable/Writable. - export class Transform extends events.EventEmitter implements NodeJS.ReadWriteStream { - readable: boolean; - writable: boolean; - constructor(opts?: TransformOptions); - _transform(chunk: any, encoding: string, callback: Function): void; - _flush(callback: Function): void; - read(size?: number): any; - setEncoding(encoding: string): void; - pause(): void; - resume(): void; - pipe(destination: T, options?: { end?: boolean; }): T; - unpipe(destination?: T): void; - unshift(chunk: any): void; - wrap(oldStream: NodeJS.ReadableStream): NodeJS.ReadableStream; - push(chunk: any, encoding?: string): boolean; - write(chunk: any, cb?: Function): boolean; - write(chunk: any, encoding?: string, cb?: Function): boolean; - end(): void; - end(chunk: any, cb?: Function): void; - end(chunk: any, encoding?: string, cb?: Function): void; - } - - export class PassThrough extends Transform {} -} - -declare module "util" { - export interface InspectOptions { - showHidden?: boolean; - depth?: number; - colors?: boolean; - customInspect?: boolean; - } - - export function format(format: any, ...param: any[]): string; - export function debug(string: string): void; - export function error(...param: any[]): void; - export function puts(...param: any[]): void; - export function print(...param: any[]): void; - export function log(string: string): void; - export function inspect(object: any, showHidden?: boolean, depth?: number, color?: boolean): string; - export function inspect(object: any, options: InspectOptions): string; - export function isArray(object: any): boolean; - export function isRegExp(object: any): boolean; - export function isDate(object: any): boolean; - export function isError(object: any): boolean; - export function inherits(constructor: any, superConstructor: any): void; - export function debuglog(key:string): (msg:string,...param: any[])=>void; -} - -declare module "assert" { - function internal (value: any, message?: string): void; - module internal { - export class AssertionError implements Error { - name: string; - message: string; - actual: any; - expected: any; - operator: string; - generatedMessage: boolean; - - constructor(options?: {message?: string; actual?: any; expected?: any; - operator?: string; stackStartFunction?: Function}); - } - - export function fail(actual?: any, expected?: any, message?: string, operator?: string): void; - export function ok(value: any, message?: string): void; - export function equal(actual: any, expected: any, message?: string): void; - export function notEqual(actual: any, expected: any, message?: string): void; - export function deepEqual(actual: any, expected: any, message?: string): void; - export function notDeepEqual(acutal: any, expected: any, message?: string): void; - export function strictEqual(actual: any, expected: any, message?: string): void; - export function notStrictEqual(actual: any, expected: any, message?: string): void; - export var throws: { - (block: Function, message?: string): void; - (block: Function, error: Function, message?: string): void; - (block: Function, error: RegExp, message?: string): void; - (block: Function, error: (err: any) => boolean, message?: string): void; - }; - - export var doesNotThrow: { - (block: Function, message?: string): void; - (block: Function, error: Function, message?: string): void; - (block: Function, error: RegExp, message?: string): void; - (block: Function, error: (err: any) => boolean, message?: string): void; - }; - - export function ifError(value: any): void; - } - - export = internal; -} - -declare module "tty" { - import * as net from "net"; - - export function isatty(fd: number): boolean; - export interface ReadStream extends net.Socket { - isRaw: boolean; - setRawMode(mode: boolean): void; - } - export interface WriteStream extends net.Socket { - columns: number; - rows: number; - } -} - -declare module "domain" { - import * as events from "events"; - - export class Domain extends events.EventEmitter { - run(fn: Function): void; - add(emitter: events.EventEmitter): void; - remove(emitter: events.EventEmitter): void; - bind(cb: (err: Error, data: any) => any): any; - intercept(cb: (data: any) => any): any; - dispose(): void; - - addListener(event: string, listener: Function): Domain; - on(event: string, listener: Function): Domain; - once(event: string, listener: Function): Domain; - removeListener(event: string, listener: Function): Domain; - removeAllListeners(event?: string): Domain; - } - - export function create(): Domain; -} - -declare module "constants" { - export var E2BIG: number; - export var EACCES: number; - export var EADDRINUSE: number; - export var EADDRNOTAVAIL: number; - export var EAFNOSUPPORT: number; - export var EAGAIN: number; - export var EALREADY: number; - export var EBADF: number; - export var EBADMSG: number; - export var EBUSY: number; - export var ECANCELED: number; - export var ECHILD: number; - export var ECONNABORTED: number; - export var ECONNREFUSED: number; - export var ECONNRESET: number; - export var EDEADLK: number; - export var EDESTADDRREQ: number; - export var EDOM: number; - export var EEXIST: number; - export var EFAULT: number; - export var EFBIG: number; - export var EHOSTUNREACH: number; - export var EIDRM: number; - export var EILSEQ: number; - export var EINPROGRESS: number; - export var EINTR: number; - export var EINVAL: number; - export var EIO: number; - export var EISCONN: number; - export var EISDIR: number; - export var ELOOP: number; - export var EMFILE: number; - export var EMLINK: number; - export var EMSGSIZE: number; - export var ENAMETOOLONG: number; - export var ENETDOWN: number; - export var ENETRESET: number; - export var ENETUNREACH: number; - export var ENFILE: number; - export var ENOBUFS: number; - export var ENODATA: number; - export var ENODEV: number; - export var ENOENT: number; - export var ENOEXEC: number; - export var ENOLCK: number; - export var ENOLINK: number; - export var ENOMEM: number; - export var ENOMSG: number; - export var ENOPROTOOPT: number; - export var ENOSPC: number; - export var ENOSR: number; - export var ENOSTR: number; - export var ENOSYS: number; - export var ENOTCONN: number; - export var ENOTDIR: number; - export var ENOTEMPTY: number; - export var ENOTSOCK: number; - export var ENOTSUP: number; - export var ENOTTY: number; - export var ENXIO: number; - export var EOPNOTSUPP: number; - export var EOVERFLOW: number; - export var EPERM: number; - export var EPIPE: number; - export var EPROTO: number; - export var EPROTONOSUPPORT: number; - export var EPROTOTYPE: number; - export var ERANGE: number; - export var EROFS: number; - export var ESPIPE: number; - export var ESRCH: number; - export var ETIME: number; - export var ETIMEDOUT: number; - export var ETXTBSY: number; - export var EWOULDBLOCK: number; - export var EXDEV: number; - export var WSAEINTR: number; - export var WSAEBADF: number; - export var WSAEACCES: number; - export var WSAEFAULT: number; - export var WSAEINVAL: number; - export var WSAEMFILE: number; - export var WSAEWOULDBLOCK: number; - export var WSAEINPROGRESS: number; - export var WSAEALREADY: number; - export var WSAENOTSOCK: number; - export var WSAEDESTADDRREQ: number; - export var WSAEMSGSIZE: number; - export var WSAEPROTOTYPE: number; - export var WSAENOPROTOOPT: number; - export var WSAEPROTONOSUPPORT: number; - export var WSAESOCKTNOSUPPORT: number; - export var WSAEOPNOTSUPP: number; - export var WSAEPFNOSUPPORT: number; - export var WSAEAFNOSUPPORT: number; - export var WSAEADDRINUSE: number; - export var WSAEADDRNOTAVAIL: number; - export var WSAENETDOWN: number; - export var WSAENETUNREACH: number; - export var WSAENETRESET: number; - export var WSAECONNABORTED: number; - export var WSAECONNRESET: number; - export var WSAENOBUFS: number; - export var WSAEISCONN: number; - export var WSAENOTCONN: number; - export var WSAESHUTDOWN: number; - export var WSAETOOMANYREFS: number; - export var WSAETIMEDOUT: number; - export var WSAECONNREFUSED: number; - export var WSAELOOP: number; - export var WSAENAMETOOLONG: number; - export var WSAEHOSTDOWN: number; - export var WSAEHOSTUNREACH: number; - export var WSAENOTEMPTY: number; - export var WSAEPROCLIM: number; - export var WSAEUSERS: number; - export var WSAEDQUOT: number; - export var WSAESTALE: number; - export var WSAEREMOTE: number; - export var WSASYSNOTREADY: number; - export var WSAVERNOTSUPPORTED: number; - export var WSANOTINITIALISED: number; - export var WSAEDISCON: number; - export var WSAENOMORE: number; - export var WSAECANCELLED: number; - export var WSAEINVALIDPROCTABLE: number; - export var WSAEINVALIDPROVIDER: number; - export var WSAEPROVIDERFAILEDINIT: number; - export var WSASYSCALLFAILURE: number; - export var WSASERVICE_NOT_FOUND: number; - export var WSATYPE_NOT_FOUND: number; - export var WSA_E_NO_MORE: number; - export var WSA_E_CANCELLED: number; - export var WSAEREFUSED: number; - export var SIGHUP: number; - export var SIGINT: number; - export var SIGILL: number; - export var SIGABRT: number; - export var SIGFPE: number; - export var SIGKILL: number; - export var SIGSEGV: number; - export var SIGTERM: number; - export var SIGBREAK: number; - export var SIGWINCH: number; - export var SSL_OP_ALL: number; - export var SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION: number; - export var SSL_OP_CIPHER_SERVER_PREFERENCE: number; - export var SSL_OP_CISCO_ANYCONNECT: number; - export var SSL_OP_COOKIE_EXCHANGE: number; - export var SSL_OP_CRYPTOPRO_TLSEXT_BUG: number; - export var SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS: number; - export var SSL_OP_EPHEMERAL_RSA: number; - export var SSL_OP_LEGACY_SERVER_CONNECT: number; - export var SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER: number; - export var SSL_OP_MICROSOFT_SESS_ID_BUG: number; - export var SSL_OP_MSIE_SSLV2_RSA_PADDING: number; - export var SSL_OP_NETSCAPE_CA_DN_BUG: number; - export var SSL_OP_NETSCAPE_CHALLENGE_BUG: number; - export var SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG: number; - export var SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG: number; - export var SSL_OP_NO_COMPRESSION: number; - export var SSL_OP_NO_QUERY_MTU: number; - export var SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION: number; - export var SSL_OP_NO_SSLv2: number; - export var SSL_OP_NO_SSLv3: number; - export var SSL_OP_NO_TICKET: number; - export var SSL_OP_NO_TLSv1: number; - export var SSL_OP_NO_TLSv1_1: number; - export var SSL_OP_NO_TLSv1_2: number; - export var SSL_OP_PKCS1_CHECK_1: number; - export var SSL_OP_PKCS1_CHECK_2: number; - export var SSL_OP_SINGLE_DH_USE: number; - export var SSL_OP_SINGLE_ECDH_USE: number; - export var SSL_OP_SSLEAY_080_CLIENT_DH_BUG: number; - export var SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG: number; - export var SSL_OP_TLS_BLOCK_PADDING_BUG: number; - export var SSL_OP_TLS_D5_BUG: number; - export var SSL_OP_TLS_ROLLBACK_BUG: number; - export var ENGINE_METHOD_DSA: number; - export var ENGINE_METHOD_DH: number; - export var ENGINE_METHOD_RAND: number; - export var ENGINE_METHOD_ECDH: number; - export var ENGINE_METHOD_ECDSA: number; - export var ENGINE_METHOD_CIPHERS: number; - export var ENGINE_METHOD_DIGESTS: number; - export var ENGINE_METHOD_STORE: number; - export var ENGINE_METHOD_PKEY_METHS: number; - export var ENGINE_METHOD_PKEY_ASN1_METHS: number; - export var ENGINE_METHOD_ALL: number; - export var ENGINE_METHOD_NONE: number; - export var DH_CHECK_P_NOT_SAFE_PRIME: number; - export var DH_CHECK_P_NOT_PRIME: number; - export var DH_UNABLE_TO_CHECK_GENERATOR: number; - export var DH_NOT_SUITABLE_GENERATOR: number; - export var NPN_ENABLED: number; - export var RSA_PKCS1_PADDING: number; - export var RSA_SSLV23_PADDING: number; - export var RSA_NO_PADDING: number; - export var RSA_PKCS1_OAEP_PADDING: number; - export var RSA_X931_PADDING: number; - export var RSA_PKCS1_PSS_PADDING: number; - export var POINT_CONVERSION_COMPRESSED: number; - export var POINT_CONVERSION_UNCOMPRESSED: number; - export var POINT_CONVERSION_HYBRID: number; - export var O_RDONLY: number; - export var O_WRONLY: number; - export var O_RDWR: number; - export var S_IFMT: number; - export var S_IFREG: number; - export var S_IFDIR: number; - export var S_IFCHR: number; - export var S_IFLNK: number; - export var O_CREAT: number; - export var O_EXCL: number; - export var O_TRUNC: number; - export var O_APPEND: number; - export var F_OK: number; - export var R_OK: number; - export var W_OK: number; - export var X_OK: number; - export var UV_UDP_REUSEADDR: number; -} \ No newline at end of file diff --git a/typings/thenable/thenable.d.ts b/typings/thenable/thenable.d.ts deleted file mode 100644 index afd2306..0000000 --- a/typings/thenable/thenable.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -declare class Thenable extends Promise { - // shim for vscode's Thenable -} \ No newline at end of file diff --git a/typings/xmldom/xmldom.d.ts b/typings/xmldom/xmldom.d.ts deleted file mode 100644 index 50d852f..0000000 --- a/typings/xmldom/xmldom.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare class XmlNode extends Node { - lineNumber: number; - columnNumber: number; -} \ No newline at end of file diff --git a/typings/xpath/xpath.d.ts b/typings/xpath/xpath.d.ts deleted file mode 100644 index 74c39c1..0000000 --- a/typings/xpath/xpath.d.ts +++ /dev/null @@ -1,197 +0,0 @@ -// Type definitions for xpath v0.0.7 -// Project: https://github.com/goto100/xpath -// Definitions by: Andrew Bradley -// Definitions: https://github.com/borisyankov/DefinitelyTyped - -// Some documentation prose is copied from the XPath documentation at https://developer.mozilla.org. - -declare module 'xpath' { - - // select1 can return any of: `Node`, `boolean`, `string`, `number`. - // select and selectWithResolver can return any of the above return types or `Array`. - // For this reason, their return types are `any`. - - interface SelectFn { - /** - * Evaluate an XPath expression against a DOM node. Returns the result as one of the following: - * * Array - * * Node - * * boolean - * * number - * * string - * @param xpathText - * @param contextNode - * @param single If true and the evaluation result is one or more Nodes, will return only the first Node instead of an Array - */ - (xpathText: string, contextNode: Node, single?: boolean): any; - } - - var select: SelectFn; - - /** - * Evaluate an xpath expression against a DOM node, returning the first result only. - * Equivalent to `select(xpathText, contextNode, true)` - * @param xpathText - * @param contextNode - */ - function select1(xpathText: string, contextNode: Node): any; - - /** - * Evaluate an XPath expression against a DOM node using a given namespace resolver. Returns the result as one of the following: - * * Array - * * Node - * * boolean - * * number - * * string - * @param xpathText - * @param contextNode - * @param resolver - * @param single If true and the evaluation result is one or more Nodes, will return only the first Node instead of an Array - */ - function selectWithResolver(xpathText: string, contextNode: Node, resolver: XPathNSResolver, single?: boolean): any; - - /** - * Evaluate an xpath expression against a DOM. - * @param xpathText xpath expression as a string. - * @param contextNode xpath expression is evaluated relative to this DOM node. - * @param resolver XML namespace resolver - * @param resultType - * @param result If non-null, xpath *may* reuse this XPathResult object instead of creating a new one. However, it is not required to do so. - * @return XPathResult object containing the result of the expression. - */ - function evaluate(xpathText: string, contextNode: Node, resolver: XPathNSResolver, resultType: number, result?: XPathResult): XPathResult; - - /** - * Creates a `select` function that uses the given namespace prefix to URI mappings when evaluating queries. - * @param namespaceMappings an object mapping namespace prefixes to namespace URIs. Each key is a prefix; each value is a URI. - * @return a function with the same signature as `xpath.select` - */ - function useNamespaces(namespaceMappings: NamespaceMap): typeof select; - interface NamespaceMap { - [namespacePrefix: string]: string; - } - - /** - * Compile an XPath expression into an XPathExpression which can be (repeatedly) evaluated against a DOM. - * @param xpathText XPath expression as a string - * @param namespaceURLMapper Namespace resolver - * @return compiled expression - */ - function createExpression(xpathText: string, namespaceURLMapper: XPathNSResolver): XPathExpression; - - /** - * Create an XPathNSResolver that resolves based on the information available in the context of a DOM node. - * @param node - */ - function createNSResolver(node: Node): XPathNSResolver; - - /** - * Result of evaluating an XPathExpression. - */ - class XPathResult { - /** - * A result set containing whatever type naturally results from evaluation of the expression. Note that if the result is a node-set then UNORDERED_NODE_ITERATOR_TYPE is always the resulting type. - */ - static ANY_TYPE: number; - /** - * A result containing a single number. This is useful for example, in an XPath expression using the count() function. - */ - static NUMBER_TYPE: number; - /** - * A result containing a single string. - */ - static STRING_TYPE: number; - /** - * A result containing a single boolean value. This is useful for example, in an XPath expression using the not() function. - */ - static BOOLEAN_TYPE: number; - /** - * A result node-set containing all the nodes matching the expression. The nodes may not necessarily be in the same order that they appear in the document. - */ - static UNORDERED_NODE_ITERATOR_TYPE: number; - /** - * A result node-set containing all the nodes matching the expression. The nodes in the result set are in the same order that they appear in the document. - */ - static ORDERED_NODE_ITERATOR_TYPE: number; - /** - * A result node-set containing snapshots of all the nodes matching the expression. The nodes may not necessarily be in the same order that they appear in the document. - */ - static UNORDERED_NODE_SNAPSHOT_TYPE: number; - /** - * A result node-set containing snapshots of all the nodes matching the expression. The nodes in the result set are in the same order that they appear in the document. - */ - static ORDERED_NODE_SNAPSHOT_TYPE: number; - /** - * A result node-set containing any single node that matches the expression. The node is not necessarily the first node in the document that matches the expression. - */ - static ANY_UNORDERED_NODE_TYPE: number; - /** - * A result node-set containing the first node in the document that matches the expression. - */ - static FIRST_ORDERED_NODE_TYPE: number; - - /** - * Type of this result. It is one of the enumerated result types. - */ - resultType: number; - - /** - * Returns the next node in this result, if this result is one of the _ITERATOR_ result types. - */ - iterateNext(): Node; - - /** - * returns the result node for a given index, if this result is one of the _SNAPSHOT_ result types. - * @param index - */ - snapshotItem(index: number): Node; - - /** - * Number of nodes in this result, if this result is one of the _SNAPSHOT_ result types. - */ - snapshotLength: number; - - /** - * Value of this result, if it is a BOOLEAN_TYPE result. - */ - booleanValue: boolean; - /** - * Value of this result, if it is a NUMBER_TYPE result. - */ - numberValue: number; - /** - * Value of this result, if it is a STRING_TYPE result. - */ - stringValue: string; - - /** - * Value of this result, if it is a FIRST_ORDERED_NODE_TYPE result. - */ - singleNodeValue: Node; - } - - /** - * A compiled XPath expression, ready to be (repeatedly) evaluated against a DOM node. - */ - interface XPathExpression { - /** - * evaluate this expression against a DOM node. - * @param contextNode - * @param resultType - * @param result - */ - evaluate(contextNode: Node, resultType: number, result?: XPathResult): XPathResult; - } - - /** - * Object that can resolve XML namespace prefixes to namespace URIs. - */ - interface XPathNSResolver { - /** - * Given an XML namespace prefix, returns the corresponding XML namespace URI. - * @param prefix XML namespace prefix - * @return XML namespace URI - */ - lookupNamespaceURI(prefix: string): string; - } -} \ No newline at end of file