Verovio
Source code documentation
toolkit.h
1 // Name: toolkit.h
3 // Author: Laurent Pugin
4 // Created: 17/10/2013
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TOOLKIT_H__
9 #define __VRV_TOOLKIT_H__
10 
11 #include <string>
12 
13 //----------------------------------------------------------------------------
14 
15 #include "doc.h"
16 #include "docselection.h"
17 #include "toolkitdef.h"
18 #include "view.h"
19 
20 //----------------------------------------------------------------------------
21 
22 namespace vrv {
23 
24 class EditorToolkit;
25 class RuntimeClock;
26 
31 //----------------------------------------------------------------------------
32 // Toolkit
33 //----------------------------------------------------------------------------
34 
35 class Toolkit {
36 public:
42 
49  Toolkit(bool initFont = true);
50  virtual ~Toolkit();
51 
53 
59 
68  std::string GetID() { return m_doc.GetID(); }
69 
77  std::string GetResourcePath() const;
78 
90  bool SetResourcePath(const std::string &path);
91 
97  std::string GetLog();
98 
104  std::string GetVersion() const;
105 
114  void ResetXmlIdSeed(int seed);
115 
117 
123 
135  bool LoadFile(const std::string &filename);
136 
145  bool LoadData(const std::string &data);
146 
153  bool LoadZipDataBase64(const std::string &data);
154 
162  bool LoadZipDataBuffer(const unsigned char *data, int length);
163 
174  std::string ValidatePAEFile(const std::string &filename);
175 
187  std::string ValidatePAE(const std::string &data);
188 
196  int GetPageCount();
197 
199 
205 
212  std::string GetOptions() const;
213 
219  std::string GetDefaultOptions() const;
220 
228  std::string GetAvailableOptions() const;
229 
238  bool SetOptions(const std::string &jsonOptions);
239 
243  void ResetOptions();
244 
248  void PrintOptionUsage(const std::string &category, std::ostream &output) const;
249 
253  std::string GetOptionUsageString() const;
254 
263  bool SetScale(int scale);
264 
272  int GetScale() { return m_options->m_scale.GetValue(); }
273 
282  bool SetInputFrom(std::string const &inputFrom);
283 
292  bool SetOutputTo(std::string const &outputTo);
293 
304  bool Select(const std::string &selection);
305 
307 
313 
321  bool Edit(const std::string &editorAction);
322 
328  std::string EditInfo();
329 
331 
337 
349  std::string RenderData(const std::string &data, const std::string &jsonOptions);
350 
358  std::string RenderToSVG(int pageNo = 1, bool xmlDeclaration = false);
359 
369  bool RenderToSVGFile(const std::string &filename, int pageNo = 1);
370 
376  std::string RenderToMIDI();
377 
386  bool RenderToMIDIFile(const std::string &filename);
387 
395  std::string RenderToPAE();
396 
407  bool RenderToPAEFile(const std::string &filename);
408 
415  std::string RenderToTimemap(const std::string &jsonOptions = "");
416 
422  std::string RenderToExpansionMap();
423 
433  bool RenderToTimemapFile(const std::string &filename, const std::string &jsonOptions = "");
434 
442  bool RenderToExpansionMapFile(const std::string &filename);
443 
445 
451 
458  std::string GetHumdrum();
459 
465  std::string ConvertMEIToHumdrum(const std::string &meiData);
466 
472  std::string ConvertHumdrumToHumdrum(const std::string &humdrumData);
473 
479  std::string ConvertHumdrumToMIDI(const std::string &humdrumData);
480 
489  bool GetHumdrumFile(const std::string &filename);
490 
492 
498 
509  std::string GetMEI(const std::string &jsonOptions = "");
510 
520  bool SaveFile(const std::string &filename, const std::string &jsonOptions = "");
521 
523 
529 
539  std::string GetDescriptiveFeatures(const std::string &jsonOptions);
540 
547  std::string GetElementsAtTime(int millisec);
548 
557  int GetPageWithElement(const std::string &xmlId);
558 
567  std::string GetElementAttr(const std::string &xmlId);
568 
575  std::string GetNotatedIdForElement(const std::string &xmlId);
576 
583  std::string GetExpansionIdsForElement(const std::string &xmlId);
584 
593  int GetTimeForElement(const std::string &xmlId);
594 
603  std::string GetMIDIValuesForElement(const std::string &xmlId);
604 
614  std::string GetTimesForElement(const std::string &xmlId);
615 
617 
621 
632  void RedoLayout(const std::string &jsonOptions = "");
633 
640  void RedoPagePitchPosLayout();
641 
643 
644  //------------------------------------------------//
645  // Public methods not listed in the documentation //
646  //------------------------------------------------//
647 
653 
662  bool RenderToDeviceContext(int pageNo, DeviceContext *deviceContext);
663 
669  Options *GetOptionsObj() { return m_options; }
670 
676  void SetCString(const std::string &data);
677 
685  const char *GetCString();
686 
692  void GetHumdrum(std::ostream &output);
693 
699  void SetHumdrumBuffer(const char *contents);
700 
708  const char *GetHumdrumBuffer();
709 
715  void ClearHumdrumBuffer();
716 
720  void SetInputFrom(FileFormat format);
728  int GetInputFrom() { return m_inputFrom; }
729 
733  int GetOutputTo() { return m_outputTo; }
734 
738  void SetLocale();
740  void ResetLocale();
742 
748  void InitClock();
750  void ResetClock();
751  double GetRuntimeInSeconds() const;
752  void LogRuntime() const;
754 
756 
757 protected:
761  FileFormat IdentifyInputFrom(const std::string &data);
762 
766  void PrintOptionUsageOutput(const vrv::Option *option, std::ostream &output) const;
767 
771  void ResetLogBuffer();
772 
777  void LogRedirectStart();
778 
782  void LogRedirectStop();
783 
787  bool LoadData(const std::string &data, bool resetLogBuffer);
788 
789 private:
790  bool SetFont(const std::string &fontName);
791  bool IsUTF16(const std::string &filename);
792  bool LoadUTF16File(const std::string &filename);
793  bool IsZip(const std::string &filename);
794  bool LoadZipFile(const std::string &filename);
795  bool LoadZipData(const std::vector<unsigned char> &bytes);
796  void GetClassIds(const std::vector<std::string> &classStrings, std::vector<ClassId> &classIds);
797 
804  std::string GetOptions(bool defaultValues) const;
805 
806 public:
807  //
808 private:
809  Doc m_doc;
810  DocSelection m_docSelection;
811  View m_view;
812  FileFormat m_inputFrom;
813  FileFormat m_outputTo;
814 
815  Options *m_options;
816 
817  std::optional<std::locale> m_previousLocale;
818 
822  char *m_cString;
823 
828  std::stringstream m_cerrCaptured;
829 
834  std::streambuf *m_cerrOriginalBuf;
835 
836  EditorToolkit *m_editorToolkit;
837 
838 #ifndef NO_RUNTIME
839 
840  RuntimeClock *m_runtimeClock;
841 #endif
842 
843  //----------------//
844  // Static members //
845  //----------------//
846 
847  static char *m_humdrumBuffer;
848 };
849 
850 } // namespace vrv
851 #endif
vrv::Toolkit::GetDescriptiveFeatures
std::string GetDescriptiveFeatures(const std::string &jsonOptions)
Return descriptive features as a JSON string.
vrv::Toolkit::LoadFile
bool LoadFile(const std::string &filename)
Load a file from the file system.
vrv::Toolkit::LoadZipDataBuffer
bool LoadZipDataBuffer(const unsigned char *data, int length)
Load a MusicXML compressed file passed as a buffer of bytes.
vrv::Toolkit::GetHumdrumBuffer
const char * GetHumdrumBuffer()
Return the content of the humdrum internal buffer.
vrv::Toolkit::LoadData
bool LoadData(const std::string &data)
Load a string data with the type previously specified in the options.
vrv::Toolkit::GetPageWithElement
int GetPageWithElement(const std::string &xmlId)
Return the page on which the element is the ID (@xml:id) is rendered.
vrv::Toolkit::GetAvailableOptions
std::string GetAvailableOptions() const
Return all available options grouped by category.
vrv::Toolkit::PrintOptionUsageOutput
void PrintOptionUsageOutput(const vrv::Option *option, std::ostream &output) const
Print formatted option usage for specific option to output stream.
vrv::Toolkit::RedoLayout
void RedoLayout(const std::string &jsonOptions="")
Redo the layout of the loaded data.
vrv::Toolkit::EditInfo
std::string EditInfo()
Return the editor status - experimental code not to rely on.
vrv::Toolkit::RedoPagePitchPosLayout
void RedoPagePitchPosLayout()
Redo the layout of the pitch postitions of the current drawing page.
vrv::Toolkit::GetInputFrom
int GetInputFrom()
Get the input format.
Definition: toolkit.h:728
vrv::Toolkit::SetLocale
void SetLocale()
Setting the global locale.
vrv::Toolkit::GetVersion
std::string GetVersion() const
Return the version number.
vrv::Toolkit::GetTimesForElement
std::string GetTimesForElement(const std::string &xmlId)
Return a JSON object string with the following key values for a given note.
vrv::Toolkit::RenderToExpansionMapFile
bool RenderToExpansionMapFile(const std::string &filename)
Render a document's expansionMap and save it to a file.
vrv::Toolkit::GetDefaultOptions
std::string GetDefaultOptions() const
Return a dictionary of all the options with their default value.
vrv::Toolkit::RenderToPAEFile
bool RenderToPAEFile(const std::string &filename)
Render a document to Plaine & Easie code and save it to the file.
vrv::Toolkit::GetOptions
std::string GetOptions() const
Return a dictionary of all the options with their current value.
vrv::Toolkit::RenderData
std::string RenderData(const std::string &data, const std::string &jsonOptions)
Render the first page of the data to SVG.
vrv::Toolkit::Edit
bool Edit(const std::string &editorAction)
Edit the MEI data - experimental code not to rely on.
vrv::Toolkit::GetOptionUsageString
std::string GetOptionUsageString() const
Get all usage for all option categories as string.
vrv::Toolkit::SetInputFrom
bool SetInputFrom(std::string const &inputFrom)
Set the input from option.
vrv::Toolkit::GetHumdrumFile
bool GetHumdrumFile(const std::string &filename)
Write the humdrum buffer to the file.
vrv::Toolkit::SetHumdrumBuffer
void SetHumdrumBuffer(const char *contents)
Copy the data to the humdrum internal buffer.
vrv::Toolkit::ValidatePAE
std::string ValidatePAE(const std::string &data)
Validate the Plaine & Easie code passed in the string data.
vrv::Toolkit::GetLog
std::string GetLog()
Get the log content for the latest operation.
vrv::Toolkit::IdentifyInputFrom
FileFormat IdentifyInputFrom(const std::string &data)
Identify the input file type for auto loading of input data.
vrv::Toolkit::PrintOptionUsage
void PrintOptionUsage(const std::string &category, std::ostream &output) const
Print formatted option usage for specific category (with max/min/default values) to output stream.
vrv::DeviceContext
This class is an abstract device context.
Definition: devicecontext.h:57
vrv::Toolkit::GetElementsAtTime
std::string GetElementsAtTime(int millisec)
Return array of IDs of elements being currently played.
vrv::Toolkit::GetTimeForElement
int GetTimeForElement(const std::string &xmlId)
Return the time at which the element is the ID (@xml:id) is played.
vrv::Toolkit::GetExpansionIdsForElement
std::string GetExpansionIdsForElement(const std::string &xmlId)
Return a vector of ID strings of all elements (the notated and the expanded) for a given element.
vrv::Toolkit::RenderToTimemapFile
bool RenderToTimemapFile(const std::string &filename, const std::string &jsonOptions="")
Render a document to timemap and save it to the file.
vrv::Toolkit::RenderToExpansionMap
std::string RenderToExpansionMap()
Render a document's expansionMap, if existing.
vrv::Toolkit::SetScale
bool SetScale(int scale)
Set the scale option.
vrv::Toolkit::GetElementAttr
std::string GetElementAttr(const std::string &xmlId)
Return element attributes as a JSON string.
vrv::Toolkit::Toolkit
Toolkit(bool initFont=true)
Constructor.
vrv::Toolkit::RenderToTimemap
std::string RenderToTimemap(const std::string &jsonOptions="")
Render a document to a timemap.
vrv::Toolkit::GetMIDIValuesForElement
std::string GetMIDIValuesForElement(const std::string &xmlId)
Return MIDI values of the element with the ID (@xml:id)
vrv::Toolkit::GetID
std::string GetID()
Return the ID of the Toolkit instance.
Definition: toolkit.h:68
vrv::Toolkit
Definition: toolkit.h:35
vrv::Toolkit::GetNotatedIdForElement
std::string GetNotatedIdForElement(const std::string &xmlId)
Return the ID string of the notated (the original) element.
vrv::Toolkit::LogRedirectStop
void LogRedirectStop()
End capturing std::cerr from an external codebase for redirection to vrv::logBuffer.
vrv::Toolkit::SetOptions
bool SetOptions(const std::string &jsonOptions)
Set option values.
vrv::Toolkit::ValidatePAEFile
std::string ValidatePAEFile(const std::string &filename)
Validate the Plaine & Easie code from a file.
vrv::Toolkit::GetHumdrum
std::string GetHumdrum()
Get the humdrum buffer.
vrv::Toolkit::SetCString
void SetCString(const std::string &data)
Copy the data to the cstring internal buffer.
vrv::Toolkit::GetResourcePath
std::string GetResourcePath() const
Get the resource path for the Toolkit instance.
vrv::Toolkit::LogRedirectStart
void LogRedirectStart()
Start capturing std::cerr from an external codebase for redirection to vrv::logBuffer.
vrv::Toolkit::ResetXmlIdSeed
void ResetXmlIdSeed(int seed)
Reset the seed used to generate MEI @xml:id attribute values.
vrv::Toolkit::ConvertMEIToHumdrum
std::string ConvertMEIToHumdrum(const std::string &meiData)
Convert MEI data into Humdrum data.
vrv::Toolkit::RenderToSVG
std::string RenderToSVG(int pageNo=1, bool xmlDeclaration=false)
Render a page to SVG.
vrv::Toolkit::RenderToDeviceContext
bool RenderToDeviceContext(int pageNo, DeviceContext *deviceContext)
Render the page to the deviceContext.
vrv::Toolkit::RenderToSVGFile
bool RenderToSVGFile(const std::string &filename, int pageNo=1)
Render a page to SVG and save it to the file.
vrv::Toolkit::Select
bool Select(const std::string &selection)
Set the value for a selection.
vrv::Toolkit::ClearHumdrumBuffer
void ClearHumdrumBuffer()
Clear the Humdrum buffer of any contents.
vrv::Toolkit::GetOptionsObj
Options * GetOptionsObj()
Return the Options object of the Toolkit instance.
Definition: toolkit.h:669
vrv::Toolkit::SaveFile
bool SaveFile(const std::string &filename, const std::string &jsonOptions="")
Get the MEI and save it to the file.
vrv::Toolkit::RenderToMIDIFile
bool RenderToMIDIFile(const std::string &filename)
Render a document to MIDI and save it to the file.
vrv::Toolkit::ConvertHumdrumToMIDI
std::string ConvertHumdrumToMIDI(const std::string &humdrumData)
Convert Humdrum data to MIDI.
vrv::Toolkit::LoadZipDataBase64
bool LoadZipDataBase64(const std::string &data)
Load a MusicXML compressed file passed as base64 encoded string.
vrv::Toolkit::ResetLogBuffer
void ResetLogBuffer()
Resets the vrv::logBuffer.
vrv::Toolkit::ResetOptions
void ResetOptions()
Reset all options to default values.
vrv::Toolkit::ConvertHumdrumToHumdrum
std::string ConvertHumdrumToHumdrum(const std::string &humdrumData)
Filter Humdrum data.
vrv::Toolkit::GetCString
const char * GetCString()
Return the content of the cstring internal buffer.
vrv::Toolkit::SetResourcePath
bool SetResourcePath(const std::string &path)
Set the resource path for the Toolkit instance and any extra fonts.
vrv::Toolkit::RenderToPAE
std::string RenderToPAE()
Render a document to Plaine & Easie code.
vrv::Toolkit::RenderToMIDI
std::string RenderToMIDI()
Render the document to MIDI.
vrv::Toolkit::GetPageCount
int GetPageCount()
Return the number of pages in the loaded document.
vrv::Toolkit::InitClock
void InitClock()
Measuring runtime.
vrv::Toolkit::SetOutputTo
bool SetOutputTo(std::string const &outputTo)
Set the output to option.
vrv::Options
This class contains the document styling parameters.
Definition: options.h:576
vrv::Toolkit::GetMEI
std::string GetMEI(const std::string &jsonOptions="")
Get the MEI as a string.
vrv::Option
This class is a base class of each styling parameter.
Definition: options.h:100
vrv::Toolkit::GetScale
int GetScale()
Get the scale option.
Definition: toolkit.h:272