Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shambles-Dev committed Sep 23, 2021
0 parents commit 2cce23f
Show file tree
Hide file tree
Showing 19 changed files with 683 additions and 0 deletions.
165 changes: 165 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.


This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.

0. Additional Definitions.

As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.

"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.

An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.

A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".

The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.

The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.

1. Exception to Section 3 of the GNU GPL.

You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.

2. Conveying Modified Versions.

If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:

a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or

b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.

3. Object Code Incorporating Material from Library Header Files.

The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:

a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.

b) Accompany the object code with a copy of the GNU GPL and this license
document.

4. Combined Works.

You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:

a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.

b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.

c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.

d) Do one of the following:

0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.

1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.

e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)

5. Combined Libraries.

You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:

a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.

b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.

6. Revised Versions of the GNU Lesser General Public License.

The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.

Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.

If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Type Checking
=============

This is a backport of most of AutoHotkey v2’s type checking features to v1. They are useful for validation and dispatching.

[Design](docs/Design.md) contains the reasons for the design decisions.


## Installation

The files in [src](src) must be placed in a [library directory](https://www.autohotkey.com/docs/Functions.htm#lib).


## Usage

Directly calling a function will cause its library to be auto-included. If the function is only called dynamically or indirectly, its library must be explicitly included.

[`IsInteger(Value)`](docs/IsInteger.md)

[`IsFloat(Value)`](docs/IsFloat.md)

[`IsNumber(Value)`](docs/IsNumber.md)

[`IsString(Value)`](docs/IsString.md)

[`Type(Value)`](docs/Type.md)

[`IsInstance(Value, Class)`](docs/IsInstance.md) is v2’s `is` operator as a function.

[`HasProp(Value, Name)`](docs/HasProp.md)

[`HasMethod(Value, Name)`](docs/HasMethod.md)

Be aware that these functions do not recognize implicitly-defined members, except for `base`, of primitives or user-defined types.
13 changes: 13 additions & 0 deletions docs/Design.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
I chose not to recognize implicitly-defined members, except for `base`, of primitives or user-defined types because I do not want all primitives and user-defined types to be mistaken for collections.

Implicitly-defined members of Objects (including Arrays) are recognized because they are collections.

I made an exception for `base` because it is useful on any supported type.

I did not distinguish Objects, Arrays, and Exceptions for several reasons:
* They are the same type in AutoHotkey v1. Only their contents differ.
* When AutoHotkey v2’s type system was more similar to v1, its `Type(Value)` function also returned `"Object"` for all of them.
* It is useful to know that they are the same type because it reveals how to construct them and what operations are compatible with them.
* They cannot reliably be distinguished. An empty Object and Array are indistinguishable.
* When context makes apparent which is expected, they can still be validated with the help of this library.
* Recognizing Arrays by their contents is very inefficient.
21 changes: 21 additions & 0 deletions docs/HasMethod.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
`HasMethod(Value, Name)` returns whether `Value` has a method identified by `Name`. `Value` must not be a COM object.

If `Value` is a primitive (Number or String) type, it will examine the [default base object](https://www.autohotkey.com/docs/Objects.htm#Default_Base_Object).

It can recognize methods identified by objects.

This function is useful for validating [interfaces](https://en.wikipedia.org/wiki/Interface_(computing)#In_object-oriented_languages) for [ad hoc polymorphism](https://en.wikipedia.org/wiki/Ad_hoc_polymorphism).

#### Examples
```AutoHotkey
Object := {}
F(this)
{
}
HasMethod(Func("HasMethod"), "Call") ; 1
HasMethod([], "_NewEnum") ; 1
HasMethod(0, "Wrong") ; 0
HasMethod({(Object): Func("F")}, Object) ; 1
```
18 changes: 18 additions & 0 deletions docs/HasProp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
`HasProp(Value, Name)` returns whether `Value` has a property identified by `Name`. `Value` must not be a COM object.

If `Value` is a primitive (Number or String) type, it will examine the [default base object](https://www.autohotkey.com/docs/Objects.htm#Default_Base_Object).

It can recognize properties identified by objects.

This function is useful for validating [interfaces](https://en.wikipedia.org/wiki/Interface_(computing)#In_object-oriented_languages) for [ad hoc polymorphism](https://en.wikipedia.org/wiki/Ad_hoc_polymorphism).

#### Examples
```AutoHotkey
Object := {}
HasProp({}, "X") ; 0
HasProp({"X": 1}, "X") ; 1
HasProp(0, "base") ; 1
HasProp({(Object): 1}, Object) ; 1
HasProp({{}: 1}, Object) ; 0
```
18 changes: 18 additions & 0 deletions docs/IsFloat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
`IsFloat(Value)` returns whether `Value` is a floating-point value.

It returns `true` for `-inf`, `inf`, and `nan`. AutoHotkey does not have literals for these values, but calculations can produce them.

#### Examples
```AutoHotkey
A := 1.0
B := 2
C := "nan"
Inf := 9.9 ** 999
NaN := Inf - Inf
IsFloat(A) ; 1
IsFloat(B) ; 0
IsFloat(C) ; 0
IsFloat(Inf) ; 1
IsFloat(NaN) ; 1
```
17 changes: 17 additions & 0 deletions docs/IsInstance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
`IsInstance(Value, Class)` returns whether `Value` is an instance of `Class`. `Class` must be a user-defined class.

This function is useful for validating [substitutability](https://en.wikipedia.org/wiki/Liskov_substitution_principle) for [subtype polymorphism](https://en.wikipedia.org/wiki/Subtyping), assuming your type hierarchy is correct.

#### Examples
```AutoHotkey
class A
{
}
class B
{
}
IsInstance(new A(), A) ; 1
IsInstance(new A(), B) ; 0
```
16 changes: 16 additions & 0 deletions docs/IsInteger.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
`IsInteger(Value)` returns whether `Value` is an integer.

#### Examples
```AutoHotkey
A := 1.0
B := 2
C := "nan"
Inf := 9.9 ** 999
NaN := Inf - Inf
IsInteger(A) ; 0
IsInteger(B) ; 1
IsInteger(C) ; 0
IsInteger(Inf) ; 0
IsInteger(NaN) ; 0
```
16 changes: 16 additions & 0 deletions docs/IsNumber.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
`IsNumber(Value)` returns whether `Value` is a floating-point value or integer.

#### Examples
```AutoHotkey
A := 1.0
B := 2
C := "nan"
Inf := 9.9 ** 999
NaN := Inf - Inf
IsNumber(A) ; 1
IsNumber(B) ; 1
IsNumber(C) ; 0
IsNumber(Inf) ; 1
IsNumber(NaN) ; 1
```
18 changes: 18 additions & 0 deletions docs/IsString.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
`IsString(Value)` returns whether `Value` is a string.

#### Examples
```AutoHotkey
A := 1.0
B := 2
C := "nan"
Inf := 9.9 ** 999
NaN := Inf - Inf
Object := {}
IsString(A) ; 1
IsString(B) ; 1
IsString(C) ; 1
IsString(Inf) ; 1
IsString(NaN) ; 1
IsString(Object) ; 0
```
14 changes: 14 additions & 0 deletions docs/Type.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
`Type(Value)` returns the type name of `Value`.

This function is useful for reporting type errors and dispatching in the face of AutoHotkey v1’s incorrect type hierarchy and inconsistent interfaces.

#### Examples
```AutoHotkey
A := 1.0
B := 2
C := "nan"
Type(A) ; "Float"
Type(B) ; "Integer"
Type(C) ; "String"
```
Loading

0 comments on commit 2cce23f

Please sign in to comment.