Re: [fpc-pascal] Modern Compiler Construction using Pascal

2018-01-04 Thread Yves Cloutier
Wow, these are all amazing links! Thanks so much. This should keep me busy for a while! On Tue, Jan 2, 2018 at 10:49 AM, Santiago A. wrote: > El 01/01/2018 a las 19:17, Yves Cloutier escribió: > > Hi there, > > > > I'd be interested to know if any modern compilers have been written in > > Pasca

Re: [fpc-pascal] Modern Compiler Construction using Pascal

2018-01-04 Thread leledumbo via fpc-pascal
I used to play with this a bit: https://github.com/lysee/lysee It's written by a Chinese programmer and I remember reading his page about the language using google translate :p The github page is without documentation, but its older google code page is still accessible (just hope he didn't break an

Re: [fpc-pascal] Get user ID for name on Linux

2018-01-04 Thread leledumbo via fpc-pascal
> Is there a complete list of packages available somewhere? $ svn co https://svn.freepascal.org/svn/fpc/trunk fpc $ cd fpc/packages $ ls tadaaa... -- Sent from: http://free-pascal-general.1045716.n5.nabble.com/ ___ fpc-pascal maillist - fpc-pasca

Re: [fpc-pascal] Get user ID for name on Linux

2018-01-04 Thread Marco van de Voort
In our previous episode, Graeme Geldenhuys said: > As Marco said, you can use the "users" unit. Here is an example of how I > use in in fpGUI, and it supports 32-bit and 64-bit systems. > > > https://github.com/graemeg/fpGUI/blob/develop/src/corelib/x11/fpg_x11.pas#L4010-L4044 > > Note though

[fpc-pascal] CGI/FastCGI and WS request with a max time response

2018-01-04 Thread Marcos Douglas B. Santos
Hi, I have a FastCGI application which needs to receive an user request but, in some cases, the app should consume a WebService(WS) before make the response to the user. The problem is that the WS could take so long time that the entire request will broke with a "time out". My question is: Can I

Re: [fpc-pascal] Get user ID for name on Linux

2018-01-04 Thread Graeme Geldenhuys
On 2018-01-04 15:17, Marco van de Voort wrote: FreeBSD is mostly supported, though two units (shadow and crypth) and some calls relating to shadow passwords in users are not. Thanks for the information Marco. I'll take a look. Regards, Graeme __

Re: [fpc-pascal] CGI/FastCGI and WS request with a max time response

2018-01-04 Thread Michael Van Canneyt
On Thu, 4 Jan 2018, Marcos Douglas B. Santos wrote: Hi, I have a FastCGI application which needs to receive an user request but, in some cases, the app should consume a WebService(WS) before make the response to the user. The problem is that the WS could take so long time that the entire requ

Re: [fpc-pascal] CGI/FastCGI and WS request with a max time response

2018-01-04 Thread leledumbo via fpc-pascal
> The problem is that the WS could take so long time that the entire request will broke with a "time out". I suggest making the request handling asynchronous instead. So request will only register and return some unique id to the requester, then do call to the WS in background thread. An endpoint

Re: [fpc-pascal] CGI/FastCGI and WS request with a max time response

2018-01-04 Thread Marcos Douglas B. Santos
On Thu, Jan 4, 2018 at 6:33 PM, Michael Van Canneyt wrote: > > If you use a thread to consume it, yes. > > Without more info on how you consume this webservice, it's difficult to > answer this. Yes, sorry. I should explained more. I'm using WST -> http://svn.code.sf.net/p/lazarus-ccr/svn/wst (rev

Re: [fpc-pascal] CGI/FastCGI and WS request with a max time response

2018-01-04 Thread Marcos Douglas B. Santos
On Thu, Jan 4, 2018 at 10:33 PM, leledumbo via fpc-pascal wrote: >> The problem is that the WS could take so long time that the entire request > will broke with a "time out". > > I suggest making the request handling asynchronous instead. So request will > only register and return some unique id t