曾与蒿藜同雨露,한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.终随松柏到冰霜.かつては雑草やヨモギと共に雨や露を分かち合っていたが、今では松やヒノキと共に霜や雪に耐えている。曾与蒿藜同雨露,Once sharing rain and dew with weeds and wormwood, now enduring frost and snow with pines and cypresses.终随松柏到冰霜.曾与蒿藜同雨露한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.,终随松柏到冰霜.譖セ荳手珍阯懷酔髮ィ髴イ�檎サ磯囂譚セ譟丞芦蜀ー髴�曾与蒿藜同雨露,鏇句笌钂胯棞鍚岄洦闇诧紝缁堥殢鏉炬煆鍒板啺闇�终随松柏到冰霜.曾与蒿藜同雨露,한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.终随松柏到冰霜.曾与蒿藜同雨露,终随松柏到冰霜.
# -*- Mode: Python -*-
# GObject-Introspection - a framework for introspecting GObject libraries
# Copyright (C) 2010 Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import sys
from . import ast
from .codegen import CCodeGenerator
if sys.version_info.major < 3:
from StringIO import StringIO
else:
from io import StringIO
DEFAULT_C_VALUES = {ast.TYPE_ANY: 'NULL',
ast.TYPE_STRING: '""',
ast.TYPE_FILENAME: '""',
ast.TYPE_GTYPE: 'g_object_get_type ()'}
def get_default_for_typeval(typeval):
default = DEFAULT_C_VALUES.get(typeval)
if default:
return default
return "0"
def uscore_from_type(typeval):
if typeval.target_fundamental:
return typeval.target_fundamental.replace(' ', '_')
elif typeval.target_giname:
return typeval.target_giname.replace('.', '').lower()
else:
assert False, typeval
class EverythingCodeGenerator(object):
def __init__(self,
out_h_filename,
out_c_filename,
function_decoration,
include_first_header,
include_last_header,
include_first_src,
include_last_src):
self.namespace = ast.Namespace('Everything', '1.0')
self.gen = CCodeGenerator(self.namespace,
out_h_filename,
out_c_filename,
function_decoration,
include_first_header,
include_last_header,
include_first_src,
include_last_src)
def write(self):
types = [ast.TYPE_ANY]
types.extend(ast.INTROSPECTABLE_BASIC)
func = ast.Function('nullfunc',
ast.Return(ast.TYPE_NONE, transfer=ast.PARAM_TRANSFER_NONE),
[], False, self.gen.gen_symbol('nullfunc'))
self.namespace.append(func)
body = " return;\n"
self.gen.set_function_body(func, body)
# First pass, generate constant returns
prefix = 'const return '
for typeval in types:
name = prefix + uscore_from_type(typeval)
sym = self.gen.gen_symbol(name)
func = ast.Function(name,
ast.Return(typeval, transfer=ast.PARAM_TRANSFER_NONE),
[], False, sym)
self.namespace.append(func)
default = get_default_for_typeval(typeval)
body = " return %s;\n" % (default, )
self.gen.set_function_body(func, body)
# Void return, one parameter
prefix = 'oneparam '
for typeval in types:
if typeval is ast.TYPE_NONE:
continue
name = prefix + uscore_from_type(typeval)
sym = self.gen.gen_symbol(name)
func = ast.Function(name,
ast.Return(ast.TYPE_NONE, transfer=ast.PARAM_TRANSFER_NONE),
[ast.Parameter('arg0', typeval, transfer=ast.PARAM_TRANSFER_NONE,
direction=ast.PARAM_DIRECTION_IN)], False, sym)
self.namespace.append(func)
self.gen.set_function_body(func, " return;\n")
# Void return, one (out) parameter
prefix = 'one_outparam '
for typeval in types:
if typeval is ast.TYPE_NONE:
continue
name = prefix + uscore_from_type(typeval)
sym = self.gen.gen_symbol(name)
func = ast.Function(name,
ast.Return(ast.TYPE_NONE, transfer=ast.PARAM_TRANSFER_NONE),
[ast.Parameter('arg0', typeval, transfer=ast.PARAM_TRANSFER_NONE,
direction=ast.PARAM_DIRECTION_OUT)], False, sym)
self.namespace.append(func)
body = StringIO('w')
default = get_default_for_typeval(func.retval)
body.write(" *arg0 = %s;\n" % (default, ))
body.write(" return;\n")
self.gen.set_function_body(func, body.getvalue())
# Passthrough one parameter
prefix = 'passthrough_one '
for typeval in types:
if typeval is ast.TYPE_NONE:
continue
name = prefix + uscore_from_type(typeval)
sym = self.gen.gen_symbol(name)
func = ast.Function(name, ast.Return(typeval, transfer=ast.PARAM_TRANSFER_NONE),
[ast.Parameter('arg0', typeval, transfer=ast.PARAM_TRANSFER_NONE,
direction=ast.PARAM_DIRECTION_IN)], False, sym)
self.namespace.append(func)
body = StringIO('w')
default = get_default_for_typeval(func.retval)
body.write(" return arg0;\n")
self.gen.set_function_body(func, body.getvalue())
self.gen.codegen()