- Major enhancement: request handler source files can now be written in (sub)directories, such that the path leading to the request handler matches the request path. For instance, request handler "/session/user/new" will be implemented under directories "session", then "user", and then in file new.gliim. This allows for clean and easy to organize structure of an application.
- Fixed bug in parallel compilation, where reported file names in error messages were inaccurate.
- Faster compilation by using soft links instead of copies where needed.
- sub-handler statement has been renamed call-handler for better descriptiveness.
- Added "public" and "private" clauses in begin-handler, to improve security features. "private" means that request handler cannot be called by an outside caller (formerly "sub-handler").
- Added --public option in gg to toggle between request handlers being public or private by default (by default they are private).
- Fixed spurious output from gg -m.
- Better error message when trying to compile an application and it was not yet created.
- p-path statement now must have a request path object, in order to make a more reliable construction of link URL paths, and to allow for static checking of requests, for faster design and development.
- begin-handler statement now must start with a forward slash, which was up until now optional.
Monday, October 28, 2024
Gliimly 76 released
Web Services Security
The security of web services is a broad subject, but there are a few common topics that one should be well aware. They affect if your web application, or an API service, will be a success or not.
Many web services provide an interface to a database. SQL injection is a very old, but nonetheless important issue. A naive implementation of SQL execution inside your code could open the door for a malicious actor to drop your tables, insert/update/delete records etc. Be sure that your back-end software is SQL injection proof.
Many web services provide an interface to a database. SQL injection is a very old, but nonetheless important issue. A naive implementation of SQL execution inside your code could open the door for a malicious actor to drop your tables, insert/update/delete records etc. Be sure that your back-end software is SQL injection proof.
Wednesday, October 23, 2024
Gliimly 70 released
- Enhanced compiler error message in if-true statement when conditional statement is missing or incomplete.
- Fixed bug in p-path statement where it wouldn't work without new-line clause.
- Fixed bug in set/get-param statements where it (rarely) may get stuck in wrong compiled code.
- C style comment /*...*/ will cause an error at the beginning of statement only for readability and to avoid library detection issues.
- Better error message when database config file is not found for a database.
Monday, October 21, 2024
Web services with MariaDB
Create a directory for your project, it'll be where this example takes place. Also create Gliimly application "stock":
Start MariaDB command line interface:
Create an application user, database and a stock table (with stock name and price):
Gliimly wants you to describe the database: the user name and password, database name, and the rest is the default setup for MariaDB database connection. So create a file "db_stock" (which is your database configuration file, one per each you use):
mkdir -p stock-app cd stock-app sudo mgrg -i -u $(whoami) stockCopied!
Start MariaDB command line interface:
sudo mysqlCopied!
Create an application user, database and a stock table (with stock name and price):
create user stock_user; create database stock_db; grant all privileges on stock_db.* to stock_user@localhost identified by 'stock_pwd'; use stock_db create table if not exists stock (stock_name varchar(100) primary key, stock_price bigint);Copied!
Gliimly wants you to describe the database: the user name and password, database name, and the rest is the default setup for MariaDB database connection. So create a file "db_stock" (which is your database configuration file, one per each you use):
Saturday, October 19, 2024
Gliimly 65 released
- Added --parallel option to gg utility to enable multi-threaded compilation. Now the speed of making large application can be multiple times faster, for instance 3-5 times faster with a typical laptop.
- Added high-performance hash for parameters (see set-param, get-param), making them comparable to C's stack variables in performance.
- Removed input-count, input-name, input-value clauses from get-req statement as they are superfluous now.
- set-param enhanced by making =<value> optional. This is often used when parameter name and the variable assigned to it have the same name. It makes the code reading and writing cleaner.
Thursday, October 17, 2024
Web service calling web service
A web service doesn't necessarily need to be called from "the web", meaning from the web browser or via API across the web. It can be called from another web service that's on a local network.
Typically, when called from the web, HTTPS protocol is used to ensure safety of that call. However, local networks are usually secure, meaning no one else has access to it but your own web services.
Thus, communication between local web services will be much faster if it doesn't use a secure protocol as it incurs the performance cost. Simple, fast and unburdened protocols, such as FastCGI, may be better.
Monday, October 14, 2024
Gliimly 56 released
Fixed bug with before-handler and after-handler statements, where the names of files used to implement them (.gliim files) were not correctly stated in the documentation.
Sunday, October 13, 2024
What is Web Service
Web service is code that responds to a request and provides a reply over HTTP protocol. It doesn't need to work over the web, despite its name. You can run a web service locally on a server or on a local network. You can even run a web service from command line. In fact, that's an easy way to test them.
The input comes from an HTTP request - this means via URL parameters plus (optional) request body.
Friday, October 11, 2024
Cache as a web service
This example shows Apache as the front-end (or "reverse proxy") for cache server - it's assumed you've completed it first. Three steps to setting up Apache quickly:
Wednesday, October 9, 2024
Cache server in 30 lines
This is a cache server that can add, delete and query key/value pairs, with their number limited only by available memory.
We'll use "index" type, which is a high-performance data structure. For example, with 1,000,000 keys it will take only about 20 comparisons to find any key; and the range search is just one hop. Index is based on a modified AVL/B tree.
Create new "index" application first, in a new directory (you can name it anything you like):
mkdir -p index cd indexCopied!
The mgrg command is a Gliimly service manager and here it will create a new application named "index" (it can be different from the directory it's in):
sudo mgrg -i -u $(whoami) indexCopied!
Create a source code file "srv.gliim":
Tuesday, October 8, 2024
Gliimly 54 released
- Improvement: Faster gg utility for services execution from command line (-r option)
- Bug fix: "-z" option in mgrg would have no effect in some cases, meaning the silent header would not be honored and the HTTP header would always be output, specifically if "--silent-header" is omitted in "gg -r". This now works as documented.
Sunday, October 6, 2024
Memory safety: the cost in performance
Memory safety guards against software security risks and malfunctions by assuring data isn't written to or read from unintended areas of memory. It prevents leaks, and that's important for web services which are long-running processes - memory leaks usually lead to running out of memory and crashes.
But what of the performance cost of memory safety? Gliimly is a very high level programming language. It's not like other languages, and you can intuitively experience that just by looking at the code. It feels more like speaking in English than moving bits and bytes or calling APIs.
So when you build your web services, you won't write a lot of code, rather you'd express what you want done in a declarative language, and natively-compiled high-performance C code will do the rest. This code is designed to be memory safe, but because it's C, it avoids the penalty of being implemented in a general-purpose memory-safe language, where everything that's done, from bottom up and top down, would be subject to memory-safety checks.
Tuesday, October 1, 2024
Gliimly 50 released
New features and improvements:
- Added HMAC (Hash Message Authentication Code) support with hmac-string statement.
- Updated OpenSSL-based statements handling to be able to use custom digests/ciphers available in version 3+.
Subscribe to:
Posts (Atom)