Jump to content

Latest Beta


Jon
 Share

Recommended Posts

Here's a common pitfall: Not understanding the C++ standard. Prior to VC10, VC gave you non-const iterators when working with a std::set giving the illusion that the set was mutable. This was wrong and non-standard. VC10 corrected this issue, however, it turns out that tylo was relying on the incorrect mutability of a set to implement something in Au3Check. When we started compiling Au3Check with VC10 we received compiler errors. My first fix was not right. My second fix changed from a std::set to a std::map which are mutable. The compiler is now happy, the code doesn't crash (at least on the example where it previously crashed) and it seems to function correctly.

So rule #1: When using a standard library, understand how the library works regardless of what the compiler lets you do.

Link to comment
Share on other sites

#1932

I think I'll change that so that the beta doesn't touch those keys.

Did no think of that one. ... Would it in that case not also make sens to let the beta install (no SciTE4AutoIt3 install present.) Not overwrite the production Def files. ("<AutoIt>\SciTE\au3.keywords.properties" and "<AutoIt>\SciTE\api\au3.api")

But just to put them in the "<AutoIt>\Beta\SciTE\*". location.

"Straight_and_Crooked_Thinking" : A "classic guide to ferreting out untruths, half-truths, and other distortions of facts in political and social discussions."
"The Secrets of Quantum Physics" : New and excellent 2 part documentary on Quantum Physics by Jim Al-Khalili. (Dec 2014)

"Believing what you know ain't so" ...

Knock Knock ...
 

Link to comment
Share on other sites

  • Administrators

3.3.7.2 (25th May, 2011) (Beta)

Some extensive changes to DllStructs implemented. Watch for bugs.

- Added: Struct/EndStruct in DllStructCreate() to solve X86/X64 data alignment.

- Changed: Compiling with VC10. Added workarounds for Win2000/XP RTM to allow execution of AutoIt, Aut2Exe, Au3Info, Au3Check and AutoItHelp.

- Fixed #1860: DriveStatus Returns Ready with blank value.

- Fixed #1854: StringIsFloat returns 1 on non float numbers.

- Fixed #1910: Please change $TTN_GETDISPINFO to $TTN_GETDISPINFOW.

- Fixed #1844: SplashTextOn crops variable when used with opt 32 and @CRLF / @LF.

- Fixed #1932: Uninstaller, windows-register, App Paths. (+beta).

- Fixed #1929: SetMenuColor() does not work on 64bit OS.

- Fixed #1479: X64 ListView WM_NOTIFY Message.

UDFs:

- Fixed #1920: Script crashes with error reported in Security.au3 at line 85

- Fixed #1895: Bugs in _GUIScrollBars_Init().

- Fixed #1891: _ArrayDisplay (......,i$iTranspose,...) wrong description.

Link to comment
Share on other sites

- Fixed #1479: X64 ListView WM_NOTIFY Message.

Brilliant, Thanks!

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

Could we get a more in depth explanation of the structure changes and how exactly the new 'struct' and 'endstruct' keywords influence internal alignment? I'm reading the help file and I just can't put the picture together in my head. For example, how is this 32 bytes in x64?

DllStructCreate("int;STRUCT;ptr;int;ENDSTRUCT;int") ; structure is 32 bytes under  a Windows 64-Bit and 16 under Windows 32-Bit
Edited by wraithdu
Link to comment
Share on other sites

  • Administrators

Could we get a more in depth explanation of the structure changes and how exactly the new 'struct' and 'endstruct' keywords influence internal alignment? I'm reading the help file and I just can't put the picture together in my head. For example, how is this 32 bytes in x64?

DllStructCreate("int;STRUCT;ptr;int;ENDSTRUCT;int") ; structure is 32 bytes under  a Windows 64-Bit and 16 under Windows 32-Bit

It's really hard to explain, but the details are sort of described: http://en.wikipedia.org/wiki/Data_structure_alignment#Data_structure_padding

The basics of it is that when you include a "struct" within a struct (like many Win32 structs) then you have to "pad" the various members to fit certain alignments. In previous versions of autoit we aligned members but didn't properly align nested structs. This only really became apparent on x64 but there were x86 bugs too.

Link to comment
Share on other sites

I don't know if this is worthy of a bug report, but the UPX exe that was shipped with the latest beta was V3.05, yet V3.07 is available.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

- Added: Struct/EndStruct in DllStructCreate() to solve X86/X64 data alignment.

It's not bad, but I would prefer a more hierarchical approach. (including array of structures, accessing of substructure values via member.value, different alignment for the subsrtucture, and nested subsrtuctures) Maybe I ask for too much for a scripting language :huh2:

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Link to comment
Share on other sites

I think you ask too much for a language that implements structures using strings... The most you can hope for at the moment is possibly adding '.' to the list of allowed characters (currently just alphanumeric or underscore). I don't see any reason why not, and it would give the same effect...

