Data update
This commit is contained in:
parent
5150844a7d
commit
4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions
|
|
@ -1,67 +0,0 @@
|
|||
with Ada.Text_IO;
|
||||
|
||||
with AWS.URL;
|
||||
with AWS.Parameters;
|
||||
with AWS.Containers.Tables;
|
||||
|
||||
procedure URL_Parser is
|
||||
|
||||
procedure Parse (URL : in String) is
|
||||
|
||||
use AWS.URL, Ada.Text_IO;
|
||||
use AWS.Containers.Tables;
|
||||
|
||||
procedure Put_Cond (Item : in String;
|
||||
Value : in String;
|
||||
When_Not : in String := "") is
|
||||
begin
|
||||
if Value /= When_Not then
|
||||
Put (" "); Put (Item); Put_Line (Value);
|
||||
end if;
|
||||
end Put_Cond;
|
||||
|
||||
Obj : Object;
|
||||
List : Table_Type;
|
||||
begin
|
||||
Put_Line ("Parsing " & URL);
|
||||
|
||||
Obj := Parse (URL);
|
||||
List := Table_Type (AWS.Parameters.List'(AWS.URL.Parameters (Obj)));
|
||||
|
||||
Put_Cond ("Scheme: ", Protocol_Name (Obj));
|
||||
Put_Cond ("Domain: ", Host (Obj));
|
||||
Put_Cond ("Port: ", Port (Obj), When_Not => "0");
|
||||
Put_Cond ("Path: ", Path (Obj));
|
||||
Put_Cond ("File: ", File (Obj));
|
||||
Put_Cond ("Query: ", Query (Obj));
|
||||
Put_Cond ("Fragment: ", Fragment (Obj));
|
||||
Put_Cond ("User: ", User (Obj));
|
||||
Put_Cond ("Password: ", Password (Obj));
|
||||
|
||||
if List.Count /= 0 then
|
||||
Put_Line (" Parameters:");
|
||||
end if;
|
||||
for Index in 1 .. List.Count loop
|
||||
Put (" "); Put (Get_Name (List, N => Index));
|
||||
Put (" "); Put ("'" & Get_Value (List, N => Index) & "'");
|
||||
New_Line;
|
||||
end loop;
|
||||
New_Line;
|
||||
end Parse;
|
||||
|
||||
begin
|
||||
Parse ("foo://example.com:8042/over/there?name=ferret#nose");
|
||||
Parse ("urn:example:animal:ferret:nose");
|
||||
Parse ("jdbc:mysql://test_user:ouupppssss@localhost:3306/sakila?profileSQL=true");
|
||||
Parse ("ftp://ftp.is.co.za/rfc/rfc1808.txt");
|
||||
Parse ("http://www.ietf.org/rfc/rfc2396.txt#header1");
|
||||
Parse ("ldap://[2001:db8::7]/c=GB?objectClass=one&objectClass=two");
|
||||
Parse ("mailto:John.Doe@example.com");
|
||||
Parse ("news:comp.infosystems.www.servers.unix");
|
||||
Parse ("tel:+1-816-555-1212");
|
||||
Parse ("telnet://192.0.2.16:80/");
|
||||
Parse ("urn:oasis:names:specification:docbook:dtd:xml:4.1.2");
|
||||
Parse ("ssh://alice@example.com");
|
||||
Parse ("https://bob:pass@example.com/place");
|
||||
Parse ("http://example.com/?a=1&b=2+2&c=3&c=4&d=%65%6e%63%6F%64%65%64");
|
||||
end URL_Parser;
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
function Get-ParsedUrl
|
||||
{
|
||||
[CmdletBinding()]
|
||||
[OutputType([PSCustomObject])]
|
||||
Param
|
||||
(
|
||||
[Parameter(Mandatory=$true,
|
||||
ValueFromPipeline=$true,
|
||||
ValueFromPipelineByPropertyName=$true,
|
||||
Position=0)]
|
||||
[System.Uri]
|
||||
$InputObject
|
||||
)
|
||||
|
||||
Process
|
||||
{
|
||||
foreach ($url in $InputObject)
|
||||
{
|
||||
$url | Select-Object -Property Scheme,
|
||||
@{Name="Domain"; Expression={$_.Host}},
|
||||
Port,
|
||||
@{Name="Path" ; Expression={$_.LocalPath}},
|
||||
Query,
|
||||
Fragment,
|
||||
AbsolutePath,
|
||||
AbsoluteUri,
|
||||
Authority,
|
||||
HostNameType,
|
||||
IsDefaultPort,
|
||||
IsFile,
|
||||
IsLoopback,
|
||||
PathAndQuery,
|
||||
Segments,
|
||||
IsUnc,
|
||||
OriginalString,
|
||||
DnsSafeHost,
|
||||
IdnHost,
|
||||
IsAbsoluteUri,
|
||||
UserEscaped,
|
||||
UserInfo
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
[string[]]$urls = @'
|
||||
foo://example.com:8042/over/there?name=ferret#nose
|
||||
urn:example:animal:ferret:nose
|
||||
jdbc:mysql://test_user:ouupppssss@localhost:3306/sakila?profileSQL=true
|
||||
ftp://ftp.is.co.za/rfc/rfc1808.txt
|
||||
http://www.ietf.org/rfc/rfc2396.txt#header1
|
||||
ldap://[2001:db8::7]/c=GB?objectClass=one&objectClass=two
|
||||
mailto:John.Doe@example.com
|
||||
news:comp.infosystems.www.servers.unix
|
||||
tel:+1-816-555-1212
|
||||
telnet://192.0.2.16:80/
|
||||
urn:oasis:names:specification:docbook:dtd:xml:4.1.2
|
||||
'@ -split [Environment]::NewLine
|
||||
|
||||
$parsedUrls = $urls | Get-ParsedUrl
|
||||
|
||||
$parsedUrls | Select-Object -Property Scheme, Port, Domain, Path, Query, Fragment | Format-Table
|
||||
|
|
@ -14,7 +14,7 @@ const urls = ['jdbc:mysql://test_user:ouupppssss@localhost:3306/sakila?profileSQ
|
|||
|
||||
fn main() {
|
||||
for url in urls {
|
||||
u := urllib.parse(url)?
|
||||
u := urllib.parse(url)!
|
||||
println(u)
|
||||
print_url(u)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,96 +0,0 @@
|
|||
Function parse_url(url)
|
||||
parse_url = "URL: " & url
|
||||
If InStr(url,"//") Then
|
||||
'parse the scheme
|
||||
scheme = Split(url,"//")
|
||||
parse_url = parse_url & vbcrlf & "Scheme: " & Mid(scheme(0),1,Len(scheme(0))-1)
|
||||
'parse the domain
|
||||
domain = Split(scheme(1),"/")
|
||||
'check if the domain includes a username, password, and port
|
||||
If InStr(domain(0),"@") Then
|
||||
cred = Split(domain(0),"@")
|
||||
If InStr(cred(0),".") Then
|
||||
username = Mid(cred(0),1,InStr(1,cred(0),".")-1)
|
||||
password = Mid(cred(0),InStr(1,cred(0),".")+1,Len(cred(0))-InStr(1,cred(0),"."))
|
||||
ElseIf InStr(cred(0),":") Then
|
||||
username = Mid(cred(0),1,InStr(1,cred(0),":")-1)
|
||||
password = Mid(cred(0),InStr(1,cred(0),":")+1,Len(cred(0))-InStr(1,cred(0),":"))
|
||||
End If
|
||||
parse_url = parse_url & vbcrlf & "Username: " & username & vbCrLf &_
|
||||
"Password: " & password
|
||||
'check if the domain have a port
|
||||
If InStr(cred(1),":") Then
|
||||
host = Mid(cred(1),1,InStr(1,cred(1),":")-1)
|
||||
port = Mid(cred(1),InStr(1,cred(1),":")+1,Len(cred(1))-InStr(1,cred(1),":"))
|
||||
parse_url = parse_url & vbCrLf & "Domain: " & host & vbCrLf & "Port: " & port
|
||||
Else
|
||||
parse_url = parse_url & vbCrLf & "Domain: " & cred(1)
|
||||
End If
|
||||
ElseIf InStr(domain(0),":") And Instr(domain(0),"[") = False And Instr(domain(0),"]") = False Then
|
||||
host = Mid(domain(0),1,InStr(1,domain(0),":")-1)
|
||||
port = Mid(domain(0),InStr(1,domain(0),":")+1,Len(domain(0))-InStr(1,domain(0),":"))
|
||||
parse_url = parse_url & vbCrLf & "Domain: " & host & vbCrLf & "Port: " & port
|
||||
ElseIf Instr(domain(0),"[") And Instr(domain(0),"]:") Then
|
||||
host = Mid(domain(0),1,InStr(1,domain(0),"]"))
|
||||
port = Mid(domain(0),InStr(1,domain(0),"]")+2,Len(domain(0))-(InStr(1,domain(0),"]")+1))
|
||||
parse_url = parse_url & vbCrLf & "Domain: " & host & vbCrLf & "Port: " & port
|
||||
Else
|
||||
parse_url = parse_url & vbCrLf & "Domain: " & domain(0)
|
||||
End If
|
||||
'parse the path if exist
|
||||
If UBound(domain) > 0 Then
|
||||
For i = 1 To UBound(domain)
|
||||
If i < UBound(domain) Then
|
||||
path = path & domain(i) & "/"
|
||||
ElseIf InStr(domain(i),"?") Then
|
||||
path = path & Mid(domain(i),1,InStr(1,domain(i),"?")-1)
|
||||
If InStr(domain(i),"#") Then
|
||||
query = Mid(domain(i),InStr(1,domain(i),"?")+1,InStr(1,domain(i),"#")-InStr(1,domain(i),"?")-1)
|
||||
fragment = Mid(domain(i),InStr(1,domain(i),"#")+1,Len(domain(i))-InStr(1,domain(i),"#"))
|
||||
path = path & vbcrlf & "Query: " & query & vbCrLf & "Fragment: " & fragment
|
||||
Else
|
||||
query = Mid(domain(i),InStr(1,domain(i),"?")+1,Len(domain(i))-InStr(1,domain(i),"?"))
|
||||
path = path & vbcrlf & "Query: " & query
|
||||
End If
|
||||
ElseIf InStr(domain(i),"#") Then
|
||||
fragment = Mid(domain(i),InStr(1,domain(i),"#")+1,Len(domain(i))-InStr(1,domain(i),"#"))
|
||||
path = path & Mid(domain(i),1,InStr(1,domain(i),"#")-1) & vbCrLf &_
|
||||
"Fragment: " & fragment
|
||||
Else
|
||||
path = path & domain(i)
|
||||
End If
|
||||
Next
|
||||
parse_url = parse_url & vbCrLf & "Path: " & path
|
||||
End If
|
||||
ElseIf InStr(url,":") Then
|
||||
scheme = Mid(url,1,InStr(1,url,":")-1)
|
||||
path = Mid(url,InStr(1,url,":")+1,Len(url)-InStr(1,url,":"))
|
||||
parse_url = parse_url & vbcrlf & "Scheme: " & scheme & vbCrLf & "Path: " & path
|
||||
Else
|
||||
parse_url = parse_url & vbcrlf & "Invalid!!!"
|
||||
End If
|
||||
|
||||
End Function
|
||||
|
||||
'test the convoluted function :-(
|
||||
WScript.StdOut.WriteLine parse_url("foo://example.com:8042/over/there?name=ferret#nose")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("jdbc:mysql://test_user:ouupppssss@localhost:3306/sakila?profileSQL=true")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("ftp://ftp.is.co.za/rfc/rfc1808.txt")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("http://www.ietf.org/rfc/rfc2396.txt#header1")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("ldap://[2001:db8::7]/c=GB?objectClass=one&objectClass=two")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("mailto:John.Doe@example.com")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("news:comp.infosystems.www.servers.unix")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("tel:+1-816-555-1212")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("telnet://192.0.2.16:80/")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("urn:oasis:names:specification:docbook:dtd:xml:4.1.2")
|
||||
WScript.StdOut.WriteLine "-------------------------------"
|
||||
WScript.StdOut.WriteLine parse_url("this code is messy, long, and needs a makeover!!!")
|
||||
Loading…
Add table
Add a link
Reference in a new issue