nuttx-apps/examples/hello_d/hello_d_main.d
Matheus Catarino 6db9d5e582 dlang-app added
2024-06-07 03:27:41 +08:00

123 lines
3.9 KiB
D

//***************************************************************************
// apps/examples/hello_d/hello_d_main.d
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership. The
// ASF licenses this file to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance with the
// License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
//
//***************************************************************************
module examples.hello_d_main;
//***************************************************************************
// Imports module
//***************************************************************************
/// Type issues, need make own D runtime (object.d file)
// import core.stdc.stdio : printf;
// import core.stdc.stdlib : malloc, free;
///
pragma(printf)
extern (C) int printf(scope const(char)* fmt, scope...) @nogc nothrow @trusted;
///
extern (C) void* malloc(size_t size) @nogc nothrow @trusted;
///
extern (C) void free(void* ptr) @nogc nothrow @trusted;
//***************************************************************************
// Private module content
//***************************************************************************
private:
// based heloxx class layout
extern (C++,class)
struct DHelloWorld
{
@nogc nothrow:
@disable this();
@disable this(this);
this(int secret) @safe pure
{
mSecret = secret;
debug printf("Constructor\n");
}
~this() @safe pure
{
debug printf("Destructor\n");
}
bool HelloWorld() @safe
{
debug printf("HelloWorld: mSecret=%d\n", mSecret);
if (mSecret != 42)
{
printf("DHelloWorld.HelloWorld: CONSTRUCTION FAILED!\n");
return false;
}
else
{
printf("DHelloWorld.HelloWorld: Hello, World!!\n");
return true;
}
}
private int mSecret;
}
//***************************************************************************
// Private Data
//***************************************************************************
// Define a statically constructed DHellowWorld instance if D static
// initializers are supported by the platform
// --d-version=D_Initialize
version (D_Initialize)
{
static DHelloWorld g_HelloWorld;
}
//***************************************************************************
// Public Functions
//***************************************************************************
/****************************************************************************
* Name: hello_d_main
****************************************************************************/
// betterC need main function no-mangle.
extern (C)
int hello_d_main(int argc, char*[] argv) nothrow @nogc
{
version (LDC)
{
/// need LLVM targetinfo
printf("Hello World, [%s]!\n", __traits(targetCPU).ptr);
}
// Exercise an explicitly instantiated C++ object
auto pHelloWorld = cast(DHelloWorld*) malloc(DHelloWorld.sizeof);
scope (exit)
free(pHelloWorld);
printf("hello_d_main: Saying hello from the dynamically constructed instance\n");
pHelloWorld.HelloWorld();
// Exercise an D object instantiated on the stack
auto HelloWorld = DHelloWorld(42);
printf("hello_d_main: Saying hello from the instance constructed on the stack\n");
HelloWorld.HelloWorld();
return 0;
}