That said, how about this:

$t = DllStructCreate("int Num; (int X; int Y) Point")
DllStructSetData($t, "Point.X", 42)

And ultimately:

$t = DllStructCreate("int Num; (int X; int Y) Point[2]")
DllStructSetData($t, "Point[1].X", 42)
Edited by Mat
Link to comment
Share on other sites

It's really hard to explain, but the details are sort of described: http://en.wikipedia.org/wiki/Data_structure_alignment#Data_structure_padding

The basics of it is that when you include a "struct" within a struct (like many Win32 structs) then you have to "pad" the various members to fit certain alignments. In previous versions of autoit we aligned members but didn't properly align nested structs. This only really became apparent on x64 but there were x86 bugs too.

So I looked through the StructureConstants.au3 file and a bit of that article, and I think I understand a bit better. How did you decide which structs to wrap in struct/endstruct though? For non-nested structs, I would have thought it would have been all or none. In fact, the help file implies that wrapping the entire struct in struct/endstruct has no effect. Is that the case?

Link to comment
Share on other sites

Two things:

1. Verified that the latest beta works on Windows 2000. Good work Jon :huh2:

2. Messed around with new DLLStruct Struct/EndStruct directives, they appear to work, although I'm still unsure I understand alignment completely. Does it make sense for a structure to be an odd number of bytes (with types such as word, ptr, etc followed by a terminating 'byte')?

I just updated my debugging tool which now works with Struct/EndStruct and reports end-of-structure padding if it helps anyone.

*edit: clarification of 2nd thing

Edited by Ascend4nt
Link to comment
Share on other sites

  • Administrators

So I looked through the StructureConstants.au3 file and a bit of that article, and I think I understand a bit better. How did you decide which structs to wrap in struct/endstruct though? For non-nested structs, I would have thought it would have been all or none. In fact, the help file implies that wrapping the entire struct in struct/endstruct has no effect. Is that the case?

JP did the constants, it looked like he wrapped the structs that were getting used within other structs. struct/endstruct is implied at the "top" level, so adding it in there does nothing additional, yes.
Link to comment
Share on other sites

  • Administrators

2. Messed around with new DLLStruct Struct/EndStruct directives, they appear to work, although I'm still unsure I understand alignment completely. Does it make sense for a structure to be an odd number of bytes (with types such as word, ptr, etc followed by a terminating 'byte')?

No, it should never be an odd number of bytes if it's got members like word in it. Got an example?
Link to comment
Share on other sites

No, it should never be an odd number of bytes if it's got members like word in it. Got an example?

Hmm.. seems to happen when I use 'align' with anything other than 8. For example, this returns 33 bytes:

$sStruct='align 4;short;ptr;Struct;ptr;byte;EndStruct;byte'
$stStr=DllStructCreate($sStruct)
ConsoleWrite("Struct size:"&DllStructGetSize($stStr)&@CRLF)
Link to comment
Share on other sites

  • Administrators

Hmm.. seems to happen when I use 'align' with anything other than 8. For example, this returns 33 bytes:

$sStruct='align 4;short;ptr;Struct;ptr;byte;EndStruct;byte'
$stStr=DllStructCreate($sStruct)
ConsoleWrite("Struct size:"&DllStructGetSize($stStr)&@CRLF)

Ah yes, that's a part of the code we've been discussing. There's a check in there that only pads when using the default alignment of 8. I'm pretty sure it should always pad but I'm struggling to find exactly how align should affect the end padding. All the docs I've looked at just say "changing align also has an effect on the end padding" but don't say how.
Link to comment
Share on other sites

Nitpick about Struct doc: a few typos.

This needs to be done to respect alignment inside the entire structure creation. No need if all datatypes are in the defined structure as an implicit structure alignment is done.

Structure size is an integral multiple of its alignment, which requires padding after the last member.

missing double quotes (in bold red) in the first 2 DllStructCreate dicussion

DllStructCreate("int;STRUCT;ptr;int;ENDSTRUCT;int") ; structure is 32 bytes under a Windows 64-Bit and 16 under Windows 32-Bit

DllStructCreate("int;ptr;int;int") ; structure is 24 bytes under a Windows 64-Bit and 16 under Windows 32-Bit

Edited by jchd

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Ah yes, that's a part of the code we've been discussing. There's a check in there that only pads when using the default alignment of 8. I'm pretty sure it should always pad but I'm struggling to find exactly how align should affect the end padding. All the docs I've looked at just say "changing align also has an effect on the end padding" but don't say how.

The padding should be fairly simple: Consider the substruct as one block of bytes and pad it respectively. At least, that is what I do here and it seems to work:

Edit: Sorry, this works only if the Substruct is already starting at a correct address so ignore this post.

Edited by ProgAndy

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...