go to post Eduard Lebedyuk · Jan 29, 2018 Consider renaming bookid into Book to have consistent properties names.
go to post Eduard Lebedyuk · Jan 27, 2018 I have an Atelier question.How's that Atelier-related though?
go to post Eduard Lebedyuk · Jan 27, 2018 slash macro: #if $$$isWINDOWS /// #define slash "\" #else /// #define slash "/" #endIf That said, consider using %File API to work with file names. I usually extract "storage directory" as an application-wide setting (normalized and validated on change) and just add a file name. This way user code can ignore most OS path differences.
go to post Eduard Lebedyuk · Jan 25, 2018 There are some utilities for work with images. For example QR code generation via %SYS.QRCode. There is also this Captcha generation project.That said, imagemagick is doubtlessly the best solution.
go to post Eduard Lebedyuk · Jan 25, 2018 SQL way (query docs, 1 means BS): SELECT * FROM Ens_Config.Production_EnumerateConfigItems('Your.Production', 1) Object way: set rs = ##class(Ens.Config.Production).EnumerateConfigItemsFunc("Your.Production", 1) do rs.%Display() Constants for Business Host Type (defined in EnsConstants.inc): #define eHostTypeUnknown 0 #define eHostTypeService 1 #define eHostTypeProcess 2 #define eHostTypeOperation 3 #define eHostTypeActor 4
go to post Eduard Lebedyuk · Jan 25, 2018 You can use Ens.Response class for an empty response and you need to init it: Method OnMessage(request As Ens.StreamContainer, Output response As Ens.Response) As %Status { set response = ##class(Ens.Response).%New() quit $$$OK } If you only want to see streams why not use <trace> in BP?
go to post Eduard Lebedyuk · Jan 24, 2018 Postconditionals are to be used only for the most simple checks, for example: set:a="" a=10 instead of if a="" { set a=10 } But several conditions (or several lines inside) should be as if, I agree.
go to post Eduard Lebedyuk · Jan 24, 2018 For one-line if I prefer postconditionals: set:a b=a As for For - the option with braces. It's more readable. And one line inside For loop quickly and often becomes several lines, so braces become mandatory anyway.
go to post Eduard Lebedyuk · Jan 24, 2018 Why do you need to check it at runtime? If source and target are from different but related classes you can copy by their common ancestor (or by specified ancestor class). Or do you copy properties between two unrelated classes?
go to post Eduard Lebedyuk · Jan 24, 2018 Nice example of using method generators. Why do you need ExistsProperty? Here's a check I usually employ for class properties in generators: if prop.Internal || prop.Calculated || prop.ReadOnly || prop.Private || prop.Identity || prop.MultiDimensional CONTINUE It filters out all systems properties like Concurrency, %%OID and so on.
go to post Eduard Lebedyuk · Jan 23, 2018 When talking about speed, one of the most important questions is what exactly do you need to speed up? You need to determine:what queries are the most popularwhat queries take the most timeto fix it. Some ways to fix performance are (easy to hard):Add indicesChange classesChange application architectureBecause in your case I see at least two request types which require different actions to speed them up:Get last X changesGet last X modified subjects
go to post Eduard Lebedyuk · Jan 22, 2018 Header itself is another layer because it's meta information for the BPL state machine, which you're inside of. So I don't see how you can get header Id from inside the state machine without violating abstractions in place.Still, %Context, %Process and %LastError are documented and acceptable to use.
go to post Eduard Lebedyuk · Jan 22, 2018 You can access %Ensemble("%Process") as ..%Process so: ..%Process.%PrimaryRequestHeader.%Id()
go to post Eduard Lebedyuk · Jan 19, 2018 Why would you want to do that? Here's sample production class: Class Test.Production Extends Ens.Production { XData ProductionDefinition { <Production Name="Test.Production" TestingEnabled="true" LogGeneralTraceEvents="true"> <Description></Description> <ActorPoolSize>1</ActorPoolSize> ion> } } Ens.Config.Production serialized is XData ProductionDefinition and not the class itself. To create production class automatically you need to: Create %Dictionary.ClassDefinition object for your test productionCreate Ens.Config.Production objectCreate %Dictionary.XDataDefinitionSerialize (2) into (3)Insert XData (3) into (1)Save and compile (1)
go to post Eduard Lebedyuk · Jan 19, 2018 Check out Caché FileServer project for a sample of file upload/download.
go to post Eduard Lebedyuk · Jan 19, 2018 Use any of the existing Git hooks for Studio or Atelier. They would work with GitHub and GitLab both.
go to post Eduard Lebedyuk · Jan 18, 2018 Check EvaluateRules method of Ens.Rule.Definition class. It evaluates rule by name and context. You can call it from Studio or Terminal.