134 lines
40 KiB
JSON
134 lines
40 KiB
JSON
{
|
|
"body": {
|
|
"value": "Executing unit: u6\n\n[Claude #15] Stage 3 r6 ??IMP-16-U1 unit u6 (sentence splitting).\n\n??unit_executed\n- id: u6\n- covers: sentence splitting (`split_into_sentences` + module-level `_BULLET_MARKER_PATTERN`, `_SENTENCE_SPLIT_PATTERN`, `_MIN_SENTENCE_LEN`)\n\n??files_changed (untracked, not yet committed per Stage 3 rule)\n- `src/phase_z2_verification_utils.py` (edited ??appended `_BULLET_MARKER_PATTERN`, `_SENTENCE_SPLIT_PATTERN`, `_MIN_SENTENCE_LEN`, and `split_into_sentences(text: str) -\u003e list[str]`). Module now 198 lines (delta +33 lines for u6, within Stage 2 ??50 lines/unit budget; estimate was 28, the extra 5 lines lift the inline Phase Q regex literals + magic-number 5 into named module constants for auditable + unit-testable Phase Z surface).\n- `tests/phase_z2/test_pz2_vu_sentence_split.py` (new, 6 tests, 70 lines).\n\n??diff_summary\n- `src/phase_z2_verification_utils.py`:\n - `_BULLET_MARKER_PATTERN: re.Pattern = re.compile(r\"^[\\-?™뿦쨌\\d]+[.)]\\s*\")` ??compiled once at module load. Matches a marker run (`-`, `??, `??, `쨌`, ASCII digit, one or more) followed by a closing `.` or `)`, then trailing whitespace. **Phase Q semantic preserved verbatim**: a bare `- ` or `??` bullet (no trailing `.`/`)`) is NOT a match; only numbered list markers (`1.`, `2)`) and punctuated markers (`-.`, `??`) are stripped. Locked by `test_split_into_sentences_strips_numeric_and_punctuated_markers` (positive cases) and `test_split_into_sentences_keeps_bare_dash_bullet_unstripped` (negative case ??`\"- ??ぉ ?섎굹?낅땲??\"` survives the marker strip and exits the function intact).\n - `_SENTENCE_SPLIT_PATTERN: re.Pattern = re.compile(r\"(?\u003c=\\.)\\s+\")` ??compiled once. Lookbehind on a literal period followed by whitespace; period itself is retained on the preceding sentence (e.g. `\"泥?臾몄옣?낅땲?? ?섏㎏ 臾몄옣?낅땲??\"` ??`[\"泥?臾몄옣?낅땲??\", \"?섏㎏ 臾몄옣?낅땲??\"]`). Phase Q surface ported verbatim from `src/content_verifier.py:194`.\n - `_MIN_SENTENCE_LEN: int = 5` ??minimum length gate for a sentence to enter the result list. Phase Q uses the literal `5` inline (`src/content_verifier.py:197`); Phase Z lifts it to a named constant so the surface is auditable and the gate can be locked by `test_split_into_sentences_drops_parts_shorter_than_min_len` (`\"OK. 異⑸텇??湲?臾몄옣?낅땲??\"` ??`[\"異⑸텇??湲?臾몄옣?낅땲??\"]`; `\"OK\"` is len 2, dropped).\n - `def split_into_sentences(text: str) -\u003e list[str]` ??pure function ported from `src/content_verifier.py:174-199`. Pipeline (order locked in docstring):\n 1. `text = strip_meta_lines(text)` ??drop Kei prompt directives first so meta lines never reach the sentence list. Composition with u5 is locked by `test_split_into_sentences_applies_strip_meta_lines_first` (`\"?쒕ぉ ?쇰꺼: ...\"` ??not in result; `\"蹂몃Ц 泥?臾몄옣?낅땲??\"` ??in result).\n 2. `text.split(\"\\n\")` ??preserve newline boundaries; per-line `strip()` for matching.\n 3. Skip if `not line or line.startswith(\"#\")` ??drops empty lines and ALL `#`-led headers (Phase Q comment says `## ?ㅻ뜑` but the predicate is `startswith(\"#\")` so `#`/`##`/`###` all skip). Locked by `test_split_into_sentences_skips_empty_and_header_lines` (both `# ?紐⑹감` and `## ?뚮ぉ李? dropped).\n 4. `_BULLET_MARKER_PATTERN.sub(\"\", line).strip()` ??strip leading marker. Skip if empty after strip (Phase Q surface preserved).\n 5. `_SENTENCE_SPLIT_PATTERN.split(line)` ??period-boundary sentence split. Locked by `test_split_into_sentences_splits_on_period_boundary` (3-period input ??3 elements).\n 6. Per part: `strip()` and append iff `len(part) \u003e= _MIN_SENTENCE_LEN`.\n - No new imports ??`re` was already imported in u3.\n- Tests (`tests/phase_z2/test_pz2_vu_sentence_split.py`) ??6 tests:\n 1. `test_split_into_sentences_applies_strip_meta_lines_first` ??composes with u5 surface; `\"?쒕ぉ ?쇰꺼: ...\"` line is removed before sentence splitting.\n 2. `test_split_into_sentences_skips_empty_and_header_lines` ??empty lines, `# ?紐⑹감`, `## ?뚮ぉ李? all dropped; non-header line survives.\n 3. `test_split_into_sentences_strips_numeric_and_punctuated_markers` ??asserts `_BULLET_MARKER_PATTERN.match` succeeds on `\"1.\"`, `\"2)\"`, `\"-.\"`, `\"??\"` (Phase Q regex surface); 3-line numeric/punctuated bullet input ??3 stripped sentences.\n 4. `test_split_into_sentences_keeps_bare_dash_bullet_unstripped` ??locks the Phase Q **negative** semantic: `\"- ??ぉ ?섎굹?낅땲??\"` is NOT matched by `_BULLET_MARKER_PATTERN` (no trailing `.` or `)` after the `-`), so it survives the marker-strip step. This guards against a future refactor that \"fixes\" the regex to strip plain dash bullets and silently drifts from Phase Q.\n 5. `test_split_into_sentences_splits_on_period_boundary` ??asserts `_SENTENCE_SPLIT_PATTERN.pattern == r\"(?\u003c=\\.)\\s+\"` (locks regex surface), then exercises 3-period split.\n 6. `test_split_into_sentences_drops_parts_shorter_than_min_len` ??asserts `_MIN_SENTENCE_LEN == 5` (locks constant value), then exercises the gate (`\"OK.\"` filtered; `\"異⑸텇??湲?臾몄옣?낅땲??\"` survives).\n- Local pytest result: `python -m pytest tests/phase_z2/test_pz2_vu_sentence_split.py tests/phase_z2/test_pz2_vu_dataclass.py tests/phase_z2/test_pz2_vu_extract.py tests/phase_z2/test_pz2_vu_normalize.py tests/phase_z2/test_pz2_vu_keywords.py tests/phase_z2/test_pz2_vu_meta_strip.py -q` ??`32 passed in 0.20s` (4 u1 + 5 u2 + 6 u3 + 6 u4 + 5 u5 + 6 u6). No existing tests touched.\n- No edits to existing runtime files outside the new module (matches Stage 2 plan: \"no edits to existing runtime files in this issue scope\").\n- No commit or push performed (Stage 3 rule: \"DO NOT commit or push\").\n\n??scope-lock checks\n- `src/phase_z2_verification_utils.py` AST import scan: `[\u0027__future__\u0027, \u0027re\u0027, \u0027dataclasses\u0027, \u0027html.parser\u0027]` ??stdlib-only; no `content_verifier`, no `httpx`, no `anthropic`, no Kei path.\n- The u1 AST guard (`test_module_importable_without_content_verifier`) re-runs green.\n- No AI / LLM / SSE / network introduced (Phase Z spacing direction N/A; verification axis).\n- No pipeline wiring to Step 1/2/14/21/22 (still gated behind IMP-07; u11 will land the design-only contract).\n- IMP-07 reverse-path implementation untouched (`html_to_slide_mdx`/`edited_html_to_mdx`/`reverse_path` grep still 0 hits).\n- Phase Q `REQUIRED_PATTERNS` values NOT reused (out-of-scope per Stage 1 scope-lock).\n- No Kei retry loop / FORBIDDEN_KEI_MEMOS porting (H4/H5 archive markers respected).\n- Phase Q negative semantic (bare-dash bullet NOT stripped) preserved verbatim ??locked by dedicated negative-case test #4 above. This is the Phase Q surface; **no Phase Z silent semantic drift**.\n\n??phase Z mid-stage compaction update\n| ?⑥쐞 | ?곗텧臾?| ?듭떖 surface | LOC ?꾩쟻 | ?뚯뒪??|\n|---|---|---|---|---|\n| u1 | module anchor + `VerificationResult` | dataclass | 30 | 4 pass |\n| u2 | `_TextExtractor` + `extract_text_from_html` | HTMLParser port | 60 (+30) | 5 pass |\n| u3 | `_PARTICLES` + `_ENDING_NORMALIZE` + `normalize_for_comparison` | text normalize | 103 (+43) | 6 pass |\n| u4 | `extract_keywords` | tokenize + particle strip | 125 (+22) | 6 pass |\n| u5 | `_META_PREFIXES` + `_META_INLINE_FRAGMENTS` + `strip_meta_lines` | Kei prompt filter | 165 (+40) | 5 pass |\n| **u6** | `_BULLET_MARKER_PATTERN` + `_SENTENCE_SPLIT_PATTERN` + `_MIN_SENTENCE_LEN` + `split_into_sentences` | sentence split (composes u5) | **198 (+33)** | **6 pass** |\n\n??remaining_units\n- u7 ??private sentence-vs-html match helper\n- u8 ??`verify_text_preservation`\n- u9 ??`detect_invented_text`\n- u10 ??sample-backed smoke without pipeline import (`tests/phase_z2/test_pz2_vu_integration.py`)\n- u11 ??IMP-16-U2 design-only contract md (`docs/architecture/IMP-16-U2-WIRING-DESIGN.md`)\n\n??follow_up_issue_candidates\n- None this turn. All Stage 1 / Stage 2 scope-lock items still respected:\n - No Phase Z import of `src/content_verifier.py` (AST guard green).\n - No B-2 main reverse path implementation (= IMP-07).\n - No Step 14 image/table overflow extension (= IMP-15).\n - No Kei/AI retry loops (H5 archive marker).\n - No `FORBIDDEN_KEI_MEMOS` porting (H4 archive marker).\n - No `REQUIRED_PATTERNS` value reuse ??only the deterministic checking approach (out-of-scope per Stage 1).\n- Note (not a follow-up issue, just a Stage 2 surface confirmation): the Phase Q `_BULLET_MARKER_PATTERN` is intentionally weak (bare `- ` / `??` bullets are NOT stripped). u8/u9 (text preservation / invented-text) will treat the surviving bare-bullet prefix as part of the sentence text; this matches Phase Q reference semantics. If the future U2 wiring discovers this causes false-positive invented-text reports on reverse-path HTML, that will surface as a NEW issue distinct from IMP-16 scope.\n",
|
|
"PSPath": "D:\\ad-hoc\\kei\\design_agent\\.orchestrator\\drafts\\16_stage_code-edit_claude_r6.md",
|
|
"PSParentPath": "D:\\ad-hoc\\kei\\design_agent\\.orchestrator\\drafts",
|
|
"PSChildName": "16_stage_code-edit_claude_r6.md",
|
|
"PSDrive": {
|
|
"CurrentLocation": "ad-hoc\\kei\\design_agent",
|
|
"Name": "D",
|
|
"Provider": {
|
|
"ImplementingType": "Microsoft.PowerShell.Commands.FileSystemProvider",
|
|
"HelpFile": "System.Management.Automation.dll-Help.xml",
|
|
"Name": "FileSystem",
|
|
"PSSnapIn": "Microsoft.PowerShell.Core",
|
|
"ModuleName": "Microsoft.PowerShell.Core",
|
|
"Module": null,
|
|
"Description": "",
|
|
"Capabilities": 52,
|
|
"Home": "C:\\Users\\User",
|
|
"Drives": "C D"
|
|
},
|
|
"Root": "D:\\",
|
|
"Description": "data",
|
|
"MaximumSize": null,
|
|
"Credential": {
|
|
"UserName": null,
|
|
"Password": null
|
|
},
|
|
"DisplayRoot": null
|
|
},
|
|
"PSProvider": {
|
|
"ImplementingType": {
|
|
"Module": "System.Management.Automation.dll",
|
|
"Assembly": "System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
|
|
"TypeHandle": "System.RuntimeTypeHandle",
|
|
"DeclaringMethod": null,
|
|
"BaseType": "System.Management.Automation.Provider.NavigationCmdletProvider",
|
|
"UnderlyingSystemType": "Microsoft.PowerShell.Commands.FileSystemProvider",
|
|
"FullName": "Microsoft.PowerShell.Commands.FileSystemProvider",
|
|
"AssemblyQualifiedName": "Microsoft.PowerShell.Commands.FileSystemProvider, System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
|
|
"Namespace": "Microsoft.PowerShell.Commands",
|
|
"GUID": "b4755d19-b6a7-38dc-ae06-4167f801062f",
|
|
"IsEnum": false,
|
|
"GenericParameterAttributes": null,
|
|
"IsSecurityCritical": true,
|
|
"IsSecuritySafeCritical": false,
|
|
"IsSecurityTransparent": false,
|
|
"IsGenericTypeDefinition": false,
|
|
"IsGenericParameter": false,
|
|
"GenericParameterPosition": null,
|
|
"IsGenericType": false,
|
|
"IsConstructedGenericType": false,
|
|
"ContainsGenericParameters": false,
|
|
"StructLayoutAttribute": "System.Runtime.InteropServices.StructLayoutAttribute",
|
|
"Name": "FileSystemProvider",
|
|
"MemberType": 32,
|
|
"DeclaringType": null,
|
|
"ReflectedType": null,
|
|
"MetadataToken": 33556363,
|
|
"GenericTypeParameters": "",
|
|
"DeclaredConstructors": "Void .ctor() Void .cctor()",
|
|
"DeclaredEvents": "",
|
|
"DeclaredFields": "System.Collections.ObjectModel.Collection`1[System.Management.Automation.WildcardPattern] excludeMatcher System.Management.Automation.PSTraceSource tracer Int32 FILETRANSFERSIZE System.String ProviderName",
|
|
"DeclaredMembers": "System.String NormalizePath(System.String) System.IO.FileSystemInfo GetFileSystemInfo(System.String, Boolean ByRef) Boolean IsFilterSet() System.Object GetChildNamesDynamicParameters(System.String) System.Object GetChildItemsDynamicParameters(System.String, Boolean) System.Object CopyItemDynamicParameters(System.String, System.String, Boolean) Boolean IsNetworkMappedDrive(System.Management.Automation.PSDriveInfo) Boolean IsSupportedDriveForPersistence(System.Management.Automation.PSDriveInfo) System.String GetRootPathForNetworkDriveOrDosDevice(System.IO.DriveInfo) System.Collections.ObjectModel.Collection`1[System.Management.Automation.PSDriveInfo] InitializeDefaultDrives() System.Object GetItemDynamicParameters(System.String) Void InvokeDefaultAction(System.String) Void GetChildItems(System.String, Boolean, UInt32) Void GetChildNames(System.String, System.Management.Automation.ReturnContainers) Boolean CheckItemExists(System.String, Boolean ByRef) System.Object RemoveItemDynamicParameters(System.String, Boolean) Void RemoveFileInfoItem(System.IO.FileInfo, Boolean) Boolean ItemExists(System.String) System.Object ItemExistsDynamicParameters(System.String) Boolean HasChildItems(System.String) Void CopyItemLocalOrToSession(System.String, System.String, Boolean, Boolean, System.Management.Automation.PowerShell) Void InitilizeFunctionPSCopyFileFromRemoteSession(System.Management.Automation.PowerShell) Boolean ValidRemoteSessionForScripting(System.Management.Automation.Runspaces.Runspace) Void InitilizeFunctionsPSCopyFileToRemoteSession(System.Management.Automation.PowerShell) Boolean PathIsReservedDeviceName(System.String, System.String) Boolean IsAbsolutePath(System.String) System.String GetCommonBase(System.String, System.String) System.String CreateNormalizedRelativePathFromStack(System.Collections.Generic.Stack`1[System.String]) Boolean IsItemContainer(System.String) Boolean IsSameVolume(System.String, System.String) System.Object GetPropertyDynamicParameters(System.String, System.Collections.ObjectModel.Collection`1[System.String]) System.Object SetPropertyDynamicParameters(System.String, System.Management.Automation.PSObject) System.Object ClearPropertyDynamicParameters(System.String, System.Collections.ObjectModel.Collection`1[System.String]) System.Object GetContentWriterDynamicParameters(System.String) System.Object ClearContentDynamicParameters(System.String) Int32 SafeGetFileAttributes(System.String) System.Security.AccessControl.ObjectSecurity NewSecurityDescriptorFromPath(System.String, System.Security.AccessControl.AccessControlSections) System.Security.AccessControl.ObjectSecurity NewSecurityDescriptorOfType(System.String, System.Security.AccessControl.AccessControlSections) System.Security.AccessControl.ObjectSecurity NewSecurityDescriptor(ItemType) System.Management.Automation.ErrorRecord CreateErrorRecord(System.String, System.String) System.String GetHelpMaml(System.String, System.String) System.Management.Automation.ProviderInfo Start(System.Management.Automation.ProviderInfo) System.Management.Automation.PSDriveInfo NewDrive(System.Management.Automation.PSDriveInfo) Void MapNetworkDrive(System.Management.Automation.PSDriveInfo) System.Management.Automation.PSDriveInfo RemoveDrive(System.Management.Automation.PSDriveInfo) System.String GetUNCForNetworkDrive(System.String) System.String GetSubstitutedPathForNetworkDosDevice(System.String) Boolean IsValidPath(System.String) Void GetItem(System.String) System.IO.FileSystemInfo GetFileSystemItem(System.String, Boolean ByRef, Boolean) Boolean ConvertPath(System.String, System.String, System.String ByRef, System.String ByRef) Void GetPathItems(System.String, Boolean, UInt32, Boolean, System.Management.Automation.ReturnContainers) Void Dir(System.IO.DirectoryInfo, Boolean, UInt32, Boolean, System.Management.Automation.ReturnContainers, InodeTracker) System.Management.Automation.FlagsExpression`1[System.IO.FileAttributes] FormatAttributeSwitchParamters() System.String Mode(System.Management.Automation.PSObject) Void RenameItem(System.String, System.String) Void NewItem(System.String, System.String, System.Object) ItemType GetItemType(System.String) Void CreateDirectory(System.String, Boolean) Boolean CreateIntermediateDirectories(System.String) Void RemoveItem(System.String, Boolean) Void RemoveDirectoryInfoItem(System.IO.DirectoryInfo, Boolean, Boolean, Boolean) Void RemoveFileSystemItem(System.IO.FileSystemInfo, Boolean) Boolean ItemExists(System.String, System.Management.Automation.ErrorRecord ByRef) Boolean DirectoryInfoHasChildItems(System.IO.DirectoryInfo) Void CopyItem(System.String, System.String, Boolean) Void CopyItemFromRemoteSession(System.String, System.String, Boolean, Boolean, System.Management.Automation.Runspaces.PSSession) Void CopyDirectoryInfoItem(System.IO.DirectoryInfo, System.String, Boolean, Boolean, System.Management.Automation.PowerShell) Void CopyFileInfoItem(System.IO.FileInfo, System.String, Boolean, System.Management.Automation.PowerShell) Void CopyDirectoryFromRemoteSession(System.String, System.String, System.String, Boolean, Boolean, System.Management.Automation.PowerShell) System.Collections.ArrayList GetRemoteSourceAlternateStreams(System.Management.Automation.PowerShell, System.String) Void RemoveFunctionsPSCopyFileFromRemoteSession(System.Management.Automation.PowerShell) System.Collections.Hashtable GetRemoteFileMetadata(System.String, System.Management.Automation.PowerShell) Void SetFileMetadata(System.String, System.IO.FileInfo, System.Management.Automation.PowerShell) Void CopyFileFromRemoteSession(System.String, System.String, System.String, Boolean, System.Management.Automation.PowerShell, Int64) Boolean PerformCopyFileFromRemoteSession(System.String, System.IO.FileInfo, System.String, Boolean, System.Management.Automation.PowerShell, Int64, Boolean, System.String) Void RemoveFunctionPSCopyFileToRemoteSession(System.Management.Automation.PowerShell) Boolean RemoteTargetSupportsAlternateStreams(System.Management.Automation.PowerShell, System.String) System.String MakeRemotePath(System.Management.Automation.PowerShell, System.String, System.String) Boolean RemoteDirectoryExist(System.Management.Automation.PowerShell, System.String) Boolean CopyFileStreamToRemoteSession(System.IO.FileInfo, System.String, System.Management.Automation.PowerShell, Boolean, System.String) System.Collections.Hashtable GetFileMetadata(System.IO.FileInfo) Void SetRemoteFileMetadata(System.IO.FileInfo, System.String, System.Management.Automation.PowerShell) Boolean PerformCopyFileToRemoteSession(System.IO.FileInfo, System.String, System.Management.Automation.PowerShell) Boolean RemoteDestinationPathIsFile(System.String, System.Management.Automation.PowerShell) System.String CreateDirectoryOnRemoteSession(System.String, Boolean, System.Management.Automation.PowerShell) System.String GetParentPath(System.String, System.String) Boolean IsUNCPath(System.String) Boolean IsUNCRoot(System.String) Boolean IsPathRoot(System.String) System.String NormalizeRelativePath(System.String, System.String) System.String NormalizeRelativePathHelper(System.String, System.String) System.String RemoveRelativeTokens(System.String) System.Collections.Generic.Stack`1[System.String] TokenizePathToStack(System.String, System.String) System.Collections.Generic.Stack`1[System.String] NormalizeThePath(System.String, System.Collections.Generic.Stack`1[System.String]) System.String GetChildName(System.String) System.String EnsureDriveIsRooted(System.String) Void MoveItem(System.String, System.String) Void MoveFileInfoItem(System.IO.FileInfo, System.String, Boolean, Boolean) Void MoveDirectoryInfoItem(System.IO.DirectoryInfo, System.String, Boolean) Void CopyAndDelete(System.IO.DirectoryInfo, System.String, Boolean) Void GetProperty(System.String, System.Collections.ObjectModel.Collection`1[System.String]) Void SetProperty(System.String, System.Management.Automation.PSObject) Void ClearProperty(System.String, System.Collections.ObjectModel.Collection`1[System.String]) System.Management.Automation.Provider.IContentReader GetContentReader(System.String) System.Object GetContentReaderDynamicParameters(System.String) System.Management.Automation.Provider.IContentWriter GetContentWriter(System.String) Void ClearContent(System.String) Void ValidateParameters(Boolean) Void GetSecurityDescriptor(System.String, System.Security.AccessControl.AccessControlSections) Void SetSecurityDescriptor(System.String, System.Security.AccessControl.ObjectSecurity) Void SetSecurityDescriptor(System.String, System.Security.AccessControl.ObjectSecurity, System.Security.AccessControl.AccessControlSections) Void \u003cRemoveDirectoryInfoItem\u003eg__WriteErrorHelper|43_0(System.Exception, \u003c\u003ec__DisplayClass43_0 ByRef) Void .ctor() Void .cctor() System.Collections.ObjectModel.Collection`1[System.Management.Automation.WildcardPattern] excludeMatcher System.Management.Automation.PSTraceSource tracer Int32 FILETRANSFERSIZE System.String ProviderName Microsoft.PowerShell.Commands.FileSystemProvider+ItemType Microsoft.PowerShell.Commands.FileSystemProvider+NativeMethods Microsoft.PowerShell.Commands.FileSystemProvider+NetResource Microsoft.PowerShell.Commands.FileSystemProvider+InodeTracker Microsoft.PowerShell.Commands.FileSystemProvider+\u003c\u003ec__DisplayClass43_0",
|
|
"DeclaredMethods": "System.String Mode(System.Management.Automation.PSObject) System.String NormalizePath(System.String) System.IO.FileSystemInfo GetFileSystemInfo(System.String, Boolean ByRef) Boolean IsFilterSet() System.Object GetChildNamesDynamicParameters(System.String) System.Object GetChildItemsDynamicParameters(System.String, Boolean) System.Object CopyItemDynamicParameters(System.String, System.String, Boolean) Boolean IsNetworkMappedDrive(System.Management.Automation.PSDriveInfo) Boolean IsSupportedDriveForPersistence(System.Management.Automation.PSDriveInfo) System.String GetRootPathForNetworkDriveOrDosDevice(System.IO.DriveInfo) System.Collections.ObjectModel.Collection`1[System.Management.Automation.PSDriveInfo] InitializeDefaultDrives() System.Object GetItemDynamicParameters(System.String) Void InvokeDefaultAction(System.String) Void GetChildItems(System.String, Boolean, UInt32) Void GetChildNames(System.String, System.Management.Automation.ReturnContainers) Boolean CheckItemExists(System.String, Boolean ByRef) System.Object RemoveItemDynamicParameters(System.String, Boolean) Void RemoveFileInfoItem(System.IO.FileInfo, Boolean) Boolean ItemExists(System.String) System.Object ItemExistsDynamicParameters(System.String) Boolean HasChildItems(System.String) Void CopyItemLocalOrToSession(System.String, System.String, Boolean, Boolean, System.Management.Automation.PowerShell) Void InitilizeFunctionPSCopyFileFromRemoteSession(System.Management.Automation.PowerShell) Boolean ValidRemoteSessionForScripting(System.Management.Automation.Runspaces.Runspace) Void InitilizeFunctionsPSCopyFileToRemoteSession(System.Management.Automation.PowerShell) Boolean PathIsReservedDeviceName(System.String, System.String) Boolean IsAbsolutePath(System.String) System.String GetCommonBase(System.String, System.String) System.String CreateNormalizedRelativePathFromStack(System.Collections.Generic.Stack`1[System.String]) Boolean IsItemContainer(System.String) Boolean IsSameVolume(System.String, System.String) System.Object GetPropertyDynamicParameters(System.String, System.Collections.ObjectModel.Collection`1[System.String]) System.Object SetPropertyDynamicParameters(System.String, System.Management.Automation.PSObject) System.Object ClearPropertyDynamicParameters(System.String, System.Collections.ObjectModel.Collection`1[System.String]) System.Object GetContentWriterDynamicParameters(System.String) System.Object ClearContentDynamicParameters(System.String) Int32 SafeGetFileAttributes(System.String) System.Security.AccessControl.ObjectSecurity NewSecurityDescriptorFromPath(System.String, System.Security.AccessControl.AccessControlSections) System.Security.AccessControl.ObjectSecurity NewSecurityDescriptorOfType(System.String, System.Security.AccessControl.AccessControlSections) System.Security.AccessControl.ObjectSecurity NewSecurityDescriptor(ItemType) System.Management.Automation.ErrorRecord CreateErrorRecord(System.String, System.String) System.String GetHelpMaml(System.String, System.String) System.Management.Automation.ProviderInfo Start(System.Management.Automation.ProviderInfo) System.Management.Automation.PSDriveInfo NewDrive(System.Management.Automation.PSDriveInfo) Void MapNetworkDrive(System.Management.Automation.PSDriveInfo) System.Management.Automation.PSDriveInfo RemoveDrive(System.Management.Automation.PSDriveInfo) System.String GetUNCForNetworkDrive(System.String) System.String GetSubstitutedPathForNetworkDosDevice(System.String) Boolean IsValidPath(System.String) Void GetItem(System.String) System.IO.FileSystemInfo GetFileSystemItem(System.String, Boolean ByRef, Boolean) Boolean ConvertPath(System.String, System.String, System.String ByRef, System.String ByRef) Void GetPathItems(System.String, Boolean, UInt32, Boolean, System.Management.Automation.ReturnContainers) Void Dir(System.IO.DirectoryInfo, Boolean, UInt32, Boolean, System.Management.Automation.ReturnContainers, InodeTracker) System.Management.Automation.FlagsExpression`1[System.IO.FileAttributes] FormatAttributeSwitchParamters() Void RenameItem(System.String, System.String) Void NewItem(System.String, System.String, System.Object) ItemType GetItemType(System.String) Void CreateDirectory(System.String, Boolean) Boolean CreateIntermediateDirectories(System.String) Void RemoveItem(System.String, Boolean) Void RemoveDirectoryInfoItem(System.IO.DirectoryInfo, Boolean, Boolean, Boolean) Void RemoveFileSystemItem(System.IO.FileSystemInfo, Boolean) Boolean ItemExists(System.String, System.Management.Automation.ErrorRecord ByRef) Boolean DirectoryInfoHasChildItems(System.IO.DirectoryInfo) Void CopyItem(System.String, System.String, Boolean) Void CopyItemFromRemoteSession(System.String, System.String, Boolean, Boolean, System.Management.Automation.Runspaces.PSSession) Void CopyDirectoryInfoItem(System.IO.DirectoryInfo, System.String, Boolean, Boolean, System.Management.Automation.PowerShell) Void CopyFileInfoItem(System.IO.FileInfo, System.String, Boolean, System.Management.Automation.PowerShell) Void CopyDirectoryFromRemoteSession(System.String, System.String, System.String, Boolean, Boolean, System.Management.Automation.PowerShell) System.Collections.ArrayList GetRemoteSourceAlternateStreams(System.Management.Automation.PowerShell, System.String) Void RemoveFunctionsPSCopyFileFromRemoteSession(System.Management.Automation.PowerShell) System.Collections.Hashtable GetRemoteFileMetadata(System.String, System.Management.Automation.PowerShell) Void SetFileMetadata(System.String, System.IO.FileInfo, System.Management.Automation.PowerShell) Void CopyFileFromRemoteSession(System.String, System.String, System.String, Boolean, System.Management.Automation.PowerShell, Int64) Boolean PerformCopyFileFromRemoteSession(System.String, System.IO.FileInfo, System.String, Boolean, System.Management.Automation.PowerShell, Int64, Boolean, System.String) Void RemoveFunctionPSCopyFileToRemoteSession(System.Management.Automation.PowerShell) Boolean RemoteTargetSupportsAlternateStreams(System.Management.Automation.PowerShell, System.String) System.String MakeRemotePath(System.Management.Automation.PowerShell, System.String, System.String) Boolean RemoteDirectoryExist(System.Management.Automation.PowerShell, System.String) Boolean CopyFileStreamToRemoteSession(System.IO.FileInfo, System.String, System.Management.Automation.PowerShell, Boolean, System.String) System.Collections.Hashtable GetFileMetadata(System.IO.FileInfo) Void SetRemoteFileMetadata(System.IO.FileInfo, System.String, System.Management.Automation.PowerShell) Boolean PerformCopyFileToRemoteSession(System.IO.FileInfo, System.String, System.Management.Automation.PowerShell) Boolean RemoteDestinationPathIsFile(System.String, System.Management.Automation.PowerShell) System.String CreateDirectoryOnRemoteSession(System.String, Boolean, System.Management.Automation.PowerShell) System.String GetParentPath(System.String, System.String) Boolean IsUNCPath(System.String) Boolean IsUNCRoot(System.String) Boolean IsPathRoot(System.String) System.String NormalizeRelativePath(System.String, System.String) System.String NormalizeRelativePathHelper(System.String, System.String) System.String RemoveRelativeTokens(System.String) System.Collections.Generic.Stack`1[System.String] TokenizePathToStack(System.String, System.String) System.Collections.Generic.Stack`1[System.String] NormalizeThePath(System.String, System.Collections.Generic.Stack`1[System.String]) System.String GetChildName(System.String) System.String EnsureDriveIsRooted(System.String) Void MoveItem(System.String, System.String) Void MoveFileInfoItem(System.IO.FileInfo, System.String, Boolean, Boolean) Void MoveDirectoryInfoItem(System.IO.DirectoryInfo, System.String, Boolean) Void CopyAndDelete(System.IO.DirectoryInfo, System.String, Boolean) Void GetProperty(System.String, System.Collections.ObjectModel.Collection`1[System.String]) Void SetProperty(System.String, System.Management.Automation.PSObject) Void ClearProperty(System.String, System.Collections.ObjectModel.Collection`1[System.String]) System.Management.Automation.Provider.IContentReader GetContentReader(System.String) System.Object GetContentReaderDynamicParameters(System.String) System.Management.Automation.Provider.IContentWriter GetContentWriter(System.String) Void ClearContent(System.String) Void ValidateParameters(Boolean) Void GetSecurityDescriptor(System.String, System.Security.AccessControl.AccessControlSections) Void SetSecurityDescriptor(System.String, System.Security.AccessControl.ObjectSecurity) Void SetSecurityDescriptor(System.String, System.Security.AccessControl.ObjectSecurity, System.Security.AccessControl.AccessControlSections) Void \u003cRemoveDirectoryInfoItem\u003eg__WriteErrorHelper|43_0(System.Exception, \u003c\u003ec__DisplayClass43_0 ByRef)",
|
|
"DeclaredNestedTypes": "Microsoft.PowerShell.Commands.FileSystemProvider+ItemType Microsoft.PowerShell.Commands.FileSystemProvider+NativeMethods Microsoft.PowerShell.Commands.FileSystemProvider+NetResource Microsoft.PowerShell.Commands.FileSystemProvider+InodeTracker Microsoft.PowerShell.Commands.FileSystemProvider+\u003c\u003ec__DisplayClass43_0",
|
|
"DeclaredProperties": "",
|
|
"ImplementedInterfaces": "System.Management.Automation.IResourceSupplier System.Management.Automation.Provider.IContentCmdletProvider System.Management.Automation.Provider.IPropertyCmdletProvider System.Management.Automation.Provider.ISecurityDescriptorCmdletProvider System.Management.Automation.Provider.ICmdletProviderSupportsHelp",
|
|
"TypeInitializer": "Void .cctor()",
|
|
"IsNested": false,
|
|
"Attributes": 1048833,
|
|
"IsVisible": true,
|
|
"IsNotPublic": false,
|
|
"IsPublic": true,
|
|
"IsNestedPublic": false,
|
|
"IsNestedPrivate": false,
|
|
"IsNestedFamily": false,
|
|
"IsNestedAssembly": false,
|
|
"IsNestedFamANDAssem": false,
|
|
"IsNestedFamORAssem": false,
|
|
"IsAutoLayout": true,
|
|
"IsLayoutSequential": false,
|
|
"IsExplicitLayout": false,
|
|
"IsClass": true,
|
|
"IsInterface": false,
|
|
"IsValueType": false,
|
|
"IsAbstract": false,
|
|
"IsSealed": true,
|
|
"IsSpecialName": false,
|
|
"IsImport": false,
|
|
"IsSerializable": false,
|
|
"IsAnsiClass": true,
|
|
"IsUnicodeClass": false,
|
|
"IsAutoClass": false,
|
|
"IsArray": false,
|
|
"IsByRef": false,
|
|
"IsPointer": false,
|
|
"IsPrimitive": false,
|
|
"IsCOMObject": false,
|
|
"HasElementType": false,
|
|
"IsContextful": false,
|
|
"IsMarshalByRef": false,
|
|
"GenericTypeArguments": "",
|
|
"CustomAttributes": "[System.Management.Automation.OutputTypeAttribute(new Type[2] { typeof(System.String), typeof(System.Management.Automation.PathInfo) }, ProviderCmdlet = \"Resolve-Path\")] [System.Management.Automation.OutputTypeAttribute(typeof(System.Security.AccessControl.FileSecurity), ProviderCmdlet = \"Set-Acl\")] [System.Management.Automation.Provider.CmdletProviderAttribute(\"FileSystem\", (System.Management.Automation.Provider.ProviderCapabilities)52)] [System.Management.Automation.OutputTypeAttribute(typeof(System.Management.Automation.PathInfo), ProviderCmdlet = \"Push-Location\")] [System.Management.Automation.OutputTypeAttribute(new Type[2] { typeof(System.Byte), typeof(System.String) }, ProviderCmdlet = \"Get-Content\")] [System.Management.Automation.OutputTypeAttribute(typeof(System.IO.FileInfo), ProviderCmdlet = \"Get-Item\")] [System.Management.Automation.OutputTypeAttribute(new Type[2] { typeof(System.IO.FileInfo), typeof(System.IO.DirectoryInfo) }, ProviderCmdlet = \"Get-ChildItem\")] [System.Management.Automation.OutputTypeAttribute(new Type[2] { typeof(System.Security.AccessControl.FileSecurity), typeof(System.Security.AccessControl.DirectorySecurity) }, ProviderCmdlet = \"Get-Acl\")] [System.Management.Automation.OutputTypeAttribute(new Type[4] { typeof(System.Boolean), typeof(System.String), typeof(System.IO.FileInfo), typeof(System.IO.DirectoryInfo) }, ProviderCmdlet = \"Get-Item\")] [System.Management.Automation.OutputTypeAttribute(new Type[5] { typeof(System.Boolean), typeof(System.String), typeof(System.DateTime), typeof(System.IO.FileInfo), typeof(System.IO.DirectoryInfo) }, ProviderCmdlet = \"Get-ItemProperty\")] [System.Management.Automation.OutputTypeAttribute(new Type[2] { typeof(System.String), typeof(System.IO.FileInfo) }, ProviderCmdlet = \"New-Item\")]"
|
|
},
|
|
"HelpFile": "System.Management.Automation.dll-Help.xml",
|
|
"Name": "FileSystem",
|
|
"PSSnapIn": {
|
|
"Name": "Microsoft.PowerShell.Core",
|
|
"IsDefault": true,
|
|
"ApplicationBase": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0",
|
|
"AssemblyName": "System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, ProcessorArchitecture=MSIL",
|
|
"ModuleName": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\System.Management.Automation.dll",
|
|
"PSVersion": "5.1.22621.6133",
|
|
"Version": "3.0.0.0",
|
|
"Types": "types.ps1xml typesv3.ps1xml",
|
|
"Formats": "Certificate.format.ps1xml DotNetTypes.format.ps1xml FileSystem.format.ps1xml Help.format.ps1xml HelpV3.format.ps1xml PowerShellCore.format.ps1xml PowerShellTrace.format.ps1xml Registry.format.ps1xml",
|
|
"Description": "This Windows PowerShell snap-in contains cmdlets used to manage components of Windows PowerShell.",
|
|
"Vendor": "Microsoft Corporation",
|
|
"LogPipelineExecutionDetails": false
|
|
},
|
|
"ModuleName": "Microsoft.PowerShell.Core",
|
|
"Module": null,
|
|
"Description": "",
|
|
"Capabilities": 52,
|
|
"Home": "C:\\Users\\User",
|
|
"Drives": [
|
|
"C",
|
|
"D"
|
|
]
|
|
},
|
|
"ReadCount": 1
|
|
}
|
|
} |