Puedes Usar Golf como un Framework Web para C

Descubre cómo usar Golf en modo extendido para integrar código C en aplicaciones web de manera eficiente y segura, con ejemplos prácticos y configuración en Nginx.

7 mar 2025 • 2 min read • Q2BSTUDIO Team

Empresa-Software-Apps

Golf tiene un modo extendido que permite utilizar código en C directamente. Normalmente, esto no está permitido, pero si usas la instrucción extended-mode en tu archivo .golf, podrás llamar código en C desde él.

En modo extendido, Golf actúa como un framework web para el lenguaje de programación C, permitiendo una mayor flexibilidad en el desarrollo de aplicaciones web basadas en este lenguaje.

A continuación, presentamos un ejemplo de cómo usar Golf como un framework web para C, creando una aplicación sencilla que calcula el factorial de un número y expone esta funcionalidad a través de una aplicación web.

Para crear la aplicación, primero generamos la estructura de archivos necesaria:

mkdir -p c-for-web

cd c-for-web

Luego, creamos una nueva aplicación en Golf:

gg -k fact

Después, guardamos el siguiente código en un archivo llamado calc-fact.golf. Este archivo define el servicio web que interactuará con los clientes y llamará a la función en C:

extended-mode

%% /calc-fact public

get-param par

string-number par to num

set-number result

call-extended factorial(num, &result)

@Factorial de <<p-out par>> es <<p-num result>>

%%

Luego, creamos un archivo factorial.c con la implementación de la función en C:

#include 'golf.h'

void factorial(gg_num f, gg_num *res) {

*res = 1;

gg_num i;

for (i = 2; i <= f; i++) {

*res *= i;

}

}

También agregamos un archivo factorial.h para declarar la función utilizada en el código de Golf:

void factorial(gg_num f, gg_num *res);

Para compilar y ejecutar el servidor utilizamos:

gg -q

Iniciamos el servidor con:

mgrg fact

Podemos probar la aplicación desde la línea de comandos:

gg -r --req=/calc-fact/par=12 --exec --service

Esto devuelve:

Factorial de 12 es 479001600

Para probarlo en un navegador web, configuramos Nginx, agregando la siguiente línea en el archivo de configuración:

location /fact/ { include /etc/nginx/fastcgi_params; fastcgi_pass unix:///var/lib/gg/fact/sock/sock; }

Reiniciamos Nginx para aplicar los cambios:

sudo systemctl restart nginx

Accediendo a la URL:

https://127.0.0.1/fact/calc-fact/par=8

El resultado será:

Factorial de 8 es 40320

En Q2BSTUDIO, brindamos soluciones tecnológicas avanzadas y desarrollo de software especializado en diversas plataformas y lenguajes, facilitando la implementación de frameworks como Golf para la optimización de aplicaciones web en C. Nuestro equipo de expertos está preparado para ayudarte a desarrollar soluciones robustas y eficientes adaptadas a las necesidades de tu negocio.

A BREAK?

Play for a moment before you go

OUR SERVICES

How we can help you

Artificial intelligence

AI agents, chatbots, and intelligent assistants that automate tasks and serve your customers 24/7 to improve the efficiency of your business.

More info

Software Development

Web, mobile, and desktop applications, intranets, e-commerce, SaaS, and management platforms designed for your company's specific needs.

More info

Cloud services

Migration, infrastructure, managed hosting, high availability, and security on Microsoft Azure and Amazon Web Services to help your business scale without limits.

More info

Cybersecurity and pentesting

Security audits, penetration testing and protection of applications, data and infrastructure on-premise and cloud, with ethical hacking and regulatory compliance.

More info

Business Intelligence

Dashboards and data analysis with Power BI: we integrate your sources, design dashboards and KPIs and turn your data into decisions.

More info

Process automation

We automate repetitive tasks and connect your applications with n8n, Power Automate, Make, and RPA, eliminating manual work and increasing productivity.

More info

Training for Companies

We train your teams in technology with criteria: web development, databases, Git, best practices and security, automation with n8n, artificial intelligence for companies and creation of AI solutions with Azure AI Foundry.

More info

Code Auditing

We audit the code that you, your team or an AI create: we tell you what is good and what to improve, we secure it and make it ready for production, web or app.

More info

AI Image Generation

We create for you the images that your business needs with artificial intelligence: product, networks, advertising, illustration and avatars. You tell us what you want and we deliver it ready to use.

More info

AI Video Generation

We create videos with artificial intelligence for you: promotional, networking, virtual presenters, dubbing and animations. You tell us the idea and we will deliver it assembled and ready to publish.

More info

AI Conversational Avatars

We create conversational avatars with AI – digital humans with a face and voice – that serve your customers and teams with the knowledge of your company, on your website, interactive monitors, WhatsApp or Teams.

More info

Online Marketing and AI

Google Ads, Meta Ads, LinkedIn Ads and AI Engine Positioning (GEO/AEO): we attract customers and make your brand appear where they search for you, also on ChatGPT, Gemini and Perplexity.

More info

Do you have a project in mind?

Tell us your vision and we'll turn it into a software solution. Whatever the scope, we make your idea real.

Live Chat