Questions tagged [oslo]

"Oslo" was the codename for SQL Server Modeling CTP, a model-driven development toolset using the "M" Modelling Language. The project was canceled in late 2010.

"Oslo" was the codename for SQL Server Modeling CTP, a model-driven development toolset using the "M" Modelling Language. The project was canceled in late 2010.

See also:

32 questions
2
votes
1 answer

cx_freeze can't find oslo module

I'm trying to use cx_freeze to create a Windows executable from a Python script that imports pyrax (to interface with Rackspace). Pyrax requires oslo (https://github.com/openstack/oslo.utils), a module for working with OpenStack that I have…
DevinRB
  • 107
  • 2
  • 8
2
votes
2 answers

Am I destined to develop in XML?

Based on what I've seen on Oslo, declarative XML will have a key role. Can I expect to be mucking around a lot of designer generated XML to create real world applications? Just know I haven't researched this. I would just appreaciate your…
Cristian Libardo
  • 9,260
  • 3
  • 35
  • 41
1
vote
2 answers

Openstack placement-status upgrade check giving not initialized error

I am trying to install openstack Wallaby on Ubuntu 20.04. I already installed Keystone and Glance and they work as expected. But after I installed Placement and tried to verify it using 'placement-status upgrade check' I constantly get the same…
NickRau
  • 11
  • 1
1
vote
1 answer

Devstack fails with oslo.policy version mismatch

I am trying to install devstack(stable/newton). I am getting the following error: Traceback (most recent call last): 2016-11-29 16:36:55.348 | File "/usr/local/lib/python2.7/dist-packages/pip/basecommand.py", line 215, in main 2016-11-29…
Pradeep
  • 1,198
  • 3
  • 12
  • 22
1
vote
0 answers

How to generate config file from oslo.config?

OpenStack uses oslo.config to define config file options. oslo.config defines configure name, default value, help message, group etc. Since help message is also defined in code, I'm guessing there should be a way to generate a configure file from…
TieDad
  • 9,143
  • 5
  • 32
  • 58
1
vote
2 answers

OSLO, ANTLR or other parser grammar, for parsing QUERY EXPRESSION

Greetings I'm working on a project that requires me to write queries in text form, then convert them to some easily processed nodes to be processed by some abiguous repository. Of everything there, the part I'm least interested is the part that…
Jay Allard
  • 938
  • 6
  • 12
1
vote
2 answers

Explanation of Oslo error "M2037: SQL Generation Internal Error: Missing generator for variable"?

In Microsoft Oslo SDK CTP 2008 (using Intellipad) the following code compiles fine: module T { type A { Id : Integer32 = AutoNumber(); } where identity Id; As : A*; type B { Id : Integer32 = AutoNumber(); // …
tamberg
  • 1,987
  • 14
  • 23
1
vote
2 answers

Is transforming internal DSL to external DSL anti-pattern?

In our legacy system, we wrote our own VM to execute our internal DSL at run time. The in-house VM was designed to run our internal DSL only. We are in the process of rewriting our legacy application. One of the idea we are considering is, to…
B Gandhi
1
vote
1 answer

Is there a way to parse a T-SQL select statement with the "Oslo" M runtime?

Searching around the Microsoft.M assembly I found the SourceParser class and whole set of classes in the Microsoft.TSQL10 namespace that seem related to parsing SQL but I cannot find examples of how to use it. I know the you can generate T-SQL…
Darrel Miller
  • 139,164
  • 32
  • 194
  • 243
1
vote
1 answer

Is there a better way to define a decimal in an MGrammar?

I'm working on a DSL in Microsoft's new M Grammar, and it needs to allow decimal values. I've defined decimal as token digits = "0".."9"; token spot = "."; token decimal = digits+ | digits+ spot digits+ | spot digits+; That seems to work, but is…
Mike Two
  • 44,935
  • 9
  • 80
  • 96
1
vote
3 answers

What is the difference between "DSL Tools" and "Oslo"?

I've just started playing with domain-specific tools development, and I'm playing with Visual Studio SDK DSL Tools. However, I heard that Microsoft have another initiative into domain-specific development called "Oslo". My impression is that DSL…
CARLOS LOTH
  • 4,675
  • 3
  • 38
  • 44
0
votes
0 answers

Python periodic task using oslo service

I am trying to run a method periodically(60 seconds). I am using oslo service to do so. Below is the snippet. import time from oslo_service import periodic_task class MyClass(periodic_task.PeriodicTasks): def __init__(self): …
Chetan
  • 1,217
  • 2
  • 13
  • 27
0
votes
1 answer

what is the different between oslo.config and oslo_config?

I`m trying to use the oslo config package. But I found that someone is using this package like this import oslo.config while some others using it like this import oslo_config I`m confused , can anyone tell me what is the difference between this…
Kramer Li
  • 2,284
  • 5
  • 27
  • 55
0
votes
3 answers

Explanation of Oslo error "M0197: 'Text' cannot be used in a Type context"?

In Microsoft Oslo SDK CTP 2008 (using Intellipad) the following code compiles fine: module M { type T { Text : Text; } } while compiling the below code leads to the error "M0197: 'Text' cannot be used in a Type context" module M { …
tamberg
  • 1,987
  • 14
  • 23
0
votes
1 answer

Writing a parser with M, consume while not rule

I'm writing a HTML parser for my own amusement and I wanted to try out M. I base this work on the HTML 4.01 standard and in there it says Although the STYLE and SCRIPT elements use CDATA for their data model, for these elements, CDATA must be…
John Leidegren
  • 59,920
  • 20
  • 131
  • 